mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-20 08:16:38 +01:00
26 lines
360 B
C++
26 lines
360 B
C++
#include "Tunnel.h"
|
|
#include "TunnelPool.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace tunnel
|
|
{
|
|
TunnelPool::TunnelPool ()
|
|
{
|
|
}
|
|
|
|
TunnelPool::~TunnelPool ()
|
|
{
|
|
for (auto it: m_InboundTunnels)
|
|
it->SetTunnelPool (nullptr);
|
|
}
|
|
|
|
void TunnelPool::TunnelCreationFailed (Tunnel * failedTunnel)
|
|
{
|
|
}
|
|
|
|
void TunnelPool::TunnelExpired (InboundTunnel * expiredTunnel)
|
|
{
|
|
}
|
|
}
|
|
}
|