1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 18:06:13 -04:00
v2fly/proxy/socks/socksfactory.go

17 lines
343 B
Go
Raw Normal View History

2015-09-10 18:24:18 -04:00
package socks
import (
"github.com/v2ray/v2ray-core"
)
type SocksServerFactory struct {
}
2015-09-12 16:11:54 -04:00
func (factory SocksServerFactory) Create(vp *core.Point, config []byte) (core.InboundConnectionHandler, error) {
2015-09-12 05:51:42 -04:00
return NewSocksServer(vp, config), nil
2015-09-10 18:24:18 -04:00
}
2015-09-12 14:36:21 -04:00
func init() {
core.RegisterInboundConnectionHandlerFactory("socks", SocksServerFactory{})
}