disable session ticket

This commit is contained in:
ACE 2025-01-26 05:15:24 +02:00 committed by GitHub
parent 258062fc9b
commit a13df1a5e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -220,9 +220,9 @@ func (xTransport *XTransport) rebuildTransport() {
}
if xTransport.tlsDisableSessionTickets {
tlsClientConfig.SessionTicketsDisabled = xTransport.tlsDisableSessionTickets
if !xTransport.tlsDisableSessionTickets {
tlsClientConfig.ClientSessionCache = tls.NewLRUClientSessionCache(10)
}
tlsClientConfig.ClientSessionCache = nil
} else {
tlsClientConfig.ClientSessionCache = tls.NewLRUClientSessionCache(10)
}
if xTransport.tlsCipherSuite != nil {
tlsClientConfig.PreferServerCipherSuites = false