mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
18 lines
420 B
Go
18 lines
420 B
Go
package freedom
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
|
|
)
|
|
|
|
type FreedomFactory struct {
|
|
}
|
|
|
|
func (this FreedomFactory) Create(space app.Space, config interface{}) (connhandler.OutboundConnectionHandler, error) {
|
|
return &FreedomConnection{space: space}, nil
|
|
}
|
|
|
|
func init() {
|
|
connhandler.RegisterOutboundConnectionHandlerFactory("freedom", FreedomFactory{})
|
|
}
|