<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-welzl-ccwg-ratelimited-increase-03" category="std" consensus="true" submissionType="IETF" updates="RFC5681, RFC9002, RFC9260, RFC9438" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title abbrev="Rate-Limited cwnd Increase">Increase of the Congestion Window when the Sender Is Rate-Limited</title>
    <seriesInfo name="Internet-Draft" value="draft-welzl-ccwg-ratelimited-increase-03"/>
    <author initials="M." surname="Welzl" fullname="Michael Welzl">
      <organization>University of Oslo</organization>
      <address>
        <postal>
          <street>PO Box 1080 Blindern</street>
          <city>0316  Oslo</city>
          <country>Norway</country>
        </postal>
        <email>michawe@ifi.uio.no</email>
        <uri>http://welzl.at/</uri>
      </address>
    </author>
    <author initials="T." surname="Henderson" fullname="Tom Henderson">
      <organization>University of Washington</organization>
      <address>
        <postal>
          <street>185 Stevens Way</street>
          <city>Seattle, WA 98195</city>
          <country>United States</country>
        </postal>
        <email>tomh@tomh.org</email>
        <uri>https://www.tomh.org/</uri>
      </address>
    </author>
    <author initials="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>UK</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>https://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <date year="2024" month="October" day="21"/>
    <area>Transport</area>
    <workgroup>Congestion Control Working Group</workgroup>
    <abstract>
      <?line 64?>

<t>This document specifies how transport protocols increase their congestion window when the sender is rate-limited, and updates RFC 5681, RFC 9002, RFC 9260, and RFC 9438.
Such a limitation can be caused by the sending application not supplying data or by receiver flow control.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://mwelzl.github.io/draft-ccwg-ratelimited-increase/draft-welzl-ccwg-ratelimited-increase.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-welzl-ccwg-ratelimited-increase/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Congestion Control Working Group Working Group mailing list (<eref target="mailto:ccwg@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ccwg/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ccwg/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/mwelzl/draft-ccwg-ratelimited-increase"/>.</t>
    </note>
  </front>
  <middle>
    <?line 70?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A sender of a congestion controlled transport protocol becomes "rate-limited" when it does not send any data
even though the congestion control rules would allow it to transmit data.
This could occur because the application has not provided sufficient data to fully utilise the congestion window (cwnd).
It could also occur because the receiver has limited the sender using flow control
(e.g., by the advertised TCP receiver window (rwnd) or by the connection or stream flow credit in QUIC).
Current RFCs specifying congestion control algorithms diverge regarding the rules for increasing the cwnd when the sender is rate-limited.</t>
      <t>Congestion Window Validation (CWV) <xref target="RFC7661"/> provides an experimental specification defining how to manage a cwnd that has
become larger than the current flight size.
In contrast, this present document concerns the increase in cwnd when a sender is rate-limited. These two topics are distinct,
but are related, because both describe the management of the cwnd when the sender does not fully utilise the current cwnd.</t>
      <t>This document specifies a uniform rule that congestion control algorithms <bcp14>MUST</bcp14> apply and provides a recommendation that congestion control implementations <bcp14>SHOULD</bcp14> follow.
An appendix provides an overview of the divergence in current RFCs and some current implementations regarding cwnd increase when the sender is rate-limited.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This document uses the terms defined in <xref section="2" sectionFormat="of" target="RFC5681"/>. Additionally, we define:</t>
        <ul spacing="normal">
          <li>
            <t>maxFS: the largest value of FlightSize since the last time that cwnd was decreased. If cwnd has never been decreased, maxFS is the maximum value of FlightSize since the start of the data transfer.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="rules">
      <name>Increase rules</name>
      <t>Irrespective of the current state of a congestion control algorithm, senders using a congestion controlled transport protocol:</t>
      <ol spacing="normal" type="1"><li>
          <t><bcp14>MUST</bcp14> include a limit to the growth of cwnd when FlightSize &lt; cwnd.</t>
        </li>
        <li>
          <t><bcp14>SHOULD</bcp14> limit cwnd when FlightSize &lt; cwnd to be no larger than limit(maxFS).</t>
        </li>
        <li>
          <t><bcp14>MAY</bcp14> limit maxFS as min(maxFS, pipeACK), using "pipeACK" as defined in <xref target="RFC7661"/>, when FlightSize &lt; cwnd.</t>
        </li>
      </ol>
      <t>In rule #2, "limit()" is a function that returns the maximum cwnd value that would result from the congestion control algorithm within one RTT, based on the "maxFS" parameter.
