proxy
connection_requires_http_tunnel(proxy_url=None, proxy_config=None, destination_scheme=None)
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)
Source code in client/ayon_fusion/vendor/urllib3/util/proxy.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
create_proxy_ssl_context(ssl_version, cert_reqs, ca_certs=None, ca_cert_dir=None, ca_cert_data=None)
Generates a default proxy ssl context if one hasn't been provided by the user.
Source code in client/ayon_fusion/vendor/urllib3/util/proxy.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|