crypto/tls.Config.ClientSessionCache (field)

12 uses

	crypto/tls (current package)
		common.go#L683: 	ClientSessionCache ClientSessionCache
		common.go#L809: 		ClientSessionCache:          c.ClientSessionCache,
		handshake_client.go#L170: 				c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L237: 		c.config.ClientSessionCache.Put(cacheKey, hs.session)
		handshake_client.go#L245: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client.go#L266: 	session, ok := c.config.ClientSessionCache.Get(cacheKey)
		handshake_client.go#L294: 			c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L315: 		c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client_tls13.go#L626: 	if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
		handshake_client_tls13.go#L640: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client_tls13.go#L679: 	c.config.ClientSessionCache.Put(cacheKey, session)