Browse Source

don't blow up

pull/709/head
Jeff Becker 8 years ago
parent
commit
76c9b66db4
  1. 3
      Tunnel.cpp
  2. 2
      TunnelPool.cpp

3
Tunnel.cpp

@ -36,11 +36,14 @@ namespace tunnel
TunnelLatency::Latency TunnelLatency::GetMeanLatency() const TunnelLatency::Latency TunnelLatency::GetMeanLatency() const
{ {
std::unique_lock<std::mutex> lock(m_access); std::unique_lock<std::mutex> lock(m_access);
if (m_samples.size() > 0) {
Latency l = 0; Latency l = 0;
for(auto s : m_samples) for(auto s : m_samples)
l += s; l += s;
return l / m_samples.size(); return l / m_samples.size();
} }
return 0;
}
Tunnel::Tunnel (std::shared_ptr<const TunnelConfig> config): Tunnel::Tunnel (std::shared_ptr<const TunnelConfig> config):

2
TunnelPool.cpp

@ -167,7 +167,7 @@ namespace tunnel
{ {
if (it->IsEstablished () && it != excluded) if (it->IsEstablished () && it != excluded)
{ {
if(HasLatencyRequirement() && !it->LatencyFitsRange(m_MinLatency, m_MaxLatency)) { if(HasLatencyRequirement() && it->LatencyIsKnown() && !it->LatencyFitsRange(m_MinLatency, m_MaxLatency)) {
i ++; i ++;
continue; continue;
} }

Loading…
Cancel
Save