Skip to content
New issue

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

Fix reusing ASIO http_client connecting to HTTPS server via proxy #539

Merged
merged 2 commits into from
Jun 13, 2019

Commits on Sep 8, 2017

  1. Fix reusing ASIO http_client connecting to HTTPS server via proxy

    Calling request() twice on the same client configured to connect to a
    server via HTTPS didn't work under Unix because we issues CONNECT for
    every request, meaning that, for the second one, we sent CONNECT via an
    already established connection to the end server itself which,
    unsurprisingly, didn't work at all.
    
    Fix this by only setting up SSL tunnelling for a new connection but not
    for the already used one.
    vadz committed Sep 8, 2017
    Configuration menu
    Copy the full SHA
    ca1c529 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2019

  1. Merge remote-tracking branch 'origin/master' into pr/n539_fix-proxy-r…

    …euse
    
    # Conflicts:
    #	Release/src/http/client/http_client_asio.cpp
    BillyONeal committed Jun 13, 2019
    Configuration menu
    Copy the full SHA
    05af7d9 View commit details
    Browse the repository at this point in the history