Browse Source

[tunnels] count outbound traffic for zero-hop tunnels

Signed-off-by: R4SAS <r4sas@i2pmail.org>
pull/1682/head
R4SAS 3 years ago
parent
commit
d88fe203e1
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 2
      daemon/HTTPServer.cpp
  2. 3
      libi2pd/Tunnel.cpp

2
daemon/HTTPServer.cpp

@ -492,7 +492,7 @@ namespace http { @@ -492,7 +492,7 @@ namespace http {
s << "<div class=\"listitem\">";
it->Print(s);
if(it->LatencyIsKnown())
s << " ( " << it->GetMeanLatency() << tr("ms") << " )";
s << " ( " << it->GetMeanLatency() << tr("ms") << " )";
ShowTunnelDetails(s, it->GetState (), false, it->GetNumSentBytes ());
s << "</div>\r\n";
}

3
libi2pd/Tunnel.cpp

@ -328,10 +328,11 @@ namespace tunnel @@ -328,10 +328,11 @@ namespace tunnel
for (auto& msg : msgs)
{
if (!msg.data) continue;
m_NumSentBytes += msg.data->GetLength ();
switch (msg.deliveryType)
{
case eDeliveryTypeLocal:
i2p::HandleI2NPMessage (msg.data);
HandleI2NPMessage (msg.data);
break;
case eDeliveryTypeTunnel:
i2p::transport::transports.SendMessage (msg.hash, i2p::CreateTunnelGatewayMsg (msg.tunnelID, msg.data));

Loading…
Cancel
Save