PHP 8.2.30
Preview: proxy.py Size: 1.12 KB
/opt/hc_python/lib64/python3.12/site-packages/urllib3/util/proxy.py

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

Directory Contents

Dirs: 1 × Files: 13

Name Size Perms Modified Actions
- drwxr-xr-x 2025-04-04 08:01:58
Edit Download
4.34 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
1.12 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
8.03 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
3.29 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
18.03 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
8.64 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
18.44 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
5.68 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
10.10 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
14.85 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
1.12 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
4.32 KB lrw-r--r-- 2025-04-04 08:01:57
Edit Download
1001 B lrw-r--r-- 2025-04-04 08:01:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).