You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/proxy/socks/config.go

36 lines
686 B

package socks
import (
"v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
)
func (v *Account) Equals(another protocol.Account) bool {
if account, ok := another.(*Account); ok {
return v.Username == account.Username
}
return false
}
func (v *Account) AsAccount() (protocol.Account, error) {
return v, nil
}
func (v *ServerConfig) HasAccount(username, password string) bool {
if v.Accounts == nil {
return false
}
storedPassed, found := v.Accounts[username]
if !found {
return false
}
return storedPassed == password
}
func (v *ServerConfig) GetNetAddress() net.Address {
if v.Address == nil {
return net.LocalHostIP
}
return v.Address.AsAddress()
}