For example, for Slow Start, as specified in <xref target="RFC5681"/>, limit(maxFS)=2*maxFS, such that equation 2 in <xref target="RFC5681"/> becomes:</t>
      <artwork><![CDATA[
cwnd_new = cwnd + min (N, SMSS)
cwnd = min(cwnd_new, 2*maxFS)
]]></artwork>
      <t>Similarly, with rule #2 applied to Congestion Avoidance, limit(maxFS)=1+maxFS, such that equation 3 in <xref target="RFC5681"/> becomes:</t>
      <artwork><![CDATA[
cwnd_new = cwnd + SMSS*SMSS/cwnd
cwnd = min(cwnd_new, 1+maxFS)
]]></artwork>
      <t>As with cwnd, without a way to reduce it when the transport sender becomes rate-limited, rule #2 allows for maxFS to stay valid for a long time, possibly not reflecting the reality of the end-to-end Internet path in use. For cwnd, this is remedied by "Congestion Window Validation" in <xref target="RFC7661"/>, which also defines a "pipeACK" variable that measures the acknowledged size of the network pipe when the sender is rate-limited. Accordingly, to implement CWV, rule #3 can be used.</t>
      <section anchor="discussion">
        <name>Discussion</name>
        <t>If the sending rate is less than permitted by cwnd for multiple RTTs, limited either by the sending application or by the receiver-advertised window, continuously increasing the cwnd would cause a mismatch between the cwnd and the capacity that the path supports (i.e., over-estimating the capacity).
Such unlimited growth in the cwnd is therefore disallowed by the first rule.</t>
        <t>However, in most common congestion control algorithms, in the absence of an indication of congestion, a cwnd that has been fully utilized during an RTT is permitted to be increased during the immediately following RTT.
Thus, such an increase is allowed by the second rule.</t>
        <section anchor="rate-based-congestion-control">
          <name>Rate-based congestion control</name>
          <t>The present document updates congestion control specifications that use a congestion window (cwnd) to limit the number of unacknowledged packets a sender is allowed to emit. Use of a congestion window variable to control sending rate is not the only mechanism available and used in practice.</t>
          <t>Congestion control algorithms can also constrain data transmission by explicitly calculating the sending rate over some time interval, by "pacing" packets (injecting pauses in between their transmission) or via combinations of the above (e.g., BBR combines these three methods <xref target="I-D.cardwell-iccrg-bbr-congestion-control"/>). The guiding principle behind the rules in <xref target="rules"/> applies to all  congestion control algorithms: in the absence of a congestion indication, a sender should be allowed to increase its rate from the amount of data that it has transmitted during the previous RTT. This holds irrespective of whether the sender is rate-limited or not.</t>
        </section>
        <section anchor="pacing">
          <name>Pacing</name>
          <t>Pacing mechanisms seek to avoid the negative impacts associated with "bursts" (flights of packets transmitted back-to-back). This is usually without limiting the number of packets that are sent per RTT. The present specification introduces a limitation using "maxFS", which is measured over an RTT; thus, as long as the number of packets per RTT is unaffected by pacing, the rules in <xref target="rules"/> also do not constrain the use of pacing mechanisms.</t>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>While congestion control designs could result in unwanted competing traffic, they do not directly result in new security considerations.</t>
      <t>Transport protocols that provide authentication (including those using encryption), or are carried over protocols that provide authentication,
