mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
fixed #1373. Limit number of tunnels by 16
This commit is contained in:
parent
765ab60753
commit
aa206d034d
2 changed files with 6 additions and 0 deletions
|
@ -28,6 +28,8 @@ namespace i2p
|
|||
namespace tunnel
|
||||
{
|
||||
const int TUNNEL_POOL_MANAGE_INTERVAL = 10; // in seconds
|
||||
const int TUNNEL_POOL_MAX_INBOUND_TUNNELS_QUANTITY = 16;
|
||||
const int TUNNEL_POOL_MAX_OUTBOUND_TUNNELS_QUANTITY = 16;
|
||||
|
||||
class Tunnel;
|
||||
class InboundTunnel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue