crypto/tls.Config.ClientSessionCache (field)

14 uses

	crypto/tls (current package)
		common.go#L753: 	ClientSessionCache ClientSessionCache
		common.go#L1023: 		ClientSessionCache:                  c.ClientSessionCache,
		handshake_client.go#L250: 					c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L354: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client.go#L382: 	cs, ok := c.config.ClientSessionCache.Get(cacheKey)
		handshake_client.go#L402: 		c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L422: 			c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L445: 		c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L1059: 	c.config.ClientSessionCache.Put(cacheKey, cs)
		handshake_client_tls13.go#L821: 	if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
		handshake_client_tls13.go#L838: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client_tls13.go#L883: 		c.config.ClientSessionCache.Put(cacheKey, cs)
		quic.go#L355: 	c.config.ClientSessionCache.Put(cacheKey, cs)