can protect their congestion control algorithm from network attack. This is orthogonal to the congestion control rules.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests no IANA action.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC7661">
          <front>
            <title>Updating TCP to Support Rate-Limited Traffic</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="A. Sathiaseelan" initials="A." surname="Sathiaseelan"/>
            <author fullname="R. Secchi" initials="R." surname="Secchi"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This document provides a mechanism to address issues that arise when TCP is used for traffic that exhibits periods where the sending rate is limited by the application rather than the congestion window. It provides an experimental update to TCP that allows a TCP sender to restart quickly following a rate-limited interval. This method is expected to benefit applications that send rate-limited traffic using TCP while also providing an appropriate response if congestion is experienced.</t>
              <t>This document also evaluates the Experimental specification of TCP Congestion Window Validation (CWV) defined in RFC 2861 and concludes that RFC 2861 sought to address important issues but failed to deliver a widely used solution. This document therefore reclassifies the status of RFC 2861 from Experimental to Historic. This document obsoletes RFC 2861.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7661"/>
          <seriesInfo name="DOI" value="10.17487/RFC7661"/>
        </reference>
        <reference anchor="RFC5681">
          <front>
            <title>TCP Congestion Control</title>
            <author fullname="M. Allman" initials="M." surname="Allman"/>
            <author fullname="V. Paxson" initials="V." surname="Paxson"/>
            <author fullname="E. Blanton" initials="E." surname="Blanton"/>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document defines TCP's four intertwined congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery. In addition, the document specifies how TCP should begin transmission after a relatively long idle period, as well as discussing various acknowledgment generation methods. This document obsoletes RFC 2581. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5681"/>
          <seriesInfo name="DOI" value="10.17487/RFC5681"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC9438">
          <front>
            <title>CUBIC for Fast and Long-Distance Networks</title>
            <author fullname="L. Xu" initials="L." surname="Xu"/>
            <author fullname="S. Ha" initials="S." surname="Ha"/>
            <author fullname="I. Rhee" initials="I." surname="Rhee"/>
            <author fullname="V. Goel" initials="V." surname="Goel"/>
            <author fullname="L. Eggert" initials="L." role="editor" surname="Eggert"/>
            <date month="August" year="2023"/>
            <abstract>
              <t>CUBIC is a standard TCP congestion control algorithm that uses a cubic function instead of a linear congestion window increase function to improve scalability and stability over fast and long-distance networks. CUBIC has been adopted as the default TCP congestion control algorithm by the Linux, Windows, and Apple stacks.</t>
              <t>This document updates the specification of CUBIC to include algorithmic improvements based on these implementations and recent academic work. Based on the extensive deployment experience with CUBIC, this document also moves the specification to the Standards Track and obsoletes RFC 8312. This document also updates RFC 5681, to allow for CUBIC's occasionally more aggressive sending behavior.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9438"/>
          <seriesInfo name="DOI" value="10.17487/RFC9438"/>
        </reference>
        <reference anchor="RFC9260">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <author fullname="K. Nielsen" initials="K." surname="Nielsen"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes the Stream Control Transmission Protocol (SCTP) and obsoletes RFC 4960. It incorporates the specification of the chunk flags registry from RFC 6096 and the specification of the I bit of DATA chunks from RFC 7053. Therefore, RFCs 6096 and 7053 are also obsoleted by this document. In addition, RFCs 4460 and 8540, which describe errata for SCTP, are obsoleted by this document.</t>
              <t>SCTP was originally designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks. It is also suited to be used for other applications, for example, WebRTC.</t>
              <t>SCTP is a reliable transport protocol operating on top of a connectionless packet network, such as IP. It offers the following services to its users:</t>
              <t>The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9260"/>
          <seriesInfo name="DOI" value="10.17487/RFC9260"/>
        </reference>
        <reference anchor="RFC9002">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
        <reference anchor="RFC4341">
          <front>
            <title>Profile for Datagram Congestion Control Protocol (DCCP) Congestion Control ID 2: TCP-like Congestion Control</title>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <author fullname="E. Kohler" initials="E." surname="Kohler"/>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document contains the profile for Congestion Control Identifier 2 (CCID 2), TCP-like Congestion Control, in the Datagram Congestion Control Protocol (DCCP). CCID 2 should be used by senders who would like to take advantage of the available bandwidth in an environment with rapidly changing conditions, and who are able to adapt to the abrupt changes in the congestion window typical of TCP's Additive Increase Multiplicative Decrease (AIMD) congestion control. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4341"/>
          <seriesInfo name="DOI" value="10.17487/RFC4341"/>
        </reference>
        <reference anchor="RFC2861">
          <front>
            <title>TCP Congestion Window Validation</title>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="J. Padhye" initials="J." surname="Padhye"/>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document describes a simple modification to TCP's congestion control algorithms to decay the congestion window cwnd after the transition from a sufficiently-long application-limited period, while using the slow-start threshold ssthresh to save information about the previous value of the congestion window. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2861"/>
          <seriesInfo name="DOI" value="10.17487/RFC2861"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.cardwell-iccrg-bbr-congestion-control">
          <front>
            <title>BBR Congestion Control</title>
            <author fullname="Neal Cardwell" initials="N." surname="Cardwell">
              <organization>Google</organization>
            </author>
            <author fullname="Yuchung Cheng" initials="Y." surname="Cheng">
              <organization>Google</organization>
            </author>
            <author fullname="Soheil Hassas Yeganeh" initials="S. H." surname="Yeganeh">
              <organization>Google</organization>
            </author>
            <author fullname="Ian Swett" initials="I." surname="Swett">
              <organization>Google</organization>
            </author>
            <author fullname="Van Jacobson" initials="V." surname="Jacobson">
              <organization>Google</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document specifies the BBR congestion control algorithm.  BBR
   ("Bottleneck Bandwidth and Round-trip propagation time") uses recent
   measurements of a transport connection's delivery rate, round-trip
   time, and packet loss rate to build an explicit model of the network
   path.  BBR then uses this model to control both how fast it sends
   data and the maximum volume of data it allows in flight in the
   network at any time.  Relative to loss-based congestion control
   algorithms such as Reno [RFC5681] or CUBIC [RFC8312], BBR offers
   substantially higher throughput for bottlenecks with shallow buffers
   or random losses, and substantially lower queueing delays for
   bottlenecks with deep buffers (avoiding "bufferbloat").  BBR can be
   implemented in any transport protocol that supports packet-delivery
   acknowledgment.  Thus far, open source implementations are available
   for TCP [RFC793] and QUIC [RFC9000].  This document specifies version
   2 of the BBR algorithm, also sometimes referred to as BBRv2 or bbr2.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-cardwell-iccrg-bbr-congestion-control-02"/>
        </reference>
      </references>
    </references>
    <?line 178?>

