| 12345678910111213141516 |
- package freedom
- import (
- "github.com/v2ray/v2ray-core/proxy/common/connhandler"
- )
- type FreedomFactory struct {
- }
- func (factory FreedomFactory) Create(config interface{}) (connhandler.OutboundConnectionHandler, error) {
- return NewFreedomConnection(), nil
- }
- func init() {
- connhandler.RegisterOutboundConnectionHandlerFactory("freedom", FreedomFactory{})
- }
|