mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
cleanup leaseset requests on stop
This commit is contained in:
@@ -85,9 +85,6 @@ namespace client
|
||||
{
|
||||
if (m_IsRunning)
|
||||
Stop ();
|
||||
for (auto& it: m_LeaseSetRequests)
|
||||
it.second->Complete (nullptr);
|
||||
m_LeaseSetRequests.clear ();
|
||||
if (m_Pool)
|
||||
i2p::tunnel::tunnels.DeleteTunnelPool (m_Pool);
|
||||
}
|
||||
@@ -132,6 +129,14 @@ namespace client
|
||||
m_CleanupTimer.cancel ();
|
||||
m_PublishConfirmationTimer.cancel ();
|
||||
m_PublishVerificationTimer.cancel ();
|
||||
|
||||
for (auto& it: m_LeaseSetRequests)
|
||||
{
|
||||
it.second->Complete (nullptr);
|
||||
it.second->requestTimeoutTimer.cancel ();
|
||||
}
|
||||
m_LeaseSetRequests.clear ();
|
||||
|
||||
m_IsRunning = false;
|
||||
if (m_Pool)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user