mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
delete all streams upon deletion of a local destination
This commit is contained in:
parent
393d4bc231
commit
ec624c89b2
3 changed files with 6 additions and 3 deletions
|
@ -38,6 +38,7 @@ namespace stream
|
|||
|
||||
Stream::~Stream ()
|
||||
{
|
||||
Close ();
|
||||
m_ReceiveTimer.cancel ();
|
||||
m_ResendTimer.cancel ();
|
||||
while (!m_ReceiveQueue.empty ())
|
||||
|
@ -561,7 +562,8 @@ namespace stream
|
|||
|
||||
StreamingDestination::~StreamingDestination ()
|
||||
{
|
||||
// TODO: delete streams
|
||||
for (auto it: m_Streams)
|
||||
delete it.second;
|
||||
if (m_Pool)
|
||||
i2p::tunnel::tunnels.DeleteTunnelPool (m_Pool);
|
||||
delete m_LeaseSet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue