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