(self, ip)
| 971 | self.debuglevel = level |
| 972 | |
| 973 | def _wrap_ipv6(self, ip): |
| 974 | if b':' in ip and ip[0] != b'['[0]: |
| 975 | return b"[" + ip + b"]" |
| 976 | return ip |
| 977 | |
| 978 | def _tunnel(self): |
| 979 | connect = b"CONNECT %s:%d %s\r\n" % ( |
no outgoing calls
no test coverage detected