Merge pull request #457

e70d2e5 common: const and init list pedantry (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2015-10-30 09:58:14 +02:00
commit 167e8512ff
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
2 changed files with 3 additions and 2 deletions

View file

@ -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;
}

View file

@ -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://"