socksfactory.go 227 B

123456789101112
  1. package socks
  2. import (
  3. "github.com/v2ray/v2ray-core"
  4. )
  5. type SocksServerFactory struct {
  6. }
  7. func (factory SocksServerFactory) Create(vp *core.VPoint) (core.InboundConnectionHandler, error) {
  8. return NewSocksServer(vp), nil
  9. }