type crypto/tls.ConnectionState

25 uses

	crypto/tls (current package)
		common.go#L237: type ConnectionState struct {
		common.go#L311: func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
		common.go#L630: 	VerifyConnection func(ConnectionState) error
		common.go#L715: 	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
		common.go#L731: 	WrapSession func(ConnectionState, *SessionState) ([]byte, error)
		conn.go#L1596: func (c *Conn) ConnectionState() ConnectionState {
		conn.go#L1602: func (c *Conn) connectionStateLocked() ConnectionState {
		conn.go#L1603: 	var state ConnectionState
		quic.go#L279: func (q *QUICConn) ConnectionState() ConnectionState {
		ticket.go#L310: func (c *Config) EncryptTicket(cs ConnectionState, ss *SessionState) ([]byte, error) {
		ticket.go#L351: func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {

	net/http
		h2_bundle.go#L3642: 	ConnectionState() tls.ConnectionState
		h2_bundle.go#L4277: 		sc.tlsState = new(tls.ConnectionState)
		h2_bundle.go#L4380: 	tlsState         *tls.ConnectionState        // shared by all handlers, like net/http
		h2_bundle.go#L6030: 	var tlsState *tls.ConnectionState // nil if not scheme https
		h2_bundle.go#L7379: 	tlsState      *tls.ConnectionState // nil only for specialized impls
		request.go#L309: 	TLS *tls.ConnectionState
		response.go#L121: 	TLS *tls.ConnectionState
		server.go#L275: 	tlsState *tls.ConnectionState
		server.go#L1908: 		c.tlsState = new(tls.ConnectionState)
		server.go#L3537: 		req.TLS = &tls.ConnectionState{}
		transport.go#L1564: 			trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L1614: 					trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L1906: 	tlsState  *tls.ConnectionState

	net/http/httptrace
		trace.go#L143: 	TLSHandshakeDone func(tls.ConnectionState, error)