mirror of https://github.com/v2ray/v2ray-core
14 lines
172 B
Go
14 lines
172 B
Go
|
package socks
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
type Config interface {
|
||
|
IsNoAuth() bool
|
||
|
IsPassword() bool
|
||
|
HasAccount(username, password string) bool
|
||
|
IP() net.IP
|
||
|
UDPEnabled() bool
|
||
|
}
|