don't test failed tunnels

This commit is contained in:
orignal 2014-03-21 18:26:11 -04:00
parent 20369cf6d5
commit 17fcd0c38f
3 changed files with 24 additions and 6 deletions

View file

@ -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>";
}