Skip to content

Commit

Permalink
https addresses use default port of 443
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Aug 15, 2024
1 parent a1dc85c commit d543d99
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions contrib/epee/src/abstract_http_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ namespace http
http::url_content parsed{};
const bool r = parse_url(address, parsed);
CHECK_AND_ASSERT_MES(r, false, "failed to parse url: " << address);
if (parsed.schema == "https" && parsed.port == 0) parsed.port = 443;
set_server(std::move(parsed.host), std::to_string(parsed.port), std::move(user), std::move(ssl_options));
return true;
}
Expand Down

0 comments on commit d543d99

Please sign in to comment.