mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
string(<int>) doesn't do what you may expect :)
This commit is contained in:
parent
e09f0875c1
commit
1ca7597c7f
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
@ -84,7 +85,7 @@ func (xTransport *XTransport) rebuildTransport() {
|
|||
} else {
|
||||
dlog.Debugf("[%s] IP address was not cached", host)
|
||||
}
|
||||
addrStr = ipOnly + ":" + string(port)
|
||||
addrStr = ipOnly + ":" + strconv.Itoa(port)
|
||||
return dialer.DialContext(ctx, network, addrStr)
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue