mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
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
|
|
}
|