mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
don't create new tunnels if offline
This commit is contained in:
@@ -522,7 +522,7 @@ namespace tunnel
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint64_t ts = i2p::util::GetSecondsSinceEpoch ();
|
uint64_t ts = i2p::util::GetSecondsSinceEpoch ();
|
||||||
if (ts - lastTs >= 15) // manage tunnels every 15 seconds
|
if (ts - lastTs >= 15 && i2p::transport::transports.IsOnline()) // manage tunnels every 15 seconds
|
||||||
{
|
{
|
||||||
ManageTunnels ();
|
ManageTunnels ();
|
||||||
lastTs = ts;
|
lastTs = ts;
|
||||||
|
|||||||
Reference in New Issue
Block a user