mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 11:51:02 -05:00
13 lines
227 B
Go
13 lines
227 B
Go
package socks
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core"
|
|
)
|
|
|
|
type SocksServerFactory struct {
|
|
}
|
|
|
|
func (factory SocksServerFactory) Create(vp *core.VPoint) (core.InboundConnectionHandler, error) {
|
|
return NewSocksServer(vp), nil
|
|
}
|