SILENT KILLERPanel

Current Path: > > opt > hc_python > > > lib > > python3.12 > > > site-packages > urllib3 > util >


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.8
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/hc_python///lib//python3.12///site-packages/urllib3/util/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 1001 bytes April 04 2025 08:09:05.
connection.py File 4444 bytes April 04 2025 08:09:05.
proxy.py File 1148 bytes April 04 2025 08:09:05.
request.py File 8218 bytes April 04 2025 08:09:05.
response.py File 3374 bytes April 04 2025 08:09:05.
retry.py File 18459 bytes April 04 2025 08:09:05.
ssl_.py File 18884 bytes April 04 2025 08:09:05.
ssl_match_hostname.py File 5812 bytes April 04 2025 08:09:05.
ssltransport.py File 8847 bytes April 04 2025 08:09:05.
timeout.py File 10346 bytes April 04 2025 08:09:05.
url.py File 15205 bytes April 04 2025 08:09:05.
util.py File 1146 bytes April 04 2025 08:09:05.
wait.py File 4423 bytes April 04 2025 08:09:05.

Reading File: //opt/hc_python///lib//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

SILENT KILLER Tool