Skip to content

Commit

Permalink
Reduce bytes_acked on CongestionEvent() and persistent congestion event
Browse files Browse the repository at this point in the history
  • Loading branch information
Junho Choi committed Jul 17, 2020
1 parent e889b45 commit 5b0463c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions draft-ietf-quic-recovery.md
Expand Up @@ -1569,6 +1569,7 @@ window.
congestion_window *= kLossReductionFactor
congestion_window = max(congestion_window, kMinimumWindow)
ssthresh = congestion_window
bytes_acked *= kLossReductionFactor
// A packet can be sent to speed up loss recovery.
MaybeSendOnePacket()
~~~
Expand Down Expand Up @@ -1611,6 +1612,7 @@ Invoked when DetectAndRemoveLostPackets deems packets lost.
// Collapse congestion window if persistent congestion
if (InPersistentCongestion(lost_packets)):
congestion_window = kMinimumWindow
bytes_acked = 0
~~~

## Upon dropping Initial or Handshake keys
Expand Down

0 comments on commit 5b0463c

Please sign in to comment.