Home
last modified time | relevance | path

Searched refs:set_npn_protocols (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/
Dssl.py371 def set_npn_protocols(self, npn_protocols): member in SSLContext
562 self._context.set_npn_protocols(npn_protocols)
/external/python/cpython3/Lib/
Dssl.py425 def set_npn_protocols(self, npn_protocols): member in SSLContext
/external/python/cpython2/Doc/library/
Dssl.rst786 you can use the :meth:`SSLContext.set_npn_protocols` method to advertise
1011 handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or
1200 .. method:: SSLContext.set_npn_protocols(protocols)
1824 :meth:`SSLContext.set_npn_protocols` and
/external/python/cpython2/Lib/test/
Dtest_ssl.py1796 self.context.set_npn_protocols(npn_protocols)
3014 server_context.set_npn_protocols(server_protocols)
3017 client_context.set_npn_protocols(client_protocols)
/external/python/cpython3/Doc/library/
Dssl.rst916 When true, you can use the :meth:`SSLContext.set_npn_protocols` method to advertise
1303 handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or
1660 .. method:: SSLContext.set_npn_protocols(protocols)
2687 :meth:`SSLContext.set_npn_protocols` and
/external/python/cpython3/Lib/test/
Dtest_ssl.py2393 self.context.set_npn_protocols(npn_protocols)
3978 server_context.set_npn_protocols(server_protocols)
3979 client_context.set_npn_protocols(client_protocols)
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1958 the :meth:`ssl.SSLContext.set_npn_protocols` method.