mirror of https://github.com/v2ray/v2ray-core
14 lines
295 B
Go
14 lines
295 B
Go
![]() |
package freedom
|
||
|
|
||
|
import (
|
||
|
"github.com/v2ray/v2ray-core"
|
||
|
v2net "github.com/v2ray/v2ray-core/net"
|
||
|
)
|
||
|
|
||
|
type FreedomFactory struct {
|
||
|
}
|
||
|
|
||
|
func (factory FreedomFactory) Create(vp *core.VPoint, dest v2net.VAddress) (core.OutboundConnectionHandler, error) {
|
||
|
return NewVFreeConnection(vp, dest), nil
|
||
|
}
|