aboutsummaryrefslogtreecommitdiff
path: root/src/iperf.h
diff options
context:
space:
mode:
authorBruce A. Mah <bmah@es.net>2014-10-23 13:39:58 -0700
committerBruce A. Mah <bmah@es.net>2014-10-23 13:39:58 -0700
commit29dbc41c1d47d645f6e72f4b48f04c203a536f9b (patch)
tree0c6d4fb1b1d73947b04de529ae45d4017ba52cfd /src/iperf.h
parentc7b0726a384b65157d3d82c50d589ea488e14785 (diff)
downloadiperf3-29dbc41c1d47d645f6e72f4b48f04c203a536f9b.tar.gz
Also maintain the min and mean of the RTT.
For issue #215.
Diffstat (limited to 'src/iperf.h')
-rw-r--r--src/iperf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/iperf.h b/src/iperf.h
index 7d5c1e3..15e7ddb 100644
--- a/src/iperf.h
+++ b/src/iperf.h
@@ -91,6 +91,9 @@ struct iperf_stream_result
int stream_prev_total_sacks;
int stream_sacks;
int stream_max_rtt;
+ int stream_min_rtt;
+ int stream_sum_rtt;
+ int stream_count_rtt;
int stream_max_snd_cwnd;
struct timeval start_time;
struct timeval end_time;