Merge pull request #5910

1b91beb abstract_tcp_server2: fix lingering connections (moneromooo-monero)
This commit is contained in:
luigi1111 2019-09-30 18:55:58 -05:00
commit 15b9b4e047
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 5 additions and 0 deletions

View File

@ -748,6 +748,11 @@ PRAGMA_WARNING_DISABLE_VS(4355)
MERROR("Resetting timer on a dead object");
return;
}
if (m_was_shutdown)
{
MERROR("Setting timer on a shut down object");
return;
}
if (add)
ms += m_timer.expires_from_now();
m_timer.expires_from_now(ms);