(
self, destination_server_host: str, destination_server_port: int
)
| 271 | """ |
| 272 | |
| 273 | def __init__( |
| 274 | self, destination_server_host: str, destination_server_port: int |
| 275 | ) -> None: |
| 276 | self.destination_server_host = destination_server_host |
| 277 | self.destination_server_port = destination_server_port |
| 278 | self.server_ctx, _ = server_client_ssl_contexts() |
| 279 | |
| 280 | def start_proxy_handler(self) -> None: |
| 281 | """ |
nothing calls this directly
no test coverage detected