Called when the low-level connection is made. Start the SSL handshake.
(self, transport)
| 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. |
no test coverage detected