Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing max_ack_delay #3938

Merged
merged 8 commits into from Aug 26, 2020
3 changes: 2 additions & 1 deletion draft-ietf-quic-recovery.md
Expand Up @@ -1264,7 +1264,8 @@ UpdateRtt(ack_delay):
// min_rtt ignores acknowledgment delay.
min_rtt = min(min_rtt, latest_rtt)
// Limit ack_delay by max_ack_delay
// Note that ack_delay is 0 for Initial and Handshake.
// Note that ack_delay is 0 for acknowledgements of
// Initial and Handshake packets.
ack_delay = min(ack_delay, max_ack_delay)
// Adjust for acknowledgment delay if plausible.
adjusted_rtt = latest_rtt
Expand Down