1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-19 02:46:33 -05:00
v2fly/proxy/freedom/freedomfactory.go

18 lines
421 B
Go
Raw Normal View History

2015-09-11 08:12:09 -04:00
package freedom
import (
2015-12-06 05:00:10 -05:00
"github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
2015-09-11 08:12:09 -04:00
)
type FreedomFactory struct {
}
2015-12-06 05:00:10 -05:00
func (this FreedomFactory) Create(space *app.Space, config interface{}) (connhandler.OutboundConnectionHandler, error) {
return &FreedomConnection{space: space}, nil
2015-09-11 08:12:09 -04:00
}
2015-09-12 14:36:21 -04:00
func init() {
connhandler.RegisterOutboundConnectionHandlerFactory("freedom", FreedomFactory{})
2015-09-12 14:36:21 -04:00
}