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

Reference RFC5681 and RFC6928 #1245

Merged
merged 12 commits into from
Jul 14, 2018
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ variables as follows:

~~~
congestion_window = kInitialWindow
minimum_window = 2 * max_datagram_size
minimum_window = 2 * kMaxDatagramSize
bytes_in_flight = 0
end_of_recovery = 0
ssthresh = infinite
Expand Down Expand Up @@ -1091,7 +1091,7 @@ acked_packet from sent_packets.
else:
// Congestion avoidance.
congestion_window +=
max_datagram_size * acked_packet.bytes / congestion_window
kMaxDatagramSize * acked_packet.bytes / congestion_window
~~~

### On New Congestion Event
Expand Down