crypto/tls.Config.ClientSessionCache (field)

13 uses

	crypto/tls (current package)
		common.go#L730: 	ClientSessionCache ClientSessionCache
		common.go#L972: 		ClientSessionCache:                  c.ClientSessionCache,
		handshake_client.go#L282: 					c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L382: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client.go#L410: 	cs, ok := c.config.ClientSessionCache.Get(cacheKey)
		handshake_client.go#L433: 		c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L464: 		c.config.ClientSessionCache.Put(cacheKey, nil)
		handshake_client.go#L1072: 	c.config.ClientSessionCache.Put(cacheKey, cs)
		handshake_client_tls13.go#L843: 	if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
		handshake_client_tls13.go#L863: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client_tls13.go#L908: 		c.config.ClientSessionCache.Put(cacheKey, cs)
		quic.go#L332: 	c.config.ClientSessionCache.Put(cacheKey, cs)