Update xtransport.go

fix on startup and cipher suite downgrade on refresh
This commit is contained in:
ACE 2025-01-26 05:58:33 +02:00 committed by GitHub
parent a9bfb2adac
commit eeead7f8a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -256,7 +256,6 @@ func (xTransport *XTransport) rebuildTransport() {
if http2Transport, err := http2.ConfigureTransports(transport); err != nil {
http2Transport.ReadIdleTimeout = timeout
http2Transport.AllowHTTP = false
xTransport.keepCipherSuite = true
}
xTransport.transport = transport
if xTransport.http3 {
@ -567,9 +566,6 @@ func (xTransport *XTransport) Fetch(
dlog.Warnf(
"TLS handshake failure - Try changing or deleting the tls_cipher_suite value in the configuration file",
)
if xTransport.keepCipherSuite != true {
xTransport.tlsCipherSuite = nil
}
xTransport.rebuildTransport()
}
return nil, statusCode, nil, rtt, err