mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
use correct latency computation
This commit is contained in:
parent
98a55c0613
commit
69888e148e
13
Tunnel.cpp
13
Tunnel.cpp
@ -23,18 +23,23 @@ namespace tunnel
|
||||
|
||||
void TunnelLatency::AddSample(Sample s)
|
||||
{
|
||||
m_samples ++;
|
||||
m_latency += s / m_samples;
|
||||
std::unique_lock<std::mutex> l(m_access);
|
||||
m_samples.push_back(s);
|
||||
}
|
||||
|
||||
bool TunnelLatency::HasSamples() const
|
||||
{
|
||||
return m_samples > 0;
|
||||
std::unique_lock<std::mutex> l(m_access);
|
||||
return m_samples.size() > 0;
|
||||
}
|
||||
|
||||
TunnelLatency::Latency TunnelLatency::GetMeanLatency() const
|
||||
{
|
||||
return m_latency;
|
||||
std::unique_lock<std::mutex> l(m_access);
|
||||
Latency l = 0;
|
||||
for(auto s : m_samples)
|
||||
l += s;
|
||||
return l / m_samples.size();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user