mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
18 lines
423 B
Go
18 lines
423 B
Go
package socks
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core"
|
|
"github.com/v2ray/v2ray-core/proxy/socks/config/json"
|
|
)
|
|
|
|
type SocksServerFactory struct {
|
|
}
|
|
|
|
func (factory SocksServerFactory) Create(vp *core.Point, config interface{}) (core.InboundConnectionHandler, error) {
|
|
return NewSocksServer(vp, config.(*json.SocksConfig)), nil
|
|
}
|
|
|
|
func init() {
|
|
core.RegisterInboundConnectionHandlerFactory("socks", SocksServerFactory{})
|
|
}
|