Skip to content

Commit

Permalink
Fix PTO computation
Browse files Browse the repository at this point in the history
  • Loading branch information
janaiyengar committed Feb 19, 2019
1 parent 6a8b7b5 commit 85ecaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-ietf-quic-recovery.md
Expand Up @@ -496,7 +496,7 @@ When an ack-eliciting packet is transmitted, the sender schedules a timer for
the PTO period as follows:

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

kGranularity, smoothed_rtt, rttvar, and max_ack_delay are defined in
Expand Down

0 comments on commit 85ecaad

Please sign in to comment.