| 123456789101112131415 | package socksimport (	"github.com/v2ray/v2ray-core/app"	"github.com/v2ray/v2ray-core/proxy"	"github.com/v2ray/v2ray-core/proxy/common/connhandler")func init() {	if err := proxy.RegisterInboundConnectionHandlerFactory("socks", func(space app.Space, rawConfig interface{}) (connhandler.InboundConnectionHandler, error) {		return NewSocksServer(space, rawConfig.(Config)), nil	}); err != nil {		panic(err)	}}
 |