We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Of the following proxy cases...
...we currently only support the first two.
In order to support the other two cases we should add a proxy_ssl_context argument, which should be used for the SSL connection to the proxy itself.
proxy_ssl_context
Implementing the last case will be a little complicated for the sync case, since the stdlib wrap_socket behaviour doesn't support TLS-in-TLS.
wrap_socket
Note that the urllib3 project documentation, do a good job of documenting the possible proxy types.
urllib3
Also see the httpx issue for this... encode/httpx#1434
httpx
Progress...
The text was updated successfully, but these errors were encountered:
I think that closing #721 is a necessary precursor to resolving this enhancement.
Sorry, something went wrong.
TLS-in-TLS
Successfully merging a pull request may close this issue.
Of the following proxy cases...
...we currently only support the first two.
In order to support the other two cases we should add a
proxy_ssl_context
argument, which should be used for the SSL connection to the proxy itself.Implementing the last case will be a little complicated for the sync case, since the stdlib
wrap_socket
behaviour doesn't support TLS-in-TLS.Note that the
urllib3
project documentation, do a good job of documenting the possible proxy types.Also see the
httpx
issue for this... encode/httpx#1434Progress...
The text was updated successfully, but these errors were encountered: