mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
27 lines
360 B
C++
27 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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|