We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e88176 commit 23c907bCopy full SHA for 23c907b
src/network/connection.h
@@ -612,16 +612,16 @@ class Peer {
612
struct rttstats {
613
float jitter_min = FLT_MAX;
614
float jitter_max = 0.0f;
615
- float jitter_avg = -1.0f;
+ float jitter_avg = -2.0f;
616
float min_rtt = FLT_MAX;
617
float max_rtt = 0.0f;
618
- float avg_rtt = -1.0f;
+ float avg_rtt = -2.0f;
619
620
rttstats() = default;
621
};
622
623
rttstats m_rtt;
624
- float m_last_rtt = -1.0f;
+ float m_last_rtt = -2.0f;
625
626
// current usage count
627
unsigned int m_usage = 0;
0 commit comments