show streams per local destination

This commit is contained in:
orignal 2014-10-11 18:21:52 -04:00
parent 2ab597be20
commit 6d6c81bf8b
4 changed files with 22 additions and 8 deletions

View file

@ -798,6 +798,7 @@ namespace util
auto pool = dest->GetTunnelPool ();
if (pool)
{
s << "<b>Tunnels:</b><br>";
for (auto it: pool->GetOutboundTunnels ())
{
it->GetTunnelConfig ()->Print (s);
@ -809,6 +810,9 @@ namespace util
s << "<br>" << std::endl;
}
}
s << "<br><b>Streams:</b><br>";
for (auto it: dest->GetStreams ())
s << it.first << "->" << it.second->GetRemoteIdentity ().GetIdentHash ().ToBase32 () << ".b32.i2p<br>" << std::endl;
}
}