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

Incorporate F-RTO #409

Merged
merged 8 commits into from
Mar 26, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ Pseudocode for OnPacketAcked follows:

~~~
OnPacketAcked(acked_packet_number):
// If the earliest packet acked when exiting RTO was sent due to RTO,
// then the RTO was not spurious, so inform congestion control.
// If a packet sent prior to RTO was acked, then the RTO was
// spurious. Otherwise, inform congestion control.
// Similar to the goal of F-RTO {{?RFC5682}}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would remove this last line from here and add it (now or later) to the text description.

if (rto_count > 0 && acked_packet_number > largest_sent_before_rto)
OnRetransmissionTimeoutVerified()
Expand Down