Searched defs:ConnectionState (Results 1 – 4 of 4) sorted by relevance
180 type ConnectionState struct { struct181 … uint16 // TLS version used by the connection (e.g. VersionTLS12)182 HandshakeComplete bool // TLS handshake is complete183 DidResume bool // connection resumes a previous TLS connection184 …erSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...)185 …gotiatedProtocol string // negotiated next protocol (from Config.NextProtos)186 NegotiatedProtocolIsMutual bool // negotiated protocol was advertised by server187 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN188 … string // server name requested by client, if any (server side only)189 PeerCertificates []*x509.Certificate // certificate chain presented by remote peer[all …]
1346 func (c *Conn) ConnectionState() ConnectionState { func
80 explicit ConnectionState(Status status) : status_(status) {} in ConnectionState() function81 explicit ConnectionState(ErrorPtr error) in ConnectionState() function
44 private enum ConnectionState { enum in WebSocketRTCClient