Skip to content

Commit

Permalink
Use kGranularity in persistent congestion
Browse files Browse the repository at this point in the history
This aligns the calculation with the PTO calculation, which is what persistent congestion is based off.

Fixes #3899
  • Loading branch information
ianswett committed Jul 14, 2020
1 parent 78337c5 commit 3800a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-ietf-quic-recovery.md
Expand Up @@ -845,7 +845,7 @@ approximately equivalent to two TLPs before an RTO in TCP.
This duration is computed as follows:

~~~
(smoothed_rtt + 4 * rttvar + max_ack_delay) *
(smoothed_rtt + max(4 * rttvar, kGranularity) + max_ack_delay) *
kPersistentCongestionThreshold
~~~

Expand Down

0 comments on commit 3800a27

Please sign in to comment.