Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dssl.py734 def selected_alpn_protocol(self): member in SSLObject
739 return self._sslobj.selected_alpn_protocol()
949 def selected_alpn_protocol(self): member in SSLSocket
954 return self._sslobj.selected_alpn_protocol()
/external/python/cpython2/Lib/
Dssl.py696 def selected_alpn_protocol(self): member in SSLSocket
701 return self._sslobj.selected_alpn_protocol()
/external/python/cpython2/Doc/library/
Dssl.rst998 .. method:: SSLSocket.selected_alpn_protocol()
1188 successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method will
1196 behaves like 1.0.2, :meth:`SSLSocket.selected_alpn_protocol` returns None.
1238 :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`.
/external/python/cpython3/Doc/library/
Dssl.rst1290 .. method:: SSLSocket.selected_alpn_protocol()
1648 successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method will
1656 behaves like 1.0.2, :meth:`SSLSocket.selected_alpn_protocol` returns None.
1701 :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`.
/external/python/cpython2/Lib/test/
Dtest_ssl.py1672 … self.server.selected_alpn_protocols.append(self.sslconn.selected_alpn_protocol())
2006 'client_alpn_protocol': s.selected_alpn_protocol(),
/external/python/cpython3/Lib/test/
Dtest_ssl.py2216 self.server.selected_alpn_protocols.append(self.sslconn.selected_alpn_protocol())
2611 'client_alpn_protocol': s.selected_alpn_protocol(),
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1784 :meth:`SSLSocket.selected_alpn_protocol() <ssl.SSLSocket.selected_alpn_protocol>`
/external/scapy/doc/notebooks/
DHTTP_2_Tuto.ipynb125 "assert('h2' == ssl_sock.selected_alpn_protocol())"