crypto/tls.Config.SessionTicketsDisabled (field)

12 uses

	crypto/tls (current package)
		common.go#L669: 	SessionTicketsDisabled bool
		common.go#L807: 		SessionTicketsDisabled:      c.SessionTicketsDisabled,
		common.go#L869: 		if configForClient.SessionTicketsDisabled {
		common.go#L883: 	if c.SessionTicketsDisabled {
		handshake_client.go#L245: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == 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_server.go#L393: 	if c.config.SessionTicketsDisabled {
		handshake_server.go#L490: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server_tls13.go#L227: 	if c.config.SessionTicketsDisabled {
		handshake_server_tls13.go#L692: 	if hs.c.config.SessionTicketsDisabled {