Skip to content

Commit

Permalink
assign default port for http and https clients
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Feb 17, 2025
1 parent 94188d1 commit 02e2a4f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions contrib/epee/src/abstract_http_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@ 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.port == 0)
{
if (parsed.schema == "http")
parsed.port = 80;
else if (parsed.schema == "https")
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 02e2a4f

Please sign in to comment.