<section anchor="the-state-of-rfcs-and-implementations">
      <name>The state of RFCs and implementations</name>
      <t>This section is provided as input for IETF discussion, and should be removed before publication.</t>
      <section anchor="tcp-reno-congestion-control">
        <name>TCP ("Reno" congestion control)</name>
        <section anchor="specification">
          <name>Specification</name>
          <t><xref target="RFC5681"/> does not contain a rule to limit the growth of cwnd when the sender is rate-limited. This statement (page 8) gives an impression that such cwnd growth might be expected:</t>
          <ul empty="true">
            <li>
              <t>Implementation Note: An easy mistake to make is to simply use cwnd, rather than FlightSize, which in some implementations may incidentally increase well beyond rwnd.</t>
            </li>
          </ul>
          <t><xref target="RFC7661"/> also suggests there is no increase limitation in the standard TCP behavior (which <xref target="RFC7661"/> changes), on page 4:</t>
          <ul empty="true">
            <li>
              <t>Standard TCP does not impose additional restrictions on the growth of
the congestion window when a TCP sender is unable to send at the
maximum rate allowed by the cwnd. In this case, the rate-limited
sender may grow a cwnd far beyond that corresponding to the current
transmit rate, resulting in a value that does not reflect current
information about the state of the network path the flow is using.</t>
            </li>
          </ul>
        </section>
        <section anchor="tcp-impl">
          <name>Implementation</name>
          <ul spacing="normal">
            <li>
              <t>ns-2 allows cwnd to grow when it is rate-limited by rwnd. (Rate-limited by the sending application: not tested.)</t>
            </li>
            <li>
              <t>Until release 3.42, ns-3 allowed cwnd to grow when rate-limited, either due to an application or rwnd limit.  Since release 3.42, ns-3 TCP models conform to rule #2 in <xref target="rules"/>, following the current Linux TCP approach in this regard (see next bullet).</t>
            </li>
            <li>
              <t>In Congestion Avoidance, Linux only allows the cwnd to grow when the sender is unconstrained.
Before kernel version 3.16, this also applied to Slow Start.
The check for "unconstrained" is perfomed by checking if FlightSize is greater or equal to cwnd.
Since kernel version 3.16, which was published in August 2014, in Slow Start, the increase
implements rule #2 in <xref target="rules"/> in the <tt>tcp_is_cwnd_limited</tt> function in <tt>tcp.h</tt>.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment">
          <name>Assessment</name>
          <t>Linux implements a limit to cwnd growth in accordance with rule #1 in <xref target="rules"/>;
