Skip to content

Commit

Permalink
Update draft-ietf-quic-recovery.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ianswett committed Jul 14, 2018
1 parent dcfb306 commit a89af60
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a89af60

Please sign in to comment.