crypto/tls.Config.SessionTicketsDisabled (field)

12 uses

	crypto/tls (current package)
		common.go#L716: 	SessionTicketsDisabled bool
		common.go#L970: 		SessionTicketsDisabled:              c.SessionTicketsDisabled,
		common.go#L1037: 		if configForClient.SessionTicketsDisabled {
		common.go#L1052: 	if c.SessionTicketsDisabled {
		handshake_client.go#L382: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		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_server.go#L457: 	if c.config.SessionTicketsDisabled {
		handshake_server.go#L601: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server_tls13.go#L334: 	if c.config.SessionTicketsDisabled {
		handshake_server_tls13.go#L959: 	if hs.c.config.SessionTicketsDisabled {