mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
levin_protocol_handler_async: another attempt at fixing at exception
This commit is contained in:
parent
64d23ce331
commit
cb9aa23cc5
1 changed files with 12 additions and 3 deletions
|
@ -743,9 +743,18 @@ void async_protocol_handler_config<t_connection_context>::del_out_connections(si
|
||||||
shuffle(out_connections.begin(), out_connections.end(), std::default_random_engine(seed));
|
shuffle(out_connections.begin(), out_connections.end(), std::default_random_engine(seed));
|
||||||
while (count > 0 && out_connections.size() > 0)
|
while (count > 0 && out_connections.size() > 0)
|
||||||
{
|
{
|
||||||
close(*out_connections.begin());
|
try
|
||||||
del_connection(m_connects.at(*out_connections.begin()));
|
{
|
||||||
out_connections.erase(out_connections.begin());
|
auto i = out_connections.begin();
|
||||||
|
async_protocol_handler<t_connection_context> *conn = m_connects.at(*i);
|
||||||
|
del_connection(conn);
|
||||||
|
close(*i);
|
||||||
|
out_connections.erase(i);
|
||||||
|
}
|
||||||
|
catch (const std::out_of_range &e)
|
||||||
|
{
|
||||||
|
MWARNING("Connection not found in m_connects, continuing");
|
||||||
|
}
|
||||||
--count;
|
--count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue