diff options
author | you <ovvv@web.de> | 2018-06-23 09:16:01 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2018-06-23 09:16:01 +0200 |
commit | 968ce9af598024ec71e9ffb2d15c3997a13ad754 (patch) | |
tree | 0ad28040f1deb3ca1885d5147b23931d237a76f5 /src/network/peerhandler.h | |
parent | 07b1743d3db086f0f984968252d9e3ac71336a7e (diff) | |
download | dragonfireclient-968ce9af598024ec71e9ffb2d15c3997a13ad754.tar.xz |
RTT fixes (#7428)
* Few code updates
* Do not show average RTT before timing out
* Fix unwanted integer division in RTTStatistics
* Fix float format, prettier jitter calculation
* Use +=, 0.1f -> 100.0f for stronger average updates
Diffstat (limited to 'src/network/peerhandler.h')
-rw-r--r-- | src/network/peerhandler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/peerhandler.h b/src/network/peerhandler.h index 208ab801e..60b7243bc 100644 --- a/src/network/peerhandler.h +++ b/src/network/peerhandler.h @@ -30,7 +30,8 @@ typedef enum { AVG_RTT, MIN_JITTER, MAX_JITTER, - AVG_JITTER + AVG_JITTER, + TIMEOUT_COUNTER } rtt_stat_type; class Peer; |