mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
17 lines
343 B
Go
17 lines
343 B
Go
package socks
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core"
|
|
)
|
|
|
|
type SocksServerFactory struct {
|
|
}
|
|
|
|
func (factory SocksServerFactory) Create(vp *core.Point, config []byte) (core.InboundConnectionHandler, error) {
|
|
return NewSocksServer(vp, config), nil
|
|
}
|
|
|
|
func init() {
|
|
core.RegisterInboundConnectionHandlerFactory("socks", SocksServerFactory{})
|
|
}
|