💾 Archived View for tris.fyi › pydoc › asyncio.sslproto captured on 2023-01-29 at 03:53:45. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-01-08)
-=-=-=-=-=-=-
This module has no docstring.
SSL protocol. Implementation of SSL on top of a socket using incoming and outgoing buffers which are ssl.MemoryBIO objects.
connection_lost(self, exc) Called when the low-level connection is lost or closed. The argument is an exception object or None (the latter meaning a regular EOF is received or the connection was aborted or closed).
connection_made(self, transport) Called when the low-level connection is made. Start the SSL handshake.
data_received(self, data) Called when some SSL data is received. The argument is a bytes object.
eof_received(self) Called when the other end of the low-level stream is half-closed. If this returns a false value (including None), the transport will close itself. If it returns a true value, closing the transport is up to the protocol.
pause_writing(self) Called when the low-level transport's buffer goes over the high-water mark.
resume_writing(self) Called when the low-level transport's buffer drains below the low-water mark.
logger = <Logger asyncio (INFO)>