type crypto/tls.ConnectionState
28 uses
crypto/tls (current package)
common.go#L248: type ConnectionState struct {
common.go#L342: func (cs *ConnectionState) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
common.go#L677: VerifyConnection func(ConnectionState) error
common.go#L766: UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
common.go#L782: WrapSession func(ConnectionState, *SessionState) ([]byte, error)
common.go#L870: EncryptedClientHelloRejectionVerify func(ConnectionState) error
conn.go#L1608: func (c *Conn) ConnectionState() ConnectionState {
conn.go#L1616: func (c *Conn) connectionStateLocked() ConnectionState {
conn.go#L1617: var state ConnectionState
quic.go#L360: 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) {
net/http
h2_bundle.go#L3822: ConnectionState() tls.ConnectionState
h2_bundle.go#L4481: sc.tlsState = new(tls.ConnectionState)
h2_bundle.go#L4584: tlsState *tls.ConnectionState // shared by all handlers, like net/http
h2_bundle.go#L6288: var tlsState *tls.ConnectionState // nil if not scheme https
h2_bundle.go#L7606: 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#L1893: ConnectionState() tls.ConnectionState
server.go#L1951: c.tlsState = new(tls.ConnectionState)
server.go#L1971: c.tlsState = new(tls.ConnectionState)
server.go#L3975: req.TLS = &tls.ConnectionState{}
transport.go#L1750: trace.TLSHandshakeDone(tls.ConnectionState{}, err)
transport.go#L1804: trace.TLSHandshakeDone(tls.ConnectionState{}, err)
transport.go#L2124: tlsState *tls.ConnectionState
net/http/httptrace
trace.go#L143: TLSHandshakeDone func(tls.ConnectionState, error)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |