crypto/tls.Config.SessionTicketsDisabled (field)

12 uses

	crypto/tls (current package)
		common.go#L699: 	SessionTicketsDisabled bool
		common.go#L898: 		SessionTicketsDisabled:              c.SessionTicketsDisabled,
		common.go#L964: 		if configForClient.SessionTicketsDisabled {
		common.go#L978: 	if c.SessionTicketsDisabled {
		handshake_client.go#L381: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_client_tls13.go#L848: 	if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
		handshake_client_tls13.go#L869: 	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
		handshake_server.go#L423: 	if c.config.SessionTicketsDisabled {
		handshake_server.go#L558: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server_tls13.go#L297: 	if c.config.SessionTicketsDisabled {
		handshake_server_tls13.go#L830: 	if hs.c.config.SessionTicketsDisabled {