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

Add OnPacketSentCC #780

Merged
merged 4 commits into from Sep 19, 2017
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
Expand Up @@ -730,7 +730,7 @@ acked_packet from sent_packets.
else:
// Congestion avoidance.
congestion_window +=
acked_packets.bytes / congestion_window
kDefaultMss * acked_packets.bytes / congestion_window
~~~

### On Packets Lost
Expand All @@ -756,7 +756,7 @@ are detected lost.
### On Retransmission Timeout Verified

QUIC decreases the congestion window to the minimum value once the
retransmission timeout has been confirmed to not be spurious.
retransmission timeout has been verified.

~~~
OnRetransmissionTimeoutVerified()
Expand Down