Merge pull request #1396

7c0dd5e4 net_node: drop connections from banned IPs after looping through connections (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-12-04 22:26:12 +02:00
commit 4a0be41dfe
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -203,15 +203,17 @@ namespace nodetool
m_blocked_ips[addr] = time(nullptr) + seconds;
// drop any connection to that IP
while (!m_net_server.get_config_object().foreach_connection([&](const p2p_connection_context& cntxt)
std::list<boost::uuids::uuid> conns;
m_net_server.get_config_object().foreach_connection([&](const p2p_connection_context& cntxt)
{
if (cntxt.m_remote_ip == addr)
{
drop_connection(cntxt);
return false;
conns.push_back(cntxt.m_connection_id);
}
return true;
}));
});
for (const auto &c: conns)
m_net_server.get_config_object().close(c);
LOG_PRINT_CYAN("IP " << epee::string_tools::get_ip_string_from_int32(addr) << " blocked.", LOG_LEVEL_0);
return true;