From 3795092422d66bcafc340c8b0bd7d07f96061ddc Mon Sep 17 00:00:00 2001 From: Neil Tallim Date: Mon, 12 Apr 2021 10:08:28 -0600 Subject: [PATCH] Wording changes --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0f8d27c..d48c7a9 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ In particular, the most significant issues addressed from _iperf3_ follow: * _rperf_'s implementation of [RFC 1889](https://tools.ietf.org/html/rfc1889#appendix-A.8) for streaming jitter calculation starts by assuming a delta between the first and second - packets in a sequence, rather than beginning with 0, which creates - artificially low values, and gaps in a sequence trigger a reset of the count, - instead of continuing from the last-observed event, which conversely creates - artificially high values. + packets in a sequence and gaps in a sequence trigger a reset of the count. + Comparatively, _iperf3_ begins with 0, which creates artificially low values, + and in case of a gap, it just continues naively, which creates artificially + high values. * Duplicate packets are accounted for in UDP exchanges and out-of-order packets are counted as independent events.