Home
last modified time | relevance | path

Searched defs:ConnectionState (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dcommon.go180 type ConnectionState struct { struct
181 … uint16 // TLS version used by the connection (e.g. VersionTLS12)
182 HandshakeComplete bool // TLS handshake is complete
183 DidResume bool // connection resumes a previous TLS connection
184 …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 server
187 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN
188 … string // server name requested by client, if any (server side only)
189 PeerCertificates []*x509.Certificate // certificate chain presented by remote peer
[all …]
Dconn.go1346 func (c *Conn) ConnectionState() ConnectionState { func
/external/libweave/src/privet/
Dprivet_types.h80 explicit ConnectionState(Status status) : status_(status) {} in ConnectionState() function
81 explicit ConnectionState(ErrorPtr error) in ConnectionState() function
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketRTCClient.java44 private enum ConnectionState { enum in WebSocketRTCClient