(self, *args, **kwargs)
| 31 | self.verify_mode: int = CERT_NONE |
| 32 | |
| 33 | def wrap_socket(self, *args, **kwargs) -> "SSLSocket": # type: ignore |
| 34 | raise Exception("no ssl support") # pylint: disable=broad-exception-raised |
| 35 | |
| 36 | def set_alpn_protocols(self, *args, **kwargs): # type: ignore |
| 37 | raise Exception("no ssl support") # pylint: disable=broad-exception-raised |
no outgoing calls