in Slow Start, this limit follows rule #2, while in Congestion Avoidance, it is more conservative than rule #2.
The specification and the ns-2 and (older) ns-3 implementations are in conflict with rules #1 and #2 in <xref target="rules"/>.</t>
        </section>
      </section>
      <section anchor="cubic">
        <name>CUBIC</name>
        <section anchor="specification-1">
          <name>Specification</name>
          <t><xref section="5.8" sectionFormat="of" target="RFC9438"/> says:</t>
          <ul empty="true">
            <li>
              <t>Cubic doesn't increase cwnd when it's limited by the sending application or rwnd.</t>
            </li>
          </ul>
        </section>
        <section anchor="implementation">
          <name>Implementation</name>
          <t>The description of Linux described in <xref target="tcp-impl"/> also applies to Cubic.</t>
        </section>
        <section anchor="assessment-1">
          <name>Assessment</name>
          <t>Both the specification and the Linux implementation limit the cwnd growth in accordance with rule #1 in <xref target="rules"/>;
in Congestion Avoidance, this limit is more conservative than rule #2 in <xref target="rules"/>,
and in Slow Start, it implements rule #2 in <xref target="rules"/>.</t>
        </section>
      </section>
      <section anchor="sctp">
        <name>SCTP</name>
        <section anchor="specification-2">
          <name>Specification</name>
          <t><xref section="7.2.1" sectionFormat="of" target="RFC9260"/> says:</t>
          <ul empty="true">
            <li>
              <t>When cwnd is less than or equal to ssthresh, an SCTP endpoint <bcp14>MUST</bcp14> use the slow-start algorithm to
increase cwnd only if the current congestion window is being fully utilized and the data sender
is not in Fast Recovery.
Only when these two conditions are met can the cwnd be increased; otherwise, the cwnd <bcp14>MUST NOT</bcp14> be increased.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment-2">
          <name>Assessment</name>
          <t>The quoted statement from <xref target="RFC9260"/> prescribes the same cwnd growth limitation that is also specified for Cubic and implemented for both Reno and Cubic in Linux.
It is in accordance with rule #1 in <xref target="rules"/>, and more conservative than rule #2 in <xref target="rules"/>.</t>
          <t><xref section="7.2.1" sectionFormat="of" target="RFC9260"/> is specifically limited to Slow Start.
Congestion Avoidance is discussed in <xref section="7.2.2" sectionFormat="of" target="RFC9260"/>
However, this section neither contains a similar rule, nor does it refer back to the rule that limits the growth of cwnd
in Section 7.2.1. It is thus implicitly clear that the quoted rule only applies to Slow Start, whereas the rules in <xref target="rules"/> apply to both Slow Start and Congestion Avoidance.</t>
        </section>
      </section>
      <section anchor="quic">
        <name>QUIC</name>
        <section anchor="specification-3">
          <name>Specification</name>
          <t><xref section="7.8" sectionFormat="of" target="RFC9002"/> states:</t>
          <ul empty="true">
            <li>
              <t>When bytes in flight is smaller than the congestion window and sending is not pacing limited, the congestion window is underutilized. This can happen due to insufficient application data or flow control limits. When this occurs, the congestion window <bcp14>SHOULD NOT</bcp14> be increased in either slow start or congestion avoidance.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment-3">
          <name>Assessment</name>
          <t>With the exception of pacing, this specification conservatively limits the growth in cwnd, similar to Cubic and SCTP. It is in accordance with rule #1 in <xref target="rules"/>, and more conservative than rule #2 in <xref target="rules"/>.</t>
        </section>
      </section>
      <section anchor="dccp-ccid2">
        <name>DCCP CCID2</name>
        <section anchor="specification-4">
          <name>Specification</name>
          <t><xref section="5.1" sectionFormat="of" target="RFC4341"/> states:
&gt;There are currently no standards governing TCP's use of the congestion window during an application-limited period.  In particular, it is possible for TCP's congestion window to grow quite large during a long uncongested period when the sender is application limited, sending at a low rate.  <xref target="RFC2861"/> essentially suggests that TCP's congestion window not be increased during application-limited periods when the congestion window is not being fully utilized.</t>
        </section>
        <section anchor="assessment-4">
          <name>Assessment</name>
          <t>A DCCP Congestion Control ID (CCID) specifing TCP-like behaviour ought to follow the method specified in this document. The current guidance relates only to <xref target="RFC2861"/>.
