Searched defs:ConnectionState (Results 1 – 7 of 7) sorted by relevance
249 type ConnectionState struct { struct250 … uint16 // TLS version used by the connection (e.g. VersionTLS12)251 HandshakeComplete bool // TLS handshake is complete252 DidResume bool // connection resumes a previous TLS connection253 …erSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...)254 …gotiatedProtocol string // negotiated next protocol (from Config.NextProtos)255 NegotiatedProtocolIsMutual bool // negotiated protocol was advertised by server256 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN257 … string // server name requested by client, if any (server side only)258 PeerCertificates []*x509.Certificate // certificate chain presented by remote peer[all …]
1834 func (c *Conn) ConnectionState() ConnectionState { func
58 private enum ConnectionState { NEW, CONNECTED, CLOSED, ERROR } enum in DirectRTCClient
44 private enum ConnectionState { NEW, CONNECTED, CLOSED, ERROR } enum in WebSocketRTCClient
4035 type ConnectionState float64 type