1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-11 13:41:13 -04:00
v2fly/net/socks/socksfactory.go
2015-09-11 00:24:18 +02:00

13 lines
197 B
Go

package socks
import (
"github.com/v2ray/v2ray-core"
)
type SocksServerFactory struct {
}
func (factory *SocksServerFactory) Create(vp *core.VPoint) *SocksServer {
return NewSocksServer(vp)
}