mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Revert "xtransport layer to netip and immediate dependencies (#2159)"
This reverts commit baee50f1dc
.
This commit is contained in:
parent
e124623ffc
commit
937c1e63e2
3 changed files with 27 additions and 30 deletions
|
@ -260,7 +260,7 @@ func (serversInfo *ServersInfo) estimatorUpdate(currentActive int) {
|
|||
if activeCount == serversCount {
|
||||
return
|
||||
}
|
||||
candidate := rand.Intn(serversCount-activeCount) + activeCount
|
||||
candidate := rand.Intn(serversCount-activeCount)+activeCount
|
||||
candidateRtt, currentActiveRtt := serversInfo.inner[candidate].rtt.Value(), serversInfo.inner[currentActive].rtt.Value()
|
||||
if currentActiveRtt < 0 {
|
||||
currentActiveRtt = candidateRtt
|
||||
|
@ -529,7 +529,7 @@ func route(proxy *Proxy, name string, serverProto stamps.StampProtoType) (*Relay
|
|||
}
|
||||
if len(relayCandidateStamp.ServerAddrStr) > 0 {
|
||||
ipOnly, _ := ExtractHostAndPort(relayCandidateStamp.ServerAddrStr, -1)
|
||||
if ip, err := ParseIP(ipOnly); err != nil {
|
||||
if ip := ParseIP(ipOnly); ip != nil {
|
||||
host, _ := ExtractHostAndPort(relayCandidateStamp.ProviderName, -1)
|
||||
proxy.xTransport.saveCachedIP(host, ip, -1*time.Second)
|
||||
}
|
||||
|
@ -665,7 +665,7 @@ func fetchDoHServerInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, isN
|
|||
// in order to fingerprint clients across multiple IP addresses.
|
||||
if len(stamp.ServerAddrStr) > 0 {
|
||||
ipOnly, _ := ExtractHostAndPort(stamp.ServerAddrStr, -1)
|
||||
if ip, err := ParseIP(ipOnly); err != nil {
|
||||
if ip := ParseIP(ipOnly); ip != nil {
|
||||
host, _ := ExtractHostAndPort(stamp.ProviderName, -1)
|
||||
proxy.xTransport.saveCachedIP(host, ip, -1*time.Second)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue