1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-23 21:05:13 -04:00
v2fly/net/socks/socksfactory.go

13 lines
197 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 {
}
func (factory *SocksServerFactory) Create(vp *core.VPoint) *SocksServer {
return NewSocksServer(vp)
}