crypto/tls.Config.SessionTicketsDisabled (field)

12 uses

	crypto/tls (current package)
		common.go#L642: 	SessionTicketsDisabled bool
		common.go#L771: 		SessionTicketsDisabled:      c.SessionTicketsDisabled,
		common.go#L833: 		if configForClient.SessionTicketsDisabled {
		common.go#L847: 	if c.SessionTicketsDisabled {
		handshake_client.go#L235: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client_tls13.go#L629: 	if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
		handshake_client_tls13.go#L643: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_server.go#L367: 	if c.config.SessionTicketsDisabled {
		handshake_server.go#L464: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server_tls13.go#L242: 	if c.config.SessionTicketsDisabled {
		handshake_server_tls13.go#L706: 	if hs.c.config.SessionTicketsDisabled {