mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
don't test failed tunnels
This commit is contained in:
parent
20369cf6d5
commit
17fcd0c38f
3 changed files with 24 additions and 6 deletions
|
@ -141,6 +141,8 @@ namespace util
|
|||
it->GetTunnelConfig ()->Print (s);
|
||||
if (it->GetTunnelPool ())
|
||||
s << " " << "Pool";
|
||||
if (it->IsFailed ())
|
||||
s << " " << "Failed";
|
||||
s << " " << (int)it->GetNumSentBytes () << "<BR>";
|
||||
}
|
||||
|
||||
|
@ -149,6 +151,8 @@ namespace util
|
|||
it.second->GetTunnelConfig ()->Print (s);
|
||||
if (it.second->GetTunnelPool ())
|
||||
s << " " << "Pool";
|
||||
if (it.second->IsFailed ())
|
||||
s << " " << "Failed";
|
||||
s << " " << (int)it.second->GetNumReceivedBytes () << "<BR>";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue