- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NewLRUClientSessionCache (0.08 sec)
-
internal/config/etcd/etcd.go
RootCAs: rootCAs, PreferServerCipherSuites: true, MinVersion: tls.VersionTLS12, NextProtos: []string{"http/1.1", "h2"}, ClientSessionCache: tls.NewLRUClientSessionCache(64), CipherSuites: crypto.TLSCiphersBackwardCompatible(), CurvePreferences: crypto.TLSCurveIDs(), } // This is only to support client side certificate authenticationRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri May 16 14:27:42 UTC 2025 - 5.2K bytes - Viewed (0) -
internal/http/transports.go
} tlsClientConfig := tls.Config{ RootCAs: s.RootCAs, CipherSuites: s.CipherSuites, CurvePreferences: s.CurvePreferences, ClientSessionCache: tls.NewLRUClientSessionCache(tlsClientSessionCacheSize), } // For more details about various values used here refer // https://golang.org/pkg/net/http/#Transport documentation tr := &http.Transport{Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 08 17:51:53 UTC 2025 - 6.5K bytes - Viewed (0) -
internal/config/identity/ldap/config.go
SRVRecordName: getCfgVal(SRVRecordName), TLS: &tls.Config{ ServerName: host, MinVersion: tls.VersionTLS12, NextProtos: []string{"h2", "http/1.1"}, ClientSessionCache: tls.NewLRUClientSessionCache(100), CipherSuites: crypto.TLSCiphersBackwardCompatible(), // Contains RSA key exchange RootCAs: rootCAs, }, } // Parse explicitly set enable=on/off flag.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Sep 18 11:47:48 UTC 2025 - 8.6K bytes - Viewed (0)