Skip to content

Commit

Permalink
FIX: SSL proxy tunnel support with basic auth (#1183)
Browse files Browse the repository at this point in the history
  • Loading branch information
reneme authored and BillyONeal committed Jul 12, 2019
1 parent 06aeb8e commit 47cd408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Release/src/http/client/http_client_asio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ class asio_context final : public request_context, public std::enable_shared_fro

if (m_context->m_http_client->client_config().proxy().credentials().is_set())
{
request_stream << m_context->generate_basic_proxy_auth_header() << CRLF;
request_stream << m_context->generate_basic_proxy_auth_header();
}

request_stream << CRLF;
Expand Down

0 comments on commit 47cd408

Please sign in to comment.