mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
common: const and init list pedantry
This commit is contained in:
parent
9292c1e7cd
commit
e70d2e5be8
@ -46,6 +46,7 @@ public:
|
||||
, uint16_t port
|
||||
)
|
||||
: mp_http_client(p_http_client)
|
||||
, m_ok(false)
|
||||
{
|
||||
// TODO fix http client so that it accepts properly typed arguments
|
||||
std::string ip_str = epee::string_tools::get_ip_string_from_int32(ip);
|
||||
@ -61,7 +62,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
bool is_open()
|
||||
bool is_open() const
|
||||
{
|
||||
return m_ok;
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ namespace tools
|
||||
, m_port{port}
|
||||
{}
|
||||
|
||||
std::string build_url(std::string const & relative_url)
|
||||
std::string build_url(std::string const & relative_url) const
|
||||
{
|
||||
std::string result =
|
||||
"http://"
|
||||
|
Loading…
Reference in New Issue
Block a user