|
Lines 330-335
class Deep(object):
Link Here
|
| 330 |
delta = 0 |
330 |
delta = 0 |
| 331 |
f = None |
331 |
f = None |
| 332 |
|
332 |
|
|
|
333 |
if url_parts.scheme == "https": |
| 334 |
# ips don't work because the hostname must match the cert |
| 335 |
ips = [url_parts.hostname] |
| 336 |
|
| 333 |
for ip in ips: |
337 |
for ip in ips: |
| 334 |
test_parts = url_parts._replace(netloc=ip) |
338 |
test_parts = url_parts._replace(netloc=ip) |
| 335 |
test_url = url_unparse(test_parts) |
339 |
test_url = url_unparse(test_parts) |
| 336 |
- |
|
|