mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update xtransport.go
downgrade test fix
This commit is contained in:
parent
eb2c1dc6b3
commit
6c33547288
1 changed files with 5 additions and 7 deletions
|
@ -548,6 +548,10 @@ func (xTransport *XTransport) Fetch(
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
rtt := time.Since(start)
|
rtt := time.Since(start)
|
||||||
|
statusCode := 503
|
||||||
|
if resp != nil {
|
||||||
|
statusCode = resp.StatusCode
|
||||||
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if resp == nil {
|
if resp == nil {
|
||||||
err = errors.New("Webserver returned an error")
|
err = errors.New("Webserver returned an error")
|
||||||
|
@ -557,18 +561,12 @@ func (xTransport *XTransport) Fetch(
|
||||||
} else {
|
} else {
|
||||||
dlog.Debugf("HTTP client error: [%v] - closing idle connections", err)
|
dlog.Debugf("HTTP client error: [%v] - closing idle connections", err)
|
||||||
xTransport.transport.CloseIdleConnections()
|
xTransport.transport.CloseIdleConnections()
|
||||||
}
|
|
||||||
statusCode := 503
|
|
||||||
if resp != nil {
|
|
||||||
statusCode = resp.StatusCode
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
dlog.Debugf("[%s]: [%s]", req.URL, err)
|
dlog.Debugf("[%s]: [%s]", req.URL, err)
|
||||||
if xTransport.tlsCipherSuite != nil && strings.Contains(err.Error(), "handshake failure") {
|
if xTransport.tlsCipherSuite != nil && strings.Contains(err.Error(), "handshake failure") {
|
||||||
dlog.Warnf(
|
dlog.Warnf(
|
||||||
"TLS handshake failure - Try changing or deleting the tls_cipher_suite value in the configuration file",
|
"TLS handshake failure - Try changing or deleting the tls_cipher_suite value in the configuration file",
|
||||||
)
|
)
|
||||||
xTransport.tlsCipherSuite = nil
|
//xTransport.tlsCipherSuite = nil
|
||||||
xTransport.rebuildTransport()
|
xTransport.rebuildTransport()
|
||||||
}
|
}
|
||||||
return nil, statusCode, nil, rtt, err
|
return nil, statusCode, nil, rtt, err
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue