Home
last modified time | relevance | path

Searched refs:selected_alpn_protocol (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/
Dssl.py946 def selected_alpn_protocol(self): member in SSLObject
950 return self._sslobj.selected_alpn_protocol()
1167 def selected_alpn_protocol(self): member in SSLSocket
1172 return self._sslobj.selected_alpn_protocol()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs466 assert_eq!(s.ssl().selected_alpn_protocol(), Some(&b"spdy/3.1"[..])); in test_alpn_server_advertise_multiple()
500 assert_eq!(None, s.ssl().selected_alpn_protocol()); in test_alpn_server_select_none()
512 assert_eq!(None, s.ssl().selected_alpn_protocol()); in test_alpn_server_unilateral()
/third_party/python/Doc/library/
Dssl.rst1346 .. method:: SSLSocket.selected_alpn_protocol()
1702 successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method will
1755 :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`.
2514 - :meth:`~SSLSocket.selected_alpn_protocol`
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs2604 pub fn selected_alpn_protocol(&self) -> Option<&[u8]> { in selected_alpn_protocol() method
/third_party/python/Doc/whatsnew/
D3.5.rst1784 :meth:`SSLSocket.selected_alpn_protocol() <ssl.SSLSocket.selected_alpn_protocol>`
/third_party/python/Lib/test/
Dtest_ssl.py2422 self.server.selected_alpn_protocols.append(self.sslconn.selected_alpn_protocol())
2838 'client_alpn_protocol': s.selected_alpn_protocol(),