0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Merge pull request #49 from guilhermebr/master

adding crypto/tls sessioncache
This commit is contained in:
Matt Holt 2015-05-04 23:15:13 -06:00
commit a3b853dd47

View file

@ -132,6 +132,9 @@ func ListenAndServeTLSWithSNI(srv *http.Server, tlsConfigs []TLSConfig) error {
}
config.BuildNameToCertificate()
// Add a session cache LRU algorithm with default capacity (64)
config.ClientSessionCache = tls.NewLRUClientSessionCache(0)
conn, err := net.Listen("tcp", addr)
if err != nil {
return err