The text in <xref section="5.1" sectionFormat="of" target="RFC4341"/> is updated by this document to specify the management of the
cwnd during an application-limited period.</t>
        </section>
      </section>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <ul spacing="normal">
        <li>
          <t>-00 was the first individual submission for feedback by CCWG.</t>
        </li>
        <li>
          <t>-01 includes editorial improvements
          </t>
          <ul spacing="normal">
            <li>
              <t>Removes application interaction with QUIC pacing, since pacing might be within the QUIC stack.</t>
            </li>
            <li>
              <t>Adds explicit mention of DCCP/CCID2.</t>
            </li>
            <li>
              <t>Adds this change log.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-02 addresses comments from IETF-119
          </t>
          <ul spacing="normal">
            <li>
              <t>Discusses rate-based controls and pacing.</t>
            </li>
            <li>
              <t>Trims the list of possible RFCs to update.</t>
            </li>
            <li>
              <t>Some editorial fixes: "congestion control algorithm" instead of "mechanism" for consistency with RFC5033.bis; earlier definition of maxFS; explicit mention of RFCs to update in abstract.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-03 addresses comments from IETF-120
          </t>
          <ul spacing="normal">
            <li>
              <t>Introduces a third rule, with <bcp14>MAY</bcp14>, that avoids having an unvalidated long-lived maxFS (using pipeACK from RFC 7661).</t>
            </li>
            <li>
              <t>Changes "inc" to "limit" and adapts the wording of rule 2 to make it clearer (thanks to Neal Cardwell).</t>
            </li>
            <li>
              <t>Appendix: updates ns-3 in line with the recent implementation.</t>
            </li>
            <li>
              <t>Appendix: makes the RFC 9002 text clearer and shorter.</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Neal Cardwell for suggesting improvements to this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7Vb2XIbR7J976+ogR5MegBwk2SZXiFKshmjbQRqFI6JCbvQ
XQBq2Avc1U0IVsjfcr/lftmczKzqBQBFzY24DxKB7lpzOXkyqzAajaLKVqk5
V4PLPC6NdkYVc1Utjboo8oVxlS1y9c7mSbFW66XJ+dXU5Ikp1aVTb3RlRs9t
ZiuTDCI9m5XmBmN1H6t4nScqjD6IYrxbFOXmXLkqiaKkiHOdYQFJqefVaG3S
P9JRHK8XoxINUxljZH330fFZ5OpZZp3DwqrNCh0vn149U+qe0qkrMDfWala0
wLwaDNXAJLYqSqtT+nI5eYw/RYlPb66eDaK8zmamPI8STHUe1Sv6687Vm2cX
Dx4+OhnSh6+Pj0/lw+nDY/lw/+xRFBe5M7mr0boqaxNh12eRxhqxgqtS525V
lNUgWhfl9aIs6hUedwSKj1VZpOodXtt8oX6iJoPoxuQ11qHU53dRSoQw2Hme
aZviOYnyR2uq+bgoF/Rcl/ESz5dVtXLnR0fUjB7ZGzMOzY7owdGsLNbOHNEA
R9RxYatlPUPXjJV0JAq7VVXUJSV5Vt3ZuOtYhhrb4q5Bjj7LKsbLKksHUeQq
nSe/6rTIIZGNcZHLdFn9+ntdsFrzIlrZc/XPqoiHykE/pZk7fNpk9OFfUaTr
almUpIAR/illc/R6MVbvaHp+Iqb6wsZLbdLOcwjtXL3NIcTS2WpDPvTKpQW/
c5jHQAivX6nHxXt1cvzoWD1OyUzLnBvE6HGujs9OHqq2V1zUUDievyzKtd7w
MyM6zWj6tfnRzu24tsU4lx51ic2RoCFnEbOujvp7uRqrn9l3XZF39nNVZFvP
9+znnXZLGFjlW4RdXehsVTve2dmD0wfHx723J48eqGllYNgOA2w6250aXQF4
hurdRH396OTrB/1dY27CjmlFFtTdfFVkyx/pPzLU/r7JwNbr9Ti83dr8T2P1
TNtyWZeu6mz+pyIpMVP/1Z79T4AUiTH93U/jZQGnxOun+cLmxpQQUa/FsxIG
WkKLs9Sox7VNk9BC5BCGHarJ49P76uzt0y1B/K27ewBnufnRlIuxniX5WMfj
+nq/EPptjqIoL8pMV9jReRTZfN5+uxw9Gce6TGAz6cjGcbkYAcdHcYM99JGw
Bx2j0Wik9Ayb03EVRVdL6xQQvM6AtsqtTAybNE4tES2qgIJqVRZwuSJ1Kjgs
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

-->

</rfc>
