mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-13 15:56:18 -05:00
13 lines
197 B
Go
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)
|
||
|
}
|