1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-04 17:27:23 -05:00

remove unused code

This commit is contained in:
Darien Raymond 2017-04-28 14:58:58 +02:00
parent e62d649322
commit bd8239f12d
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -1,9 +1,6 @@
package socks
import (
"v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
)
import "v2ray.com/core/common/protocol"
func (v *Account) Equals(another protocol.Account) bool {
if account, ok := another.(*Account); ok {
@ -26,10 +23,3 @@ func (v *ServerConfig) HasAccount(username, password string) bool {
}
return storedPassed == password
}
func (v *ServerConfig) GetNetAddress() net.Address {
if v.Address == nil {
return net.LocalHostIP
}
return v.Address.AsAddress()
}