mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
disable session ticket
This commit is contained in:
parent
258062fc9b
commit
a13df1a5e1
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue