(self, err: str)
| 508 | yield from super().event_to_child(event) |
| 509 | |
| 510 | def on_handshake_error(self, err: str) -> layer.CommandGenerator[None]: |
| 511 | yield commands.Log(f"Server TLS handshake failed. {err}", level=WARNING) |
| 512 | yield from super().on_handshake_error(err) |
| 513 | |
| 514 | |
| 515 | class ClientTLSLayer(TLSLayer): |
nothing calls this directly
no test coverage detected