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

Track smallest_newly_acked to prevent spurious RTO #1822

Merged
merged 10 commits into from
Oct 3, 2018
5 changes: 3 additions & 2 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -699,8 +699,9 @@ Pseudocode for OnAckReceived and UpdateRtt follow:
OnPacketAcked(acked_packet.packet_number)

if !newly_acket_packets.empty():
// Find the smallest packet that is newly acked in this ACK frame.
smallest_newly_acked = FindSmallestNewlyAcked(newly_acked_packets)
// Find the smallest newly acknowledged packet
smallest_newly_acked =
FindSmallestNewlyAcked(newly_acked_packets)
// If any packets sent prior to RTO were acked, then the
// RTO was spurious. Otherwise, inform congestion control.
if (rto_count > 0 &&
Expand Down