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