1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 14:24:36 -04:00
v2fly/proxy/socks/config/config.go

14 lines
178 B
Go
Raw Normal View History

2015-12-03 16:41:06 -05:00
package config
import (
"net"
)
type SocksConfig interface {
IsNoAuth() bool
IsPassword() bool
HasAccount(username, password string) bool
IP() net.IP
UDPEnabled() bool
}