v2ray-core/proxy/socks/socksfactory.go

21 lines
567 B
Go
Raw Normal View History

2015-09-10 22:24:18 +00:00
package socks
import (
2015-10-14 12:51:19 +00:00
"github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
2015-10-06 21:11:08 +00:00
"github.com/v2ray/v2ray-core/proxy/socks/config/json"
2015-09-10 22:24:18 +00:00
)
type SocksServerFactory struct {
}
func (factory SocksServerFactory) Create(dispatcher app.PacketDispatcher, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {
2015-10-10 13:51:35 +00:00
config := rawConfig.(*json.SocksConfig)
config.Initialize()
2015-10-14 12:51:19 +00:00
return NewSocksServer(dispatcher, config), nil
2015-09-10 22:24:18 +00:00
}
2015-09-12 18:36:21 +00:00
func init() {
connhandler.RegisterInboundConnectionHandlerFactory("socks", SocksServerFactory{})
2015-09-12 18:36:21 +00:00
}