(self)
| 550 | self._do_handshake() |
| 551 | |
| 552 | def _check_handshake_timeout(self): |
| 553 | if self._state == SSLProtocolState.DO_HANDSHAKE: |
| 554 | msg = ( |
| 555 | f"SSL handshake is taking longer than " |
| 556 | f"{self._ssl_handshake_timeout} seconds: " |
| 557 | f"aborting the connection" |
| 558 | ) |
| 559 | self._fatal_error(ConnectionAbortedError(msg)) |
| 560 | |
| 561 | def _do_handshake(self): |
| 562 | try: |
nothing calls this directly
no test coverage detected