mirror of
https://github.com/monero-project/monero.git
synced 2025-01-28 18:56:31 +02:00
assign default port for http and https clients
This commit is contained in:
parent
81d4db08eb
commit
7f836a46c8
@ -135,6 +135,13 @@ namespace http
|
|||||||
http::url_content parsed{};
|
http::url_content parsed{};
|
||||||
const bool r = parse_url(address, parsed);
|
const bool r = parse_url(address, parsed);
|
||||||
CHECK_AND_ASSERT_MES(r, false, "failed to parse url: " << address);
|
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));
|
set_server(std::move(parsed.host), std::to_string(parsed.port), std::move(user), std::move(ssl_options));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user