type crypto/tls.ConnectionState

33 uses

	crypto/tls (current package)
		common.go#L235: type ConnectionState struct {
		common.go#L323: func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
		common.go#L649: 	VerifyConnection func(ConnectionState) error
		common.go#L738: 	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
		common.go#L754: 	WrapSession func(ConnectionState, *SessionState) ([]byte, error)
		common.go#L837: 	EncryptedClientHelloRejectionVerify func(ConnectionState) error
		conn.go#L1612: func (c *Conn) ConnectionState() ConnectionState {
		conn.go#L1620: func (c *Conn) connectionStateLocked() ConnectionState {
		conn.go#L1621: 	var state ConnectionState
		quic.go#L337: func (q *QUICConn) ConnectionState() ConnectionState {
		ticket.go#L311: func (c *Config) EncryptTicket(cs ConnectionState, ss *SessionState) ([]byte, error) {
		ticket.go#L352: func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {

	golang.org/x/net/http2
		http2.go#L380: 	ConnectionState() tls.ConnectionState
		server.go#L501: 		sc.tlsState = new(tls.ConnectionState)
		server.go#L604: 	tlsState         *tls.ConnectionState   // shared by all handlers, like net/http
		server.go#L2308: 	var tlsState *tls.ConnectionState // nil if not scheme https
		transport.go#L359: 	tlsState      *tls.ConnectionState // nil only for specialized impls

	google.golang.org/grpc/credentials
		tls.go#L43: 	State tls.ConnectionState

	google.golang.org/grpc/internal/credentials
		spiffe.go#L36: func SPIFFEIDFromState(state tls.ConnectionState) *url.URL {

	net/http
		h2_bundle.go#L3859: 	ConnectionState() tls.ConnectionState
		h2_bundle.go#L4548: 		sc.tlsState = new(tls.ConnectionState)
		h2_bundle.go#L4651: 	tlsState         *tls.ConnectionState        // shared by all handlers, like net/http
		h2_bundle.go#L6365: 	var tlsState *tls.ConnectionState // nil if not scheme https
		h2_bundle.go#L7781: 	tlsState      *tls.ConnectionState // nil only for specialized impls
		request.go#L307: 	TLS *tls.ConnectionState
		response.go#L121: 	TLS *tls.ConnectionState
		server.go#L276: 	tlsState *tls.ConnectionState
		server.go#L1991: 		c.tlsState = new(tls.ConnectionState)
		server.go#L3965: 		req.TLS = &tls.ConnectionState{}
		transport.go#L1717: 			trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L1769: 					trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L2074: 	tlsState  *tls.ConnectionState

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