type crypto/tls.ConnectionState

30 uses

	crypto/tls (current package)
		common.go#L217: type ConnectionState struct {
		common.go#L287: func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
		common.go#L592: 	VerifyConnection func(ConnectionState) error
		conn.go#L1408: func (c *Conn) ConnectionState() ConnectionState {
		conn.go#L1414: func (c *Conn) connectionStateLocked() ConnectionState {
		conn.go#L1415: 	var state ConnectionState

	github.com/prometheus/client_golang/prometheus/promhttp
		instrument_client.go#L191: 			TLSHandshakeDone: func(_ tls.ConnectionState, err error) {

	go.opencensus.io/plugin/ochttp
		span_annotating_client_trace.go#L145: func (s spanAnnotator) tlsHandshakeDone(_ tls.ConnectionState, err error) {

	golang.org/x/net/http2
		http2.go#L329: 	ConnectionState() tls.ConnectionState
		server.go#L424: 		sc.tlsState = new(tls.ConnectionState)
		server.go#L509: 	tlsState         *tls.ConnectionState   // shared by all handlers, like net/http
		server.go#L2064: 	var tlsState *tls.ConnectionState // nil if not scheme https
		transport.go#L232: 	tlsState  *tls.ConnectionState // nil only for specialized impls

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

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

	net/http
		h2_bundle.go#L3403: 	ConnectionState() tls.ConnectionState
		h2_bundle.go#L3990: 		sc.tlsState = new(tls.ConnectionState)
		h2_bundle.go#L4075: 	tlsState         *tls.ConnectionState        // shared by all handlers, like net/http
		h2_bundle.go#L5619: 	var tlsState *tls.ConnectionState // nil if not scheme https
		h2_bundle.go#L6734: 	tlsState  *tls.ConnectionState // nil only for specialized impls
		request.go#L300: 	TLS *tls.ConnectionState
		response.go#L121: 	TLS *tls.ConnectionState
		server.go#L270: 	tlsState *tls.ConnectionState
		server.go#L1852: 		c.tlsState = new(tls.ConnectionState)
		server.go#L3450: 		req.TLS = &tls.ConnectionState{}
		transport.go#L1539: 			trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L1589: 					trace.TLSHandshakeDone(tls.ConnectionState{}, err)
		transport.go#L1874: 	tlsState  *tls.ConnectionState

	net/http/httptest
		httptest.go#L82: 		req.TLS = &tls.ConnectionState{

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