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"
|
2015-10-29 19:11:29 -04:00
|
|
|
"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() {
|
2015-10-29 19:11:29 -04:00
|
|
|
connhandler.RegisterOutboundConnectionHandlerFactory("freedom", FreedomFactory{})
|
2015-09-12 14:36:21 -04:00
|
|
|
}
|