| 270 | } |
| 271 | |
| 272 | bool Tunnel::IsSlow () const |
| 273 | { |
| 274 | return LatencyIsKnown() && m_Latency > HIGH_LATENCY_PER_HOP*GetNumHops () + |
| 275 | i2p::transport::transports.GetLocalDelay ()*1000; |
| 276 | } |
| 277 | |
| 278 | void Tunnel::VisitTunnelHops(TunnelHopVisitor v) |
| 279 | { |
no test coverage detected