Documentation ¶
Index ¶
Constants ¶
View Source
const ( AuthTypeNoAuth = byte(0) AuthTypePassword = byte(1) )
Variables ¶
View Source
var ( ErrorUnsupportedSocksCommand = errors.New("Unsupported socks command.") ErrorUnsupportedAuthMethod = errors.New("Unsupported auth method.") )
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { AuthType byte Accounts map[string]string Address v2net.Address UDPEnabled bool }
func (*Config) HasAccount ¶
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server is a SOCKS 5 proxy server
func NewServer ¶
func NewServer(config *Config, packetDispatcher dispatcher.PacketDispatcher) *Server
NewServer creates a new Server object.
Click to show internal directories.
Click to hide internal directories.