Home
last modified time | relevance | path

Searched refs:start_tls (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/test/test_asyncio/
Dtest_sslproto.py229 sock.start_tls(server_context, server_side=True)
265 new_tr = await self.loop.start_tls(tr, proto, client_context)
290 sock.start_tls(server_context, server_side=True)
356 sock.start_tls(server_context, server_side=True)
412 new_tr = await self.loop.start_tls(tr, proto, client_context)
487 self.loop.start_tls(tr, proto, client_context),
510 sock.start_tls(client_context)
548 new_tr = await self.loop.start_tls(
586 await self.loop.start_tls(None, None, None)
590 await self.loop.start_tls(None, None, sslctx)
[all …]
Dfunctional.py136 def start_tls(self, ssl_context, *, member in TestSocketWrapper
/external/python/cpython3/Misc/NEWS.d/
D3.7.0rc1.rst122 asyncio/start_tls: Fix error message; cancel callbacks in case of an
D3.7.0b5.rst187 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
D3.7.0a4.rst274 asyncio: Implement loop.start_tls()
D3.8.0a1.rst4354 asyncio/start_tls: Fix error message; cancel callbacks in case of an
4527 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
/external/python/cpython3/Lib/asyncio/
Devents.py368 async def start_tls(self, transport, protocol, sslcontext, *, member in AbstractEventLoop
Dbase_events.py1159 async def start_tls(self, transport, protocol, sslcontext, *, member in BaseEventLoop
/external/python/cpython3/Lib/test/
Dcfgparser.2270 ; ldap ssl = start_tls
271 # start_tls should run on 389, but samba defaults incorrectly to 636
/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst171 * - ``await`` :meth:`loop.start_tls`
Dasyncio-eventloop.rst749 .. coroutinemethod:: loop.start_tls(transport, protocol, \
757 the *start_tls* method should never be used again.
/external/python/cpython3/Doc/whatsnew/
D3.7.rst654 * The new :meth:`loop.start_tls() <asyncio.loop.start_tls>`