mirror of
https://github.com/monero-project/monero.git
synced 2025-01-24 23:26:39 -05:00
assign default port for http and https clients
This commit is contained in:
parent
a1dc85c537
commit
a095901ec0
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user