common: const and init list pedantry

pull/95/head
moneromooo-monero 9 years ago
parent 9292c1e7cd
commit e70d2e5be8
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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…
Cancel
Save