type crypto/tls.ConnectionState
35 uses
crypto/tls (current package)
common.go#L235: type ConnectionState struct {
common.go#L328: func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
common.go#L654: VerifyConnection func(ConnectionState) error
common.go#L743: UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
common.go#L759: WrapSession func(ConnectionState, *SessionState) ([]byte, error)
common.go#L842: EncryptedClientHelloRejectionVerify func(ConnectionState) error
conn.go#L1619: func (c *Conn) ConnectionState() ConnectionState {
conn.go#L1627: func (c *Conn) connectionStateLocked() ConnectionState {
conn.go#L1628: var state ConnectionState
quic.go#L337: func (q *QUICConn) ConnectionState() ConnectionState {
ticket.go#L316: func (c *Config) EncryptTicket(cs ConnectionState, ss *SessionState) ([]byte, error) {
ticket.go#L357: func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {
golang.org/x/net/http2
http2.go#L371: ConnectionState() tls.ConnectionState
server.go#L471: sc.tlsState = new(tls.ConnectionState)
server.go#L574: tlsState *tls.ConnectionState // shared by all handlers, like net/http
server.go#L2291: var tlsState *tls.ConnectionState // nil if not scheme https
transport.go#L315: 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#L3776: ConnectionState() tls.ConnectionState
h2_bundle.go#L4448: sc.tlsState = new(tls.ConnectionState)
h2_bundle.go#L4551: tlsState *tls.ConnectionState // shared by all handlers, like net/http
h2_bundle.go#L6261: var tlsState *tls.ConnectionState // nil if not scheme https
h2_bundle.go#L7638: 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#L1929: ConnectionState() tls.ConnectionState
server.go#L1987: c.tlsState = new(tls.ConnectionState)
server.go#L2007: c.tlsState = new(tls.ConnectionState)
server.go#L4004: req.TLS = &tls.ConnectionState{}
transport.go#L1720: trace.TLSHandshakeDone(tls.ConnectionState{}, err)
transport.go#L1772: trace.TLSHandshakeDone(tls.ConnectionState{}, err)
transport.go#L2077: tlsState *tls.ConnectionState
net/http/httptrace
trace.go#L143: TLSHandshakeDone func(tls.ConnectionState, error)