MCPcopy Index your code
hub / github.com/python/cpython / connection_made

Method connection_made

Lib/asyncio/sslproto.py:385–391  ·  view source on GitHub ↗

Called when the low-level connection is made. Start the SSL handshake.

(self, transport)

Source from the content-addressed store, hash-verified

383 return self._transport is not None and self._transport.is_closing()
384
385 def connection_made(self, transport):
386 """Called when the low-level connection is made.
387
388 Start the SSL handshake.
389 """
390 self._transport = transport
391 self._start_handshake()
392
393 def connection_lost(self, exc):
394 """Called when the low-level connection is lost or closed.

Callers 1

Calls 1

_start_handshakeMethod · 0.95

Tested by

no test coverage detected