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

The change in #415 was already in the transport doc #555

Merged
merged 2 commits into from May 24, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions draft-ietf-quic-recovery.md
Expand Up @@ -343,9 +343,6 @@ Pseudocode for OnPacketSent follows:

When an ack is received, it may acknowledge 0 or more packets.

The sender MUST abort the connection if it receives an ACK for a packet it
never sent, see {{QUIC-TRANSPORT}}.

Pseudocode for OnAckReceived and UpdateRtt follow:

~~~
Expand All @@ -356,9 +353,6 @@ Pseudocode for OnAckReceived and UpdateRtt follow:
if (latest_rtt > ack.ack_delay):
latest_rtt -= ack.delay
UpdateRtt(latest_rtt)
// The sender may skip packets for detecting optimistic ACKs
if (packets acked that the sender skipped):
abortConnection()
// Find all newly acked packets.
for acked_packet in DetermineNewlyAckedPackets():
OnPacketAcked(acked_packet.packet_number)
Expand Down