Skip to content

Commit

Permalink
adds missing ssthresh = congestion_window (#1602)
Browse files Browse the repository at this point in the history
fixes #1598
  • Loading branch information
aep authored and ianswett committed Jul 24, 2018
1 parent d1377a8 commit c13ae7e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions draft-ietf-quic-recovery.md
Expand Up @@ -1109,6 +1109,7 @@ detected. Starts a new recovery period and reduces the congestion window.
end_of_recovery = largest_sent_packet
congestion_window *= kLossReductionFactor
congestion_window = max(congestion_window, kMinimumWindow)
ssthresh = congestion_window
~~~

### Process ECN Information
Expand Down Expand Up @@ -1189,6 +1190,10 @@ This document has no IANA actions. Yet.
> **RFC Editor's Note:** Please remove this section prior to
> publication of a final version of this document.

## Since draft-ietf-quic-recovery-13

- Corrected the lack of ssthresh reduction in CongestionEvent pseudocode (#1598)

## Since draft-ietf-quic-recovery-12

- Changes to manage separate packet number spaces and encryption levels (#1190,
Expand Down

0 comments on commit c13ae7e

Please sign in to comment.