crypto/tls.Config.UnwrapSession (field)

7 uses

	crypto/tls (current package)
		common.go#L766: 	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
		common.go#L1024: 		UnwrapSession:                       c.UnwrapSession,
		handshake_server.go#L462: 	if c.config.UnwrapSession != nil {
		handshake_server.go#L463: 		ss, err := c.config.UnwrapSession(hs.clientHello.sessionTicket, c.connectionStateLocked())
		handshake_server_tls13.go#L324: 		if c.config.UnwrapSession != nil {
		handshake_server_tls13.go#L326: 			sessionState, err = c.config.UnwrapSession(identity.label, c.connectionStateLocked())