OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot-dns-digitalocean
/
4356
/
lib
/
python3.12
/
site-packages
/
urllib3
/
util
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:18:03 PM
rwxr-xr-x
📄
__init__.py
1001 bytes
06/12/2025 06:17:59 PM
rw-r--r--
📁
__pycache__
-
06/12/2025 06:18:03 PM
rwxr-xr-x
📄
connection.py
4.34 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
proxy.py
1.12 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
request.py
8.03 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
response.py
3.29 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
retry.py
18.03 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
ssl_.py
19.32 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
ssl_match_hostname.py
5.71 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
ssltransport.py
8.64 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
timeout.py
10.1 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
url.py
14.85 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
util.py
1.12 KB
06/12/2025 06:17:59 PM
rw-r--r--
📄
wait.py
4.32 KB
06/12/2025 06:17:59 PM
rw-r--r--
Editing: proxy.py
Close
from __future__ import annotations import typing from .url import Url if typing.TYPE_CHECKING: from ..connection import ProxyConfig def connection_requires_http_tunnel( proxy_url: Url | None = None, proxy_config: ProxyConfig | None = None, destination_scheme: str | None = None, ) -> bool: """ Returns True if the connection requires an HTTP CONNECT through the proxy. :param URL proxy_url: URL of the proxy. :param ProxyConfig proxy_config: Proxy configuration from poolmanager.py :param str destination_scheme: The scheme of the destination. (i.e https, http, etc) """ # If we're not using a proxy, no way to use a tunnel. if proxy_url is None: return False # HTTP destinations never require tunneling, we always forward. if destination_scheme == "http": return False # Support for forwarding with HTTPS proxies and HTTPS destinations. if ( proxy_url.scheme == "https" and proxy_config and proxy_config.use_forwarding_for_https ): return False # Otherwise always use a tunnel. return True