<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.18 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-recovery-33" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.5.0 -->
  <front>
    <title abbrev="QUIC Loss Detection">QUIC Loss Detection and Congestion Control</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-33"/>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
      <address>
        <email>jri.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
      <address>
        <email>ianswett@google.com</email>
      </address>
    </author>
    <date year="2020" month="December" day="13"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <abstract>
      <t>This document describes loss detection and congestion control mechanisms for
QUIC.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the QUIC working group mailing list
(<eref target="mailto:quic@ietf.org">quic@ietf.org</eref>), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic"/>.</t>
      <t>Working Group information can be found at <eref target="https://github.com/quicwg"/>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/-recovery"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>QUIC is a secure general-purpose transport protocol, described in
<xref target="QUIC-TRANSPORT" format="default"/>). This document describes loss detection and congestion
control mechanisms for QUIC.</t>
    </section>
    <section anchor="conventions-and-definitions" numbered="true" toc="default">
      <name>Conventions and Definitions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP&nbsp;14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>Definitions of terms that are used in this document:</t>
      <dl>
        <dt>
Ack-eliciting frames:  </dt>
        <dd>
          <t>All frames other than ACK, PADDING, and CONNECTION_CLOSE are considered
ack-eliciting.</t>
        </dd>
        <dt>
Ack-eliciting packets:  </dt>
        <dd>
          <t>Packets that contain ack-eliciting frames elicit an ACK from the receiver
within the maximum acknowledgement delay and are called ack-eliciting packets.</t>
        </dd>
        <dt>
In-flight packets:  </dt>
        <dd>
          <t>Packets are considered in-flight when they are ack-eliciting or contain a
PADDING frame, and they have been sent but are not acknowledged, declared
lost, or discarded along with old keys.</t>
        </dd>
      </dl>
    </section>
    <section anchor="design-of-the-quic-transmission-machinery" numbered="true" toc="default">
      <name>Design of the QUIC Transmission Machinery</name>
      <t>All transmissions in QUIC are sent with a packet-level header, which indicates
the encryption level and includes a packet sequence number (referred to below as
a packet number).  The encryption level indicates the packet number space, as
described in <xref target="QUIC-TRANSPORT" format="default"/>.  Packet numbers never repeat within a packet
number space for the lifetime of a connection.  Packet numbers are sent in
monotonically increasing order within a space, preventing ambiguity.</t>
      <t>This design obviates the need for disambiguating between transmissions and
retransmissions; this eliminates significant complexity from QUIC's
interpretation of TCP loss detection mechanisms.</t>
      <t>QUIC packets can contain multiple frames of different types. The recovery
mechanisms ensure that data and frames that need reliable delivery are
acknowledged or declared lost and sent in new packets as necessary. The types
of frames contained in a packet affect recovery and congestion control logic:</t>
      <ul spacing="normal">
        <li>All packets are acknowledged, though packets that contain no
ack-eliciting frames are only acknowledged along with ack-eliciting
packets.</li>
        <li>Long header packets that contain CRYPTO frames are critical to the
performance of the QUIC handshake and use shorter timers for
acknowledgement.</li>
        <li>Packets containing frames besides ACK or CONNECTION_CLOSE frames count toward
congestion control limits and are considered in-flight.</li>
        <li>PADDING frames cause packets to contribute toward bytes in flight without
directly causing an acknowledgment to be sent.</li>
      </ul>
    </section>
    <section anchor="relevant-differences-between-quic-and-tcp" numbered="true" toc="default">
      <name>Relevant Differences Between QUIC and TCP</name>
      <t>Readers familiar with TCP's loss detection and congestion control will find
algorithms here that parallel well-known TCP ones. However, protocol differences
between QUIC and TCP contribute to algorithmic differences. These protocol
differences are briefly described below.</t>
      <section anchor="separate-packet-number-spaces" numbered="true" toc="default">
        <name>Separate Packet Number Spaces</name>
        <t>QUIC uses separate packet number spaces for each encryption level, except 0-RTT
and all generations of 1-RTT keys use the same packet number space.  Separate
packet number spaces ensures acknowledgement of packets sent with one level of
encryption will not cause spurious retransmission of packets sent with a
different encryption level.  Congestion control and round-trip time (RTT)
measurement are unified across packet number spaces.</t>
      </section>
      <section anchor="monotonically-increasing-packet-numbers" numbered="true" toc="default">
        <name>Monotonically Increasing Packet Numbers</name>
        <t>TCP conflates transmission order at the sender with delivery order at the
receiver, resulting in the retransmission ambiguity problem
(<xref target="RETRANSMISSION" format="default"/>).  QUIC separates transmission order from delivery order:
packet numbers indicate transmission order, and delivery order is determined by
the stream offsets in STREAM frames.</t>
        <t>QUIC's packet number is strictly increasing within a packet number space,
and directly encodes transmission order.  A higher packet number signifies
that the packet was sent later, and a lower packet number signifies that
the packet was sent earlier.  When a packet containing ack-eliciting
frames is detected lost, QUIC includes necessary frames in a new packet
with a new packet number, removing ambiguity about which packet is
acknowledged when an ACK is received.  Consequently, more accurate RTT
measurements can be made, spurious retransmissions are trivially detected, and
mechanisms such as Fast Retransmit can be applied universally, based only on
packet number.</t>
        <t>This design point significantly simplifies loss detection mechanisms for QUIC.
Most TCP mechanisms implicitly attempt to infer transmission ordering based on
TCP sequence numbers - a non-trivial task, especially when TCP timestamps are
not available.</t>
      </section>
      <section anchor="clearer-loss-epoch" numbered="true" toc="default">
        <name>Clearer Loss Epoch</name>
        <t>QUIC starts a loss epoch when a packet is lost. The loss epoch ends when any
packet sent after the start of the epoch is acknowledged.  TCP waits for the gap
in the sequence number space to be filled, and so if a segment is lost multiple
times in a row, the loss epoch may not end for several round trips. Because both
should reduce their congestion windows only once per epoch, QUIC will do it once
for every round trip that experiences loss, while TCP may only do it once across
multiple round trips.</t>
      </section>
      <section anchor="no-reneging" numbered="true" toc="default">
        <name>No Reneging</name>
        <t>QUIC ACKs contain information that is similar to TCP SACK, but QUIC does not
allow any acknowledged packet to be reneged, greatly simplifying implementations
on both sides and reducing memory pressure on the sender.</t>
      </section>
      <section anchor="more-ack-ranges" numbered="true" toc="default">
        <name>More ACK Ranges</name>
        <t>QUIC supports many ACK ranges, opposed to TCP's 3 SACK ranges.  In high loss
environments, this speeds recovery, reduces spurious retransmits, and ensures
forward progress without relying on timeouts.</t>
      </section>
      <section anchor="explicit-correction-for-delayed-acknowledgements" numbered="true" toc="default">
        <name>Explicit Correction For Delayed Acknowledgements</name>
        <t>QUIC endpoints measure the delay incurred between when a packet is received and
when the corresponding acknowledgment is sent, allowing a peer to maintain a
more accurate round-trip time estimate; see Section 13.2 of <xref target="QUIC-TRANSPORT" format="default"/>.</t>
      </section>
      <section anchor="probe-timeout-replaces-rto-and-tlp" numbered="true" toc="default">
        <name>Probe Timeout Replaces RTO and TLP</name>
        <t>QUIC uses a probe timeout (PTO; see <xref target="pto" format="default"/>), with a timer based on TCP's RTO
computation.  QUIC's PTO includes the peer's maximum expected acknowledgement
delay instead of using a fixed minimum timeout. QUIC does not collapse the
congestion window until persistent congestion (<xref target="persistent-congestion" format="default"/>) is
declared, unlike TCP, which collapses the congestion window upon expiry of an
RTO.  Instead of collapsing the congestion window and declaring everything
in-flight lost, QUIC allows probe packets to temporarily exceed the congestion
window whenever the timer expires.</t>
        <t>In doing this, QUIC avoids unnecessary congestion window reductions, obviating
the need for correcting mechanisms such as F-RTO (<xref target="RFC5682" format="default"/>). Since QUIC does
not collapse the congestion window on a PTO expiration, a QUIC sender is not
limited from sending more in-flight packets after a PTO expiration if it still
has available congestion window. This occurs when a sender is
application-limited and the PTO timer expires. This is more aggressive than
TCP's RTO mechanism when application-limited, but identical when not
application-limited.</t>
        <t>A single packet loss at the tail does not indicate persistent congestion, so
QUIC specifies a time-based definition to ensure one or more packets are sent
prior to a dramatic decrease in congestion window; see
<xref target="persistent-congestion" format="default"/>.</t>
      </section>
      <section anchor="the-minimum-congestion-window-is-two-packets" numbered="true" toc="default">
        <name>The Minimum Congestion Window is Two Packets</name>
        <t>TCP uses a minimum congestion window of one packet. However, loss of
that single packet means that the sender needs to waiting for a PTO
(<xref target="pto" format="default"/>) to recover, which can be much longer than a round-trip time.
Sending a single ack-eliciting packet also increases the chances of incurring
additional latency when a receiver delays its acknowledgement.</t>
        <t>QUIC therefore recommends that the minimum congestion window be two
packets. While this increases network load, it is considered safe, since the
sender will still reduce its sending rate exponentially under persistent
congestion (<xref target="pto" format="default"/>).</t>
      </section>
    </section>
    <section anchor="compute-rtt" numbered="true" toc="default">
      <name>Estimating the Round-Trip Time</name>
      <t>At a high level, an endpoint measures the time from when a packet was sent to
when it is acknowledged as a round-trip time (RTT) sample.  The endpoint uses
RTT samples and peer-reported host delays (see Section 13.2 of
<xref target="QUIC-TRANSPORT" format="default"/>) to generate a statistical description of the network
path's RTT. An endpoint computes the following three values for each path:
the minimum value observed over the lifetime of the path (min_rtt), an
exponentially-weighted moving average (smoothed_rtt), and the mean deviation
(referred to as "variation" in the rest of this document) in the observed RTT
samples (rttvar).</t>
      <section anchor="latest-rtt" numbered="true" toc="default">
        <name>Generating RTT samples</name>
        <t>An endpoint generates an RTT sample on receiving an ACK frame that meets the
following two conditions:</t>
        <ul spacing="normal">
          <li>the largest acknowledged packet number is newly acknowledged, and</li>
          <li>at least one of the newly acknowledged packets was ack-eliciting.</li>
        </ul>
        <t>The RTT sample, latest_rtt, is generated as the time elapsed since the largest
acknowledged packet was sent:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
latest_rtt = ack_time - send_time_of_largest_acked
]]></artwork>
        <t>An RTT sample is generated using only the largest acknowledged packet in the
received ACK frame.  This is because a peer reports acknowledgment delays for
only the largest acknowledged packet in an ACK frame.  While the reported
acknowledgment delay is not used by the RTT sample measurement, it is used to
adjust the RTT sample in subsequent computations of smoothed_rtt and rttvar
(<xref target="smoothed-rtt" format="default"/>).</t>
        <t>To avoid generating multiple RTT samples for a single packet, an ACK frame
SHOULD NOT be used to update RTT estimates if it does not newly acknowledge the
largest acknowledged packet.</t>
        <t>An RTT sample MUST NOT be generated on receiving an ACK frame that does not
newly acknowledge at least one ack-eliciting packet. A peer usually does not
send an ACK frame when only non-ack-eliciting packets are received. Therefore
an ACK frame that contains acknowledgements for only non-ack-eliciting packets
could include an arbitrarily large ACK Delay value.  Ignoring
such ACK frames avoids complications in subsequent smoothed_rtt and rttvar
computations.</t>
        <t>A sender might generate multiple RTT samples per RTT when multiple ACK frames
are received within an RTT.  As suggested in <xref target="RFC6298" format="default"/>, doing so might result
in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT estimates
retain sufficient history is an open research question.</t>
      </section>
      <section anchor="min-rtt" numbered="true" toc="default">
        <name>Estimating min_rtt</name>
        <t>min_rtt is the sender's estimate of the minimum RTT observed for a given network
path. In this document, min_rtt is used by loss detection to reject implausibly
small rtt samples.</t>
        <t>min_rtt MUST be set to the latest_rtt on the first RTT sample. min_rtt MUST be
set to the lesser of min_rtt and latest_rtt (<xref target="latest-rtt" format="default"/>) on all other
samples.</t>
        <t>An endpoint uses only locally observed times in computing the min_rtt and does
not adjust for acknowledgment delays reported by the peer. Doing so allows the
endpoint to set a lower bound for the smoothed_rtt based entirely on what it
observes (see <xref target="smoothed-rtt" format="default"/>), and limits potential underestimation due to
erroneously-reported delays by the peer.</t>
        <t>The RTT for a network path may change over time. If a path's actual RTT
decreases, the min_rtt will adapt immediately on the first low sample.  If the
path's actual RTT increases however, the min_rtt will not adapt to it, allowing
future RTT samples that are smaller than the new RTT to be included in
smoothed_rtt.</t>
        <t>Endpoints SHOULD set the min_rtt to the newest RTT sample after persistent
congestion is established. This is to allow a connection to reset its estimate
of min_rtt and smoothed_rtt (<xref target="smoothed-rtt" format="default"/>) after a disruptive network event,
and because it is possible that an increase in path delay resulted in persistent
congestion being incorrectly declared.</t>
        <t>Endpoints MAY re-establish the min_rtt at other times in the connection, such as
when traffic volume is low and an acknowledgement is received with a low
acknowledgement delay. Implementations SHOULD NOT refresh the min_rtt
value too often, since the actual minimum RTT of the path is not
frequently observable.</t>
      </section>
      <section anchor="smoothed-rtt" numbered="true" toc="default">
        <name>Estimating smoothed_rtt and rttvar</name>
        <t>smoothed_rtt is an exponentially-weighted moving average of an endpoint's RTT
samples, and rttvar is the variation in the RTT samples, estimated using a
mean variation.</t>
        <t>The calculation of smoothed_rtt uses RTT samples after adjusting them for
acknowledgement delays. These delays are decoded from the ACK Delay field of
ACK frames as described in Section 19.3 of <xref target="QUIC-TRANSPORT" format="default"/>.</t>
        <t>The peer might report acknowledgement delays that are larger than the peer's
max_ack_delay during the handshake (Section 13.2.1 of <xref target="QUIC-TRANSPORT" format="default"/>). To
account for this, the endpoint SHOULD ignore max_ack_delay until the handshake
is confirmed (Section 4.1.2 of <xref target="QUIC-TLS" format="default"/>). When they occur, these large
acknowledgement delays are likely to be non-repeating and limited to the
handshake. The endpoint can therefore use them without limiting them to the
max_ack_delay, avoiding unnecessary inflation of the RTT estimate.</t>
        <t>Note however that a large acknowledgement delay can result in a substantially
inflated smoothed_rtt, if there is either an error in the peer's reporting of
the acknowledgement delay or in the endpoint's min_rtt estimate.  Therefore,
prior to handshake confirmation, an endpoint MAY ignore RTT samples if adjusting
the RTT sample for acknowledgement delay causes the sample to be less than the
min_rtt.</t>
        <t>After the handshake is confirmed, any acknowledgement delays reported by the
peer that are greater than the peer's max_ack_delay are attributed to
unintentional but potentially repeating delays, such as scheduler latency at the
peer or loss of previous acknowledgements.  Excess delays could also be due to
a non-compliant receiver.  Therefore, these extra delays are considered
effectively part of path delay and incorporated into the RTT estimate.</t>
        <t>Therefore, when adjusting an RTT sample using peer-reported acknowledgement
delays, an endpoint:</t>
        <ul spacing="normal">
          <li>MAY ignore the acknowledgement delay for Initial packets, since these
acknowledgements are not delayed by the peer (Section 13.2.1 of
<xref target="QUIC-TRANSPORT" format="default"/>);</li>
          <li>SHOULD ignore the peer's max_ack_delay until the handshake is confirmed;</li>
          <li>MUST use the lesser of the acknowledgement delay and the peer's max_ack_delay
after the handshake is confirmed; and</li>
          <li>MUST NOT subtract the acknowledgement delay from the RTT sample if the
resulting value is smaller than the min_rtt.  This limits the underestimation
of the smoothed_rtt due to a misreporting peer.</li>
        </ul>
        <t>Additionally, an endpoint might postpone the processing of acknowledgements when
the corresponding decryption keys are not immediately available. For example, a
client might receive an acknowledgement for a 0-RTT packet that it cannot
decrypt because 1-RTT packet protection keys are not yet available to it. In
such cases, an endpoint SHOULD subtract such local delays from its RTT sample
until the handshake is confirmed.</t>
        <t>Similar to <xref target="RFC6298" format="default"/>, smoothed_rtt and rttvar are computed as follows.</t>
        <t>An endpoint initializes the RTT estimator during connection establishment and
when the estimator is reset during connection migration; see Section 9.4 of
<xref target="QUIC-TRANSPORT" format="default"/>. Before any RTT samples are available for a new path or when
the estimator is reset, the estimator is initialized using the initial RTT; see
<xref target="pto-handshake" format="default"/>.</t>
        <t>smoothed_rtt and rttvar are initialized as follows, where kInitialRtt contains
the initial RTT value:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
smoothed_rtt = kInitialRtt
rttvar = kInitialRtt / 2
]]></artwork>
        <t>RTT samples for the network path are recorded in latest_rtt; see
<xref target="latest-rtt" format="default"/>. On the first RTT sample after initialization, the estimator is
reset using that sample. This ensures that the estimator retains no history of
past samples.</t>
        <t>On the first RTT sample after initialization, smoothed_rtt and rttvar are set as
follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
smoothed_rtt = latest_rtt
rttvar = latest_rtt / 2
]]></artwork>
        <t>On subsequent RTT samples, smoothed_rtt and rttvar evolve as follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
ack_delay = decoded acknowledgement delay from ACK frame
if (handshake confirmed):
  ack_delay = min(ack_delay, max_ack_delay)
adjusted_rtt = latest_rtt
if (min_rtt + ack_delay < latest_rtt):
  adjusted_rtt = latest_rtt - ack_delay
smoothed_rtt = 7/8 * smoothed_rtt + 1/8 * adjusted_rtt
rttvar_sample = abs(smoothed_rtt - adjusted_rtt)
rttvar = 3/4 * rttvar + 1/4 * rttvar_sample
]]></artwork>
      </section>
    </section>
    <section anchor="loss-detection" numbered="true" toc="default">
      <name>Loss Detection</name>
      <t>QUIC senders use acknowledgements to detect lost packets, and a probe
time out (see <xref target="pto" format="default"/>) to ensure acknowledgements are received. This section
provides a description of these algorithms.</t>
      <t>If a packet is lost, the QUIC transport needs to recover from that loss, such
as by retransmitting the data, sending an updated frame, or discarding the
frame.  For more information, see Section 13.3 of <xref target="QUIC-TRANSPORT" format="default"/>.</t>
      <t>Loss detection is separate per packet number space, unlike RTT measurement and
congestion control, because RTT and congestion control are properties of the
path, whereas loss detection also relies upon key availability.</t>
      <section anchor="ack-loss-detection" numbered="true" toc="default">
        <name>Acknowledgement-Based Detection</name>
        <t>Acknowledgement-based loss detection implements the spirit of TCP's Fast
Retransmit (<xref target="RFC5681" format="default"/>), Early Retransmit (<xref target="RFC5827" format="default"/>), FACK (<xref target="FACK" format="default"/>),
SACK loss recovery (<xref target="RFC6675" format="default"/>), and RACK (<xref target="RACK" format="default"/>). This
section provides an overview of how these algorithms are implemented in QUIC.</t>
        <t>A packet is declared lost if it meets all the following conditions:</t>
        <ul spacing="normal">
          <li>The packet is unacknowledged, in-flight, and was sent prior to an
acknowledged packet.</li>
          <li>The packet was sent kPacketThreshold packets before an acknowledged packet
(<xref target="packet-threshold" format="default"/>), or it was sent long enough in the past
(<xref target="time-threshold" format="default"/>).</li>
        </ul>
        <t>The acknowledgement indicates that a packet sent later was delivered, and the
packet and time thresholds provide some tolerance for packet reordering.</t>
        <t>Spuriously declaring packets as lost leads to unnecessary retransmissions and
may result in degraded performance due to the actions of the congestion
controller upon detecting loss.  Implementations can detect spurious
retransmissions and increase the reordering threshold in packets or time to
reduce future spurious retransmissions and loss events. Implementations with
adaptive time thresholds MAY choose to start with smaller initial reordering
thresholds to minimize recovery latency.</t>
        <section anchor="packet-threshold" numbered="true" toc="default">
          <name>Packet Threshold</name>
          <t>The RECOMMENDED initial value for the packet reordering threshold
(kPacketThreshold) is 3, based on best practices for TCP loss detection
(<xref target="RFC5681" format="default"/>, <xref target="RFC6675" format="default"/>).  In order to remain similar to TCP,
implementations SHOULD NOT use a packet threshold less than 3; see <xref target="RFC5681" format="default"/>.</t>
          <t>Some networks may exhibit higher degrees of packet reordering, causing a sender
to detect spurious losses. Additionally, packet reordering could be more common
with QUIC than TCP, because network elements that could observe and reorder
TCP packets cannot do that for QUIC, because QUIC packet numbers are encrypted.
Algorithms that increase the reordering threshold after spuriously detecting
losses, such as RACK <xref target="RACK" format="default"/>, have proven to be useful in TCP and are
expected to be at least as useful in QUIC.</t>
        </section>
        <section anchor="time-threshold" numbered="true" toc="default">
          <name>Time Threshold</name>
          <t>Once a later packet within the same packet number space has been acknowledged,
an endpoint SHOULD declare an earlier packet lost if it was sent a threshold
amount of time in the past. To avoid declaring packets as lost too early, this
time threshold MUST be set to at least the local timer granularity, as
indicated by the kGranularity constant.  The time threshold is:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
max(kTimeThreshold * max(smoothed_rtt, latest_rtt), kGranularity)
]]></artwork>
          <t>If packets sent prior to the largest acknowledged packet cannot yet be declared
lost, then a timer SHOULD be set for the remaining time.</t>
          <t>Using max(smoothed_rtt, latest_rtt) protects from the two following cases:</t>
          <ul spacing="normal">
            <li>the latest RTT sample is lower than the smoothed RTT, perhaps due to
reordering where the acknowledgement encountered a shorter path;</li>
            <li>the latest RTT sample is higher than the smoothed RTT, perhaps due to a
sustained increase in the actual RTT, but the smoothed RTT has not yet caught
up.</li>
          </ul>
          <t>The RECOMMENDED time threshold (kTimeThreshold), expressed as a round-trip time
multiplier, is 9/8. The RECOMMENDED value of the timer granularity
(kGranularity) is 1ms.</t>
          <dl>
            <dt>
Note:  </dt>
            <dd>
              <t>TCP's RACK (<xref target="RACK" format="default"/>) specifies a slightly larger
threshold, equivalent to 5/4, for a similar purpose. Experience with QUIC shows
that 9/8 works well.</t>
            </dd>
          </dl>
          <t>Implementations MAY experiment with absolute thresholds, thresholds from
previous connections, adaptive thresholds, or including RTT variation.  Smaller
thresholds reduce reordering resilience and increase spurious retransmissions,
and larger thresholds increase loss detection delay.</t>
        </section>
      </section>
      <section anchor="pto" numbered="true" toc="default">
        <name>Probe Timeout</name>
        <t>A Probe Timeout (PTO) triggers sending one or two probe datagrams when
ack-eliciting packets are not acknowledged within the expected period of
time or the server may not have validated the client's address.  A PTO enables
a connection to recover from loss of tail packets or acknowledgements.</t>
        <t>As with loss detection, the probe timeout is per packet number space. That is, a
PTO value is computed per packet number space.</t>
        <t>A PTO timer expiration event does not indicate packet loss and MUST NOT cause
prior unacknowledged packets to be marked as lost. When an acknowledgement
is received that newly acknowledges packets, loss detection proceeds as
dictated by packet and time threshold mechanisms; see <xref target="ack-loss-detection" format="default"/>.</t>
        <t>The PTO algorithm used in QUIC implements the reliability functions of
Tail Loss Probe <xref target="RACK" format="default"/>, RTO <xref target="RFC5681" format="default"/>, and F-RTO algorithms for
TCP <xref target="RFC5682" format="default"/>. The timeout computation is based on TCP's retransmission
timeout period <xref target="RFC6298" format="default"/>.</t>
        <section anchor="computing-pto" numbered="true" toc="default">
          <name>Computing PTO</name>
          <t>When an ack-eliciting packet is transmitted, the sender schedules a timer for
the PTO period as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
PTO = smoothed_rtt + max(4*rttvar, kGranularity) + max_ack_delay
]]></artwork>
          <t>The PTO period is the amount of time that a sender ought to wait for an
acknowledgement of a sent packet.  This time period includes the estimated
network roundtrip-time (smoothed_rtt), the variation in the estimate (4*rttvar),
and max_ack_delay, to account for the maximum time by which a receiver might
delay sending an acknowledgement.</t>
          <t>When the PTO is armed for Initial or Handshake packet number spaces, the
max_ack_delay in the PTO period computation is set to 0, since the peer is
expected to not delay these packets intentionally; see 13.2.1 of
<xref target="QUIC-TRANSPORT" format="default"/>.</t>
          <t>The PTO period MUST be at least kGranularity, to avoid the timer expiring
immediately.</t>
          <t>When ack-eliciting packets in multiple packet number spaces are in flight, the
timer MUST be set to the earlier value of the Initial and Handshake packet
number spaces.</t>
          <t>An endpoint MUST NOT set its PTO timer for the application data packet number
space until the handshake is confirmed. Doing so prevents the endpoint from
retransmitting information in packets when either the peer does not yet have the
keys to process them or the endpoint does not yet have the keys to process their
acknowledgements. For example, this can happen when a client sends 0-RTT packets
to the server; it does so without knowing whether the server will be able to
decrypt them. Similarly, this can happen when a server sends 1-RTT packets
before confirming that the client has verified the server's certificate and can
therefore read these 1-RTT packets.</t>
          <t>A sender SHOULD restart its PTO timer every time an ack-eliciting packet is sent
or acknowledged, when the handshake is confirmed (Section 4.1.2 of
<xref target="QUIC-TLS" format="default"/>), or when Initial or Handshake keys are discarded (Section 4.9 of
<xref target="QUIC-TLS" format="default"/>). This ensures the PTO is always set based on the latest estimate
of the round-trip time and for the correct packet across packet number spaces.</t>
          <t>When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
PTO period being set to twice its current value. The PTO backoff factor is reset
when an acknowledgement is received, except in the following case. A server
might take longer to respond to packets during the handshake than otherwise.  To
protect such a server from repeated client probes, the PTO backoff is not reset
at a client that is not yet certain that the server has finished validating the
client's address. That is, a client does not reset the PTO backoff factor on
receiving acknowledgements in Initial packets.</t>
          <t>This exponential reduction in the sender's rate is important because
consecutive PTOs might be caused by loss of packets or acknowledgements due to
severe congestion.  Even when there are ack-eliciting packets in-flight in
multiple packet number spaces, the exponential increase in probe timeout
occurs across all spaces to prevent excess load on the network.  For example,
a timeout in the Initial packet number space doubles the length of the timeout
in the Handshake packet number space.</t>
          <t>The total length of time over which consecutive PTOs expire is limited by the
idle timeout.</t>
          <t>The PTO timer MUST NOT be set if a timer is set for time threshold
loss detection; see <xref target="time-threshold" format="default"/>.  A timer that is set for time
threshold loss detection will expire earlier than the PTO timer
in most cases and is less likely to spuriously retransmit data.</t>
        </section>
        <section anchor="pto-handshake" numbered="true" toc="default">
          <name>Handshakes and New Paths</name>
          <t>Resumed connections over the same network MAY use the previous connection's
final smoothed RTT value as the resumed connection's initial RTT.  When no
previous RTT is available, the initial RTT SHOULD be set to 333ms.  This
results in handshakes starting with a PTO of 1 second, as recommended
for TCP's initial retransmission timeout; see Section 2 of <xref target="RFC6298" format="default"/>.</t>
          <t>A connection MAY use the delay between sending a PATH_CHALLENGE and receiving a
PATH_RESPONSE to set the initial RTT (see kInitialRtt in
<xref target="constants-of-interest" format="default"/>) for a new path, but the delay SHOULD NOT be
considered an RTT sample.</t>
          <t>Initial packets and Handshake packets could be never acknowledged, but they are
removed from bytes in flight when the Initial and Handshake keys are discarded,
as described below in <xref target="discarding-packets" format="default"/>. When Initial or Handshake keys are
discarded, the PTO and loss detection timers MUST be reset, because discarding
keys indicates forward progress and the loss detection timer might have been set
for a now discarded packet number space.</t>
          <section anchor="before-address-validation" numbered="true" toc="default">
            <name>Before Address Validation</name>
            <t>Until the server has validated the client's address on the path, the amount of
data it can send is limited to three times the amount of data received,
as specified in Section 8.1 of <xref target="QUIC-TRANSPORT" format="default"/>. If no additional data can be
sent, the server's PTO timer MUST NOT be armed until datagrams have been
received from the client, because packets sent on PTO count against the
anti-amplification limit. Note that the server could fail to validate the
client's address even if 0-RTT is accepted.</t>
            <t>Since the server could be blocked until more datagrams are received from the
client, it is the client's responsibility to send packets to unblock the server
until it is certain that the server has finished its address validation
(see Section 8 of <xref target="QUIC-TRANSPORT" format="default"/>).  That is, the client MUST set the
probe timer if the client has not received an acknowledgement for one of its
Handshake packets and the handshake is not confirmed (see Section 4.1.2 of
<xref target="QUIC-TLS" format="default"/>), even if there are no packets in flight.  When the PTO fires,
the client MUST send a Handshake packet if it has Handshake keys, otherwise it
MUST send an Initial packet in a UDP datagram with a payload of at least 1200
bytes.</t>
          </section>
        </section>
        <section anchor="speeding-up-handshake-completion" numbered="true" toc="default">
          <name>Speeding Up Handshake Completion</name>
          <t>When a server receives an Initial packet containing duplicate CRYPTO data,
it can assume the client did not receive all of the server's CRYPTO data sent
in Initial packets, or the client's estimated RTT is too small. When a
client receives Handshake or 1-RTT packets prior to obtaining Handshake keys,
it may assume some or all of the server's Initial packets were lost.</t>
          <t>To speed up handshake completion under these conditions, an endpoint MAY, for a
limited number of occasions per each connection, send a packet containing
unacknowledged CRYPTO data earlier than the PTO expiry, subject to the address
validation limits in Section 8.1 of <xref target="QUIC-TRANSPORT" format="default"/>. Doing so at most once
for each connection is adequate to quickly recover from a single packet loss.
Endpoints that do not cease retransmitting packets in response to
unauthenticated data risk creating an infinite exchange of packets.</t>
          <t>Endpoints can also use coalesced packets (see Section 12.2 of
<xref target="QUIC-TRANSPORT" format="default"/>) to ensure that each datagram elicits at least one
acknowledgement. For example, a client can coalesce an Initial packet
containing PING and PADDING frames with a 0-RTT data packet and a server can
coalesce an Initial packet containing a PING frame with one or more packets in
its first flight.</t>
        </section>
        <section anchor="sending-probe-packets" numbered="true" toc="default">
          <name>Sending Probe Packets</name>
          <t>When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
in the packet number space as a probe.  An endpoint MAY send up to two
full-sized datagrams containing ack-eliciting packets, to avoid an expensive
consecutive PTO expiration due to a single lost datagram or transmit data
from multiple packet number spaces. All probe packets sent on a PTO MUST be
ack-eliciting.</t>
          <t>In addition to sending data in the packet number space for which the timer
expired, the sender SHOULD send ack-eliciting packets from other packet
number spaces with in-flight data, coalescing packets if possible.  This is
particularly valuable when the server has both Initial and Handshake data
in-flight or the client has both Handshake and Application Data in-flight,
because the peer might only have receive keys for one of the two packet number
spaces.</t>
          <t>If the sender wants to elicit a faster acknowledgement on PTO, it can skip a
packet number to eliminate the acknowledgment delay.</t>
          <t>When the PTO timer expires, an ack-eliciting packet MUST be sent.  An endpoint
SHOULD include new data in this packet.  Previously sent data MAY be sent if
no new data can be sent.  Implementations MAY use alternative strategies for
determining the content of probe packets, including sending new or
retransmitted data based on the application's priorities.</t>
          <t>It is possible the sender has no new or previously-sent data to send.
As an example, consider the following sequence of events: new application data
is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
and then the original transmission is acknowledged.  When there is no data to
send, the sender SHOULD send a PING or other ack-eliciting frame in a single
packet, re-arming the PTO timer.</t>
          <t>Alternatively, instead of sending an ack-eliciting packet, the sender MAY mark
any packets still in flight as lost.  Doing so avoids sending an additional
packet, but increases the risk that loss is declared too aggressively, resulting
in an unnecessary rate reduction by the congestion controller.</t>
          <t>Consecutive PTO periods increase exponentially, and as a result, connection
recovery latency increases exponentially as packets continue to be dropped in
the network.  Sending two packets on PTO expiration increases resilience to
packet drops, thus reducing the probability of consecutive PTO events.</t>
          <t>When the PTO timer expires multiple times and new data cannot be sent,
implementations must choose between sending the same payload every time
or sending different payloads.  Sending the same payload may be simpler
and ensures the highest priority frames arrive first.  Sending different
payloads each time reduces the chances of spurious retransmission.</t>
        </section>
      </section>
      <section anchor="handling-retry-packets" numbered="true" toc="default">
        <name>Handling Retry Packets</name>
        <t>A Retry packet causes a client to send another Initial packet, effectively
restarting the connection process.  A Retry packet indicates that the Initial
was received, but not processed.  A Retry packet cannot be treated as an
acknowledgment, because it does not indicate that a packet was processed or
specify the packet number.</t>
        <t>Clients that receive a Retry packet reset congestion control and loss recovery
state, including resetting any pending timers.  Other connection state, in
particular cryptographic handshake messages, is retained; see Section 17.2.5 of
<xref target="QUIC-TRANSPORT" format="default"/>.</t>
        <t>The client MAY compute an RTT estimate to the server as the time period from
when the first Initial was sent to when a Retry or a Version Negotiation packet
is received.  The client MAY use this value in place of its default for the
initial RTT estimate.</t>
      </section>
      <section anchor="discarding-packets" numbered="true" toc="default">
        <name>Discarding Keys and Packet State</name>
        <t>When packet protection keys are discarded (see Section 4.9 of <xref target="QUIC-TLS" format="default"/>),
all packets that were sent with those keys can no longer be acknowledged because
their acknowledgements cannot be processed anymore. The sender MUST discard
all recovery state associated with those packets and MUST remove them from
the count of bytes in flight.</t>
        <t>Endpoints stop sending and receiving Initial packets once they start exchanging
Handshake packets; see Section 17.2.2.1 of <xref target="QUIC-TRANSPORT" format="default"/>. At this point,
recovery state for all in-flight Initial packets is discarded.</t>
        <t>When 0-RTT is rejected, recovery state for all in-flight 0-RTT packets is
discarded.</t>
        <t>If a server accepts 0-RTT, but does not buffer 0-RTT packets that arrive
before Initial packets, early 0-RTT packets will be declared lost, but that
is expected to be infrequent.</t>
        <t>It is expected that keys are discarded after packets encrypted with them would
be acknowledged or declared lost.  However, Initial secrets are discarded as
soon as handshake keys are proven to be available to both client and server;
see Section 4.9.1 of <xref target="QUIC-TLS" format="default"/>.</t>
      </section>
    </section>
    <section anchor="congestion-control" numbered="true" toc="default">
      <name>Congestion Control</name>
      <t>This document specifies a sender-side congestion controller for QUIC similar to
TCP NewReno (<xref target="RFC6582" format="default"/>).</t>
      <t>The signals QUIC provides for congestion control are generic and are designed to
support different sender-side algorithms. A sender can unilaterally choose a
different algorithm to use, such as Cubic (<xref target="RFC8312" format="default"/>).</t>
      <t>If a sender uses a different controller than that specified in this document,
the chosen controller MUST conform to the congestion control guidelines
specified in Section 3.1 of <xref target="RFC8085" format="default"/>.</t>
      <t>Similar to TCP, packets containing only ACK frames do not count towards bytes
in flight and are not congestion controlled.  Unlike TCP, QUIC can detect the
loss of these packets and MAY use that information to adjust the congestion
controller or the rate of ACK-only packets being sent, but this document does
not describe a mechanism for doing so.</t>
      <t>The algorithm in this document specifies and uses the controller's congestion
window in bytes.</t>
      <t>An endpoint MUST NOT send a packet if it would cause bytes_in_flight (see
<xref target="vars-of-interest" format="default"/>) to be larger than the congestion window, unless the packet
is sent on a PTO timer expiration (see <xref target="pto" format="default"/>) or when entering recovery
(see <xref target="recovery-period" format="default"/>).</t>
      <section anchor="congestion-ecn" numbered="true" toc="default">
        <name>Explicit Congestion Notification</name>
        <t>If a path has been validated to support ECN (<xref target="RFC3168" format="default"/>, <xref target="RFC8311" format="default"/>), QUIC
treats a Congestion Experienced (CE) codepoint in the IP header as a signal of
congestion. This document specifies an endpoint's response when the
peer-reported ECN-CE count increases; see Section 13.4.2 of <xref target="QUIC-TRANSPORT" format="default"/>.</t>
      </section>
      <section anchor="initial-cwnd" numbered="true" toc="default">
        <name>Initial and Minimum Congestion Window</name>
        <t>QUIC begins every connection in slow start with the congestion window set to
an initial value.  Endpoints SHOULD use an initial congestion window of 10 times
the maximum datagram size (max_datagram_size), limited to the larger of 14720
bytes or twice the maximum datagram size. This follows the analysis and
recommendations in <xref target="RFC6928" format="default"/>, increasing the byte limit to account for the
smaller 8 byte overhead of UDP compared to the 20 byte overhead for TCP.</t>
        <t>If the maximum datagram size changes during the connection, the initial
congestion window SHOULD be recalculated with the new size.  If the maximum
datagram size is decreased in order to complete the handshake, the
congestion window SHOULD be set to the new initial congestion window.</t>
        <t>Prior to validating the client's address, the server can be further limited by
the anti-amplification limit as specified in Section 8.1 of <xref target="QUIC-TRANSPORT" format="default"/>.
Though the anti-amplification limit can prevent the congestion window from
being fully utilized and therefore slow down the increase in congestion window,
it does not directly affect the congestion window.</t>
        <t>The minimum congestion window is the smallest value the congestion window can
decrease to as a response to loss, increase in the peer-reported ECN-CE count,
or persistent congestion.  The RECOMMENDED value is 2 * max_datagram_size.</t>
      </section>
      <section anchor="congestion-control-states" numbered="true" toc="default">
        <name>Congestion Control States</name>
        <t>The NewReno congestion controller described in this document has three
distinct states, as shown in <xref target="fig-cc-fsm" format="default"/>.</t>
        <figure anchor="fig-cc-fsm">
          <name>Congestion Control States and Transitions</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
                 New Path or      +------------+
            persistent congestion |   Slow     |
        (O)---------------------->|   Start    |
                                  +------------+
                                        |
                                Loss or |
                        ECN-CE increase |
                                        v
 +------------+     Loss or       +------------+
 | Congestion |  ECN-CE increase  |  Recovery  |
 | Avoidance  |------------------>|   Period   |
 +------------+                   +------------+
           ^                            |
           |                            |
           +----------------------------+
              Acknowledgment of packet
                sent during recovery
]]></artwork>
        </figure>
        <t>These states and the transitions between them are described in subsequent
sections.</t>
        <section anchor="slow-start" numbered="true" toc="default">
          <name>Slow Start</name>
          <t>A NewReno sender is in slow start any time the congestion window is below the
slow start threshold. A sender begins in slow start because the slow start
threshold is initialized to an infinite value.</t>
          <t>While a sender is in slow start, the congestion window increases by the number
of bytes acknowledged when each acknowledgment is processed. This results in
exponential growth of the congestion window.</t>
          <t>The sender MUST exit slow start and enter a recovery period when a packet is
lost or when the ECN-CE count reported by its peer increases.</t>
          <t>A sender re-enters slow start any time the congestion window is less than the
slow start threshold, which only occurs after persistent congestion is
declared.</t>
        </section>
        <section anchor="recovery-period" numbered="true" toc="default">
          <name>Recovery</name>
          <t>A NewReno sender enters a recovery period when it detects the loss of a packet
or the ECN-CE count reported by its peer increases. A sender that is already in
a recovery period stays in it and does not re-enter it.</t>
          <t>On entering a recovery period, a sender MUST set the slow start threshold to
half the value of the congestion window when loss is detected. The congestion
window MUST be set to the reduced value of the slow start threshold before
exiting the recovery period.</t>
          <t>Implementations MAY reduce the congestion window immediately upon entering a
recovery period or use other mechanisms, such as Proportional Rate Reduction
(<xref target="PRR" format="default"/>), to reduce the congestion window more gradually. If the
congestion window is reduced immediately, a single packet can be sent prior to
reduction. This speeds up loss recovery if the data in the lost packet is
retransmitted and is similar to TCP as described in Section 5 of <xref target="RFC6675" format="default"/>.</t>
          <t>The recovery period aims to limit congestion window reduction to once per round
trip. Therefore during a recovery period, the congestion window does not change
in response to new losses or increases in the ECN-CE count.</t>
          <t>A recovery period ends and the sender enters congestion avoidance when a packet
sent during the recovery period is acknowledged. This is slightly different
from TCP's definition of recovery, which ends when the lost segment that
started recovery is acknowledged (<xref target="RFC5681" format="default"/>).</t>
        </section>
        <section anchor="congestion-avoidance" numbered="true" toc="default">
          <name>Congestion Avoidance</name>
          <t>A NewReno sender is in congestion avoidance any time the congestion window is
at or above the slow start threshold and not in a recovery period.</t>
          <t>A sender in congestion avoidance uses an Additive Increase Multiplicative
Decrease (AIMD) approach that MUST limit the increase to the congestion window
to at most one maximum datagram size for each congestion window that is
acknowledged.</t>
          <t>The sender exits congestion avoidance and enters a recovery period when a
packet is lost or when the ECN-CE count reported by its peer increases.</t>
        </section>
      </section>
      <section anchor="ignoring-loss-of-undecryptable-packets" numbered="true" toc="default">
        <name>Ignoring Loss of Undecryptable Packets</name>
        <t>During the handshake, some packet protection keys might not be available when
a packet arrives and the receiver can choose to drop the packet. In particular,
Handshake and 0-RTT packets cannot be processed until the Initial packets
arrive and 1-RTT packets cannot be processed until the handshake completes.
Endpoints MAY ignore the loss of Handshake, 0-RTT, and 1-RTT packets that might
have arrived before the peer had packet protection keys to process those
packets. Endpoints MUST NOT ignore the loss of packets that were sent after
the earliest acknowledged packet in a given packet number space.</t>
      </section>
      <section anchor="probe-timeout" numbered="true" toc="default">
        <name>Probe Timeout</name>
        <t>Probe packets MUST NOT be blocked by the congestion controller.  A sender MUST
however count these packets as being additionally in flight, since these packets
add network load without establishing packet loss.  Note that sending probe
packets might cause the sender's bytes in flight to exceed the congestion window
until an acknowledgement is received that establishes loss or delivery of
packets.</t>
      </section>
      <section anchor="persistent-congestion" numbered="true" toc="default">
        <name>Persistent Congestion</name>
        <t>When a sender establishes loss of all packets sent over a long enough duration,
the network is considered to be experiencing persistent congestion.</t>
        <section anchor="pc-duration" numbered="true" toc="default">
          <name>Duration</name>
          <t>The persistent congestion duration is computed as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
(smoothed_rtt + max(4*rttvar, kGranularity) + max_ack_delay) *
    kPersistentCongestionThreshold
]]></artwork>
          <t>Unlike the PTO computation in <xref target="pto" format="default"/>, this duration includes the max_ack_delay
irrespective of the packet number spaces in which losses are established.</t>
          <t>This duration allows a sender to send as many packets before establishing
persistent congestion, including some in response to PTO expiration, as TCP does
with Tail Loss Probes (<xref target="RACK" format="default"/>) and a Retransmission Timeout (<xref target="RFC5681" format="default"/>).</t>
          <t>Larger values of kPersistentCongestionThreshold cause the sender to become less
responsive to persistent congestion in the network, which can result in
aggressive sending into a congested network. Too small a value can result in a
sender declaring persistent congestion unnecessarily, resulting in reduced
throughput for the sender.</t>
          <t>The RECOMMENDED value for kPersistentCongestionThreshold is 3, which results in
behavior that is approximately equivalent to a TCP sender declaring an RTO after
two TLPs.</t>
          <t>This design does not use consecutive PTO events to establish persistent
congestion, since application patterns impact PTO expirations. For example, a
sender that sends small amounts of data with silence periods between them
restarts the PTO timer every time it sends, potentially preventing the PTO timer
from expiring for a long period of time, even when no acknowledgments are being
received. The use of a duration enables a sender to establish persistent
congestion without depending on PTO expiration.</t>
        </section>
        <section anchor="establishing-persistent-congestion" numbered="true" toc="default">
          <name>Establishing Persistent Congestion</name>
          <t>A sender establishes persistent congestion after the receipt of an
acknowledgement if two packets that are ack-eliciting are declared lost, and:</t>
          <ul spacing="normal">
            <li>across all packet number spaces, none of the packets sent between the send
times of these two packets are acknowledged;</li>
            <li>the duration between the send times of these two packets exceeds the
persistent congestion duration (<xref target="pc-duration" format="default"/>); and</li>
            <li>a prior RTT sample existed when these two packets were sent.</li>
          </ul>
          <t>These two packets MUST be ack-eliciting, since a receiver is required to
acknowledge only ack-eliciting packets within its maximum ack delay; see Section
13.2 of <xref target="QUIC-TRANSPORT" format="default"/>.</t>
          <t>The persistent congestion period SHOULD NOT start until there is at least one
RTT sample. Before the first RTT sample, a sender arms its PTO timer based on
the initial RTT (<xref target="pto-handshake" format="default"/>), which could be substantially larger than
the actual RTT. Requiring a prior RTT sample prevents a sender from establishing
persistent congestion with potentially too few probes.</t>
          <t>Since network congestion is not affected by packet number spaces, persistent
congestion SHOULD consider packets sent across packet number spaces. A sender
that does not have state for all packet number spaces or an implementation that
cannot compare send times across packet number spaces MAY use state for just the
packet number space that was acknowledged.</t>
          <t>When persistent congestion is declared, the sender's congestion window MUST be
reduced to the minimum congestion window (kMinimumWindow), similar to a TCP
sender's response on an RTO (<xref target="RFC5681" format="default"/>).</t>
        </section>
        <section anchor="example" numbered="true" toc="default">
          <name>Example</name>
          <t>The following example illustrates how a sender might establish persistent
congestion. Assume:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
smoothed_rtt + max(4*rttvar, kGranularity) + max_ack_delay = 2
kPersistentCongestionThreshold = 3
]]></artwork>
          <t>Consider the following sequence of events:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Time</th>
                <th align="left">Action</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">t=0</td>
                <td align="left">Send packet #1 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=1</td>
                <td align="left">Send packet #2 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=1.2</td>
                <td align="left">Recv acknowledgement of #1</td>
              </tr>
              <tr>
                <td align="left">t=2</td>
                <td align="left">Send packet #3 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=3</td>
                <td align="left">Send packet #4 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=4</td>
                <td align="left">Send packet #5 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=5</td>
                <td align="left">Send packet #6 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=6</td>
                <td align="left">Send packet #7 (app data)</td>
              </tr>
              <tr>
                <td align="left">t=8</td>
                <td align="left">Send packet #8 (PTO 1)</td>
              </tr>
              <tr>
                <td align="left">t=12</td>
                <td align="left">Send packet #9 (PTO 2)</td>
              </tr>
              <tr>
                <td align="left">t=12.2</td>
                <td align="left">Recv acknowledgement of #9</td>
              </tr>
            </tbody>
          </table>
          <t>Packets 2 through 8 are declared lost when the acknowledgement for packet 9 is
received at t = 12.2.</t>
          <t>The congestion period is calculated as the time between the oldest and newest
lost packets: 8 - 1 = 7.  The persistent congestion duration is: 2 * 3 = 6.
Because the threshold was reached and because none of the packets between the
oldest and the newest lost packets were acknowledged, the network is considered
to have experienced persistent congestion.</t>
          <t>While this example shows PTO expiration, they are not required for persistent
congestion to be established.</t>
        </section>
      </section>
      <section anchor="pacing" numbered="true" toc="default">
        <name>Pacing</name>
        <t>A sender SHOULD pace sending of all in-flight packets based on input from the
congestion controller.</t>
        <t>Sending multiple packets into the network without any delay between them creates
a packet burst that might cause short-term congestion and losses. Senders MUST
either use pacing or limit such bursts. Senders SHOULD limit bursts to the
initial congestion window; see <xref target="initial-cwnd" format="default"/>. A sender with knowledge that
the network path to the receiver can absorb larger bursts MAY use a higher
limit.</t>
        <t>An implementation should take care to architect its congestion controller to
work well with a pacer.  For instance, a pacer might wrap the congestion
controller and control the availability of the congestion window, or a pacer
might pace out packets handed to it by the congestion controller.</t>
        <t>Timely delivery of ACK frames is important for efficient loss recovery. Packets
containing only ACK frames SHOULD therefore not be paced, to avoid delaying
their delivery to the peer.</t>
        <t>Endpoints can implement pacing as they choose. A perfectly paced sender spreads
packets exactly evenly over time. For a window-based congestion controller, such
as the one in this document, that rate can be computed by averaging the
congestion window over the round-trip time. Expressed as a rate in bytes:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
rate = N * congestion_window / smoothed_rtt
]]></artwork>
        <t>Or, expressed as an inter-packet interval:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
interval = smoothed_rtt * packet_size / congestion_window / N
]]></artwork>
        <t>Using a value for <tt>N</tt> that is small, but at least 1 (for example, 1.25) ensures
that variations in round-trip time do not result in under-utilization of the
congestion window.</t>
        <t>Practical considerations, such as packetization, scheduling delays, and
computational efficiency, can cause a sender to deviate from this rate over time
periods that are much shorter than a round-trip time.</t>
        <t>One possible implementation strategy for pacing uses a leaky bucket algorithm,
where the capacity of the "bucket" is limited to the maximum burst size and the
rate the "bucket" fills is determined by the above function.</t>
      </section>
      <section anchor="under-utilizing-the-congestion-window" numbered="true" toc="default">
        <name>Under-utilizing the Congestion Window</name>
        <t>When bytes in flight is smaller than the congestion window and sending is not
pacing limited, the congestion window is under-utilized.  When this occurs,
the congestion window SHOULD NOT be increased in either slow start or
congestion avoidance. This can happen due to insufficient application data
or flow control limits.</t>
        <t>A sender that paces packets (see <xref target="pacing" format="default"/>) might delay sending packets
and not fully utilize the congestion window due to this delay. A sender
SHOULD NOT consider itself application limited if it would have fully
utilized the congestion window without pacing delay.</t>
        <t>A sender MAY implement alternative mechanisms to update its congestion window
after periods of under-utilization, such as those proposed for TCP in
<xref target="RFC7661" format="default"/>.</t>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <section anchor="congestion-signals" numbered="true" toc="default">
        <name>Congestion Signals</name>
        <t>Congestion control fundamentally involves the consumption of signals -- both
loss and ECN codepoints -- from unauthenticated entities.  On-path attackers can
spoof or alter these signals.  An attacker can cause endpoints to reduce their
sending rate by dropping packets, or alter send rate by changing ECN codepoints.</t>
      </section>
      <section anchor="traffic-analysis" numbered="true" toc="default">
        <name>Traffic Analysis</name>
        <t>Packets that carry only ACK frames can be heuristically identified by observing
packet size.  Acknowledgement patterns may expose information about link
characteristics or application behavior.  To reduce leaked information,
endpoints can bundle acknowledgments with other frames, or they can use PADDING
frames at a potential cost to performance.</t>
      </section>
      <section anchor="misreporting-ecn-markings" numbered="true" toc="default">
        <name>Misreporting ECN Markings</name>
        <t>A receiver can misreport ECN markings to alter the congestion response of a
sender.  Suppressing reports of ECN-CE markings could cause a sender to
increase their send rate.  This increase could result in congestion and loss.</t>
        <t>A sender can detect suppression of reports by marking occasional packets that it
sends with an ECN-CE marking. If a packet sent with an ECN-CE marking is not
reported as having been CE marked when the packet is acknowledged, then the
sender can disable ECN for that path by not setting ECT codepoints in subsequent
packets sent on that path <xref target="RFC3168" format="default"/>.</t>
        <t>Reporting additional ECN-CE markings will cause a sender to reduce their sending
rate, which is similar in effect to advertising reduced connection flow control
limits and so no advantage is gained by doing so.</t>
        <t>Endpoints choose the congestion controller that they use. Congestion controllers
respond to reports of ECN-CE by reducing their rate, but the response may vary.
Markings can be treated as equivalent to loss (<xref target="RFC3168" format="default"/>), but other
responses can be specified, such as (<xref target="RFC8511" format="default"/>) or (<xref target="RFC8311" format="default"/>).</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
              <organization>Fastly</organization>
            </author>
            <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
              <organization>Mozilla</organization>
            </author>
            <date year="2020" month="December" day="13"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-33"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
              <organization>Mozilla</organization>
            </author>
            <author initials="S." surname="Turner" fullname="Sean Turner" role="editor">
              <organization>sn3rd</organization>
            </author>
            <date year="2020" month="December" day="13"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-33"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <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" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <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="RFC8085" target="https://www.rfc-editor.org/info/rfc8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author initials="L." surname="Eggert" fullname="L. Eggert">
              <organization/>
            </author>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <author initials="G." surname="Shepherd" fullname="G. Shepherd">
              <organization/>
            </author>
            <date year="2017" month="March"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="RFC3168" target="https://www.rfc-editor.org/info/rfc3168">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author initials="K." surname="Ramakrishnan" fullname="K. Ramakrishnan">
              <organization/>
            </author>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <author initials="D." surname="Black" fullname="D. Black">
              <organization/>
            </author>
            <date year="2001" month="September"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3168"/>
          <seriesInfo name="DOI" value="10.17487/RFC3168"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="FACK">
          <front>
            <title>Forward Acknowledgement: Refining TCP Congestion Control</title>
            <author initials="M." surname="Mathis">
              <organization/>
            </author>
            <author initials="J." surname="Mahdavi">
              <organization/>
            </author>
            <date year="1996" month="August"/>
          </front>
          <seriesInfo name="ACM SIGCOMM" value=""/>
        </reference>
        <reference anchor="RETRANSMISSION">
          <front>
            <title>Improving Round-Trip Time Estimates in Reliable Transport Protocols</title>
            <author initials="P." surname="Karn">
              <organization/>
            </author>
            <author initials="C." surname="Partridge">
              <organization/>
            </author>
            <date year="1995" month="January"/>
          </front>
          <seriesInfo name="ACM SIGCOMM CCR" value=""/>
        </reference>
        <reference anchor="RFC5682" target="https://www.rfc-editor.org/info/rfc5682">
          <front>
            <title>Forward RTO-Recovery (F-RTO): An Algorithm for Detecting Spurious Retransmission Timeouts with TCP</title>
            <author initials="P." surname="Sarolahti" fullname="P. Sarolahti">
              <organization/>
            </author>
            <author initials="M." surname="Kojo" fullname="M. Kojo">
              <organization/>
            </author>
            <author initials="K." surname="Yamamoto" fullname="K. Yamamoto">
              <organization/>
            </author>
            <author initials="M." surname="Hata" fullname="M. Hata">
              <organization/>
            </author>
            <date year="2009" month="September"/>
            <abstract>
              <t>The purpose of this document is to move the F-RTO (Forward RTO-Recovery) functionality for TCP in RFC 4138 from Experimental to Standards Track status.  The F-RTO support for Stream Control Transmission Protocol (SCTP) in RFC 4138 remains with Experimental status.  See Appendix B for the differences between this document and RFC 4138.</t>
              <t>Spurious retransmission timeouts cause suboptimal TCP performance because they often result in unnecessary retransmission of the last window of data.  This document describes the F-RTO detection algorithm for detecting spurious TCP retransmission timeouts.  F-RTO is a TCP sender-only algorithm that does not require any TCP options to operate.  After retransmitting the first unacknowledged segment triggered by a timeout, the F-RTO algorithm of the TCP sender monitors the incoming acknowledgments to determine whether the timeout was spurious.  It then decides whether to send new segments or retransmit unacknowledged segments.  The algorithm effectively helps to avoid additional unnecessary retransmissions and thereby improves TCP performance in the case of a spurious timeout.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5682"/>
          <seriesInfo name="DOI" value="10.17487/RFC5682"/>
        </reference>
        <reference anchor="RFC6298" target="https://www.rfc-editor.org/info/rfc6298">
          <front>
            <title>Computing TCP's Retransmission Timer</title>
            <author initials="V." surname="Paxson" fullname="V. Paxson">
              <organization/>
            </author>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="J." surname="Chu" fullname="J. Chu">
              <organization/>
            </author>
            <author initials="M." surname="Sargent" fullname="M. Sargent">
              <organization/>
            </author>
            <date year="2011" month="June"/>
            <abstract>
              <t>This document defines the standard algorithm that Transmission Control Protocol (TCP) senders are required to use to compute and manage their retransmission timer.  It expands on the discussion in Section 4.2.3.1 of RFC 1122 and upgrades the requirement of supporting the algorithm from a SHOULD to a MUST.  This document obsoletes RFC 2988.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6298"/>
          <seriesInfo name="DOI" value="10.17487/RFC6298"/>
        </reference>
        <reference anchor="RFC5681" target="https://www.rfc-editor.org/info/rfc5681">
          <front>
            <title>TCP Congestion Control</title>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="V." surname="Paxson" fullname="V. Paxson">
              <organization/>
            </author>
            <author initials="E." surname="Blanton" fullname="E. Blanton">
              <organization/>
            </author>
            <date year="2009" month="September"/>
            <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="RFC5827" target="https://www.rfc-editor.org/info/rfc5827">
          <front>
            <title>Early Retransmit for TCP and Stream Control Transmission Protocol (SCTP)</title>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="K." surname="Avrachenkov" fullname="K. Avrachenkov">
              <organization/>
            </author>
            <author initials="U." surname="Ayesta" fullname="U. Ayesta">
              <organization/>
            </author>
            <author initials="J." surname="Blanton" fullname="J. Blanton">
              <organization/>
            </author>
            <author initials="P." surname="Hurtig" fullname="P. Hurtig">
              <organization/>
            </author>
            <date year="2010" month="May"/>
            <abstract>
              <t>This document proposes a new mechanism for TCP and Stream Control Transmission Protocol (SCTP) that can be used to recover lost segments when a connection's congestion window is small.  The "Early Retransmit" mechanism allows the transport to reduce, in certain special circumstances, the number of duplicate acknowledgments required to trigger a fast retransmission.  This allows the transport to use fast retransmit to recover segment losses that would otherwise require a lengthy retransmission timeout.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5827"/>
          <seriesInfo name="DOI" value="10.17487/RFC5827"/>
        </reference>
        <reference anchor="RFC6675" target="https://www.rfc-editor.org/info/rfc6675">
          <front>
            <title>A Conservative Loss Recovery Algorithm Based on Selective Acknowledgment (SACK) for TCP</title>
            <author initials="E." surname="Blanton" fullname="E. Blanton">
              <organization/>
            </author>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="L." surname="Wang" fullname="L. Wang">
              <organization/>
            </author>
            <author initials="I." surname="Jarvinen" fullname="I. Jarvinen">
              <organization/>
            </author>
            <author initials="M." surname="Kojo" fullname="M. Kojo">
              <organization/>
            </author>
            <author initials="Y." surname="Nishida" fullname="Y. Nishida">
              <organization/>
            </author>
            <date year="2012" month="August"/>
            <abstract>
              <t>This document presents a conservative loss recovery algorithm for TCP that is based on the use of the selective acknowledgment (SACK) TCP option.  The algorithm presented in this document conforms to the spirit of the current congestion control specification (RFC 5681), but allows TCP senders to recover more effectively when multiple segments are lost from a single flight of data. This document obsoletes RFC 3517 and describes changes from it.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6675"/>
          <seriesInfo name="DOI" value="10.17487/RFC6675"/>
        </reference>
        <reference anchor="RACK" target="http://www.ietf.org/internet-drafts/draft-ietf-tcpm-rack-14.txt">
          <front>
            <title>The RACK-TLP loss detection algorithm for TCP</title>
            <author initials="Y" surname="Cheng" fullname="Yuchung Cheng">
              <organization/>
            </author>
            <author initials="N" surname="Cardwell" fullname="Neal Cardwell">
              <organization/>
            </author>
            <author initials="N" surname="Dukkipati" fullname="Nandita Dukkipati">
              <organization/>
            </author>
            <author initials="P" surname="Jha" fullname="Priyaranjan Jha">
              <organization/>
            </author>
            <date month="December" day="2" year="2020"/>
            <abstract>
              <t>This document presents the RACK-TLP loss detection algorithm for TCP. RACK-TLP uses per-segment transmit timestamps and selective acknowledgements (SACK) and has two parts: RACK ("Recent ACKnowledgment") starts fast recovery quickly using time-based inferences derived from ACK feedback.  TLP ("Tail Loss Probe") leverages RACK and sends a probe packet to trigger ACK feedback to avoid retransmission timeout (RTO) events.  Compared to the widely used DUPACK threshold approach, RACK-TLP detects losses more efficiently when there are application-limited flights of data, lost retransmissions, or data packet reordering events.  It is intended to be an alternative to the DUPACK threshold approach.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tcpm-rack-14"/>
        </reference>
        <reference anchor="RFC6582" target="https://www.rfc-editor.org/info/rfc6582">
          <front>
            <title>The NewReno Modification to TCP's Fast Recovery Algorithm</title>
            <author initials="T." surname="Henderson" fullname="T. Henderson">
              <organization/>
            </author>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <author initials="A." surname="Gurtov" fullname="A. Gurtov">
              <organization/>
            </author>
            <author initials="Y." surname="Nishida" fullname="Y. Nishida">
              <organization/>
            </author>
            <date year="2012" month="April"/>
            <abstract>
              <t>RFC 5681 documents the following four intertwined TCP congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery.  RFC 5681 explicitly allows certain modifications of these algorithms, including modifications that use the TCP Selective Acknowledgment (SACK) option (RFC 2883), and modifications that respond to "partial acknowledgments" (ACKs that cover new data, but not all the data outstanding when loss was detected) in the absence of SACK.  This document describes a specific algorithm for responding to partial acknowledgments, referred to as "NewReno".  This response to partial acknowledgments was first proposed by Janey Hoe.  This document obsoletes RFC 3782.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6582"/>
          <seriesInfo name="DOI" value="10.17487/RFC6582"/>
        </reference>
        <reference anchor="RFC8312" target="https://www.rfc-editor.org/info/rfc8312">
          <front>
            <title>CUBIC for Fast Long-Distance Networks</title>
            <author initials="I." surname="Rhee" fullname="I. Rhee">
              <organization/>
            </author>
            <author initials="L." surname="Xu" fullname="L. Xu">
              <organization/>
            </author>
            <author initials="S." surname="Ha" fullname="S. Ha">
              <organization/>
            </author>
            <author initials="A." surname="Zimmermann" fullname="A. Zimmermann">
              <organization/>
            </author>
            <author initials="L." surname="Eggert" fullname="L. Eggert">
              <organization/>
            </author>
            <author initials="R." surname="Scheffenegger" fullname="R. Scheffenegger">
              <organization/>
            </author>
            <date year="2018" month="February"/>
            <abstract>
              <t>CUBIC is an extension to the current TCP standards.  It differs from the current TCP standards only in the congestion control algorithm on the sender side.  In particular, it uses a cubic function instead of a linear window increase function of the current TCP standards to improve scalability and stability under fast and long-distance networks.  CUBIC and its predecessor algorithm have been adopted as defaults by Linux and have been used for many years.  This document provides a specification of CUBIC to enable third-party implementations and to solicit community feedback through experimentation on the performance of CUBIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8312"/>
          <seriesInfo name="DOI" value="10.17487/RFC8312"/>
        </reference>
        <reference anchor="RFC8311" target="https://www.rfc-editor.org/info/rfc8311">
          <front>
            <title>Relaxing Restrictions on Explicit Congestion Notification (ECN) Experimentation</title>
            <author initials="D." surname="Black" fullname="D. Black">
              <organization/>
            </author>
            <date year="2018" month="January"/>
            <abstract>
              <t>This memo updates RFC 3168, which specifies Explicit Congestion Notification (ECN) as an alternative to packet drops for indicating network congestion to endpoints.  It relaxes restrictions in RFC 3168 that hinder experimentation towards benefits beyond just removal of loss.  This memo summarizes the anticipated areas of experimentation and updates RFC 3168 to enable experimentation in these areas.  An Experimental RFC in the IETF document stream is required to take advantage of any of these enabling updates.  In addition, this memo makes related updates to the ECN specifications for RTP in RFC 6679 and for the Datagram Congestion Control Protocol (DCCP) in RFCs 4341, 4342, and 5622.  This memo also records the conclusion of the ECN nonce experiment in RFC 3540 and provides the rationale for reclassification of RFC 3540 from Experimental to Historic; this reclassification enables new experimental use of the ECT(1) codepoint.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8311"/>
          <seriesInfo name="DOI" value="10.17487/RFC8311"/>
        </reference>
        <reference anchor="RFC6928" target="https://www.rfc-editor.org/info/rfc6928">
          <front>
            <title>Increasing TCP's Initial Window</title>
            <author initials="J." surname="Chu" fullname="J. Chu">
              <organization/>
            </author>
            <author initials="N." surname="Dukkipati" fullname="N. Dukkipati">
              <organization/>
            </author>
            <author initials="Y." surname="Cheng" fullname="Y. Cheng">
              <organization/>
            </author>
            <author initials="M." surname="Mathis" fullname="M. Mathis">
              <organization/>
            </author>
            <date year="2013" month="April"/>
            <abstract>
              <t>This document proposes an experiment to increase the permitted TCP initial window (IW) from between 2 and 4 segments, as specified in RFC 3390, to 10 segments with a fallback to the existing recommendation when performance issues are detected.  It discusses the motivation behind the increase, the advantages and disadvantages of the higher initial window, and presents results from several large-scale experiments showing that the higher initial window improves the overall performance of many web services without resulting in a congestion collapse.  The document closes with a discussion of usage and deployment for further experimental purposes recommended by the IETF TCP Maintenance and Minor Extensions (TCPM) working group.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6928"/>
          <seriesInfo name="DOI" value="10.17487/RFC6928"/>
        </reference>
        <reference anchor="PRR" target="https://www.rfc-editor.org/info/rfc6937">
          <front>
            <title>Proportional Rate Reduction for TCP</title>
            <author initials="M." surname="Mathis" fullname="M. Mathis">
              <organization/>
            </author>
            <author initials="N." surname="Dukkipati" fullname="N. Dukkipati">
              <organization/>
            </author>
            <author initials="Y." surname="Cheng" fullname="Y. Cheng">
              <organization/>
            </author>
            <date year="2013" month="May"/>
            <abstract>
              <t>This document describes an experimental Proportional Rate Reduction (PRR) algorithm as an alternative to the widely deployed Fast Recovery and Rate-Halving algorithms.  These algorithms determine the amount of data sent by TCP during loss recovery.  PRR minimizes excess window adjustments, and the actual window size at the end of recovery will be as close as possible to the ssthresh, as determined by the congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6937"/>
          <seriesInfo name="DOI" value="10.17487/RFC6937"/>
        </reference>
        <reference anchor="RFC7661" target="https://www.rfc-editor.org/info/rfc7661">
          <front>
            <title>Updating TCP to Support Rate-Limited Traffic</title>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <author initials="A." surname="Sathiaseelan" fullname="A. Sathiaseelan">
              <organization/>
            </author>
            <author initials="R." surname="Secchi" fullname="R. Secchi">
              <organization/>
            </author>
            <date year="2015" month="October"/>
            <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="RFC8511" target="https://www.rfc-editor.org/info/rfc8511">
          <front>
            <title>TCP Alternative Backoff with ECN (ABE)</title>
            <author initials="N." surname="Khademi" fullname="N. Khademi">
              <organization/>
            </author>
            <author initials="M." surname="Welzl" fullname="M. Welzl">
              <organization/>
            </author>
            <author initials="G." surname="Armitage" fullname="G. Armitage">
              <organization/>
            </author>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <date year="2018" month="December"/>
            <abstract>
              <t>Active Queue Management (AQM) mechanisms allow for burst tolerance while enforcing short queues to minimise the time that packets spend enqueued at a bottleneck.  This can cause noticeable performance degradation for TCP connections traversing such a bottleneck, especially if there are only a few flows or their bandwidth-delay product (BDP) is large.  The reception of a Congestion Experienced (CE) Explicit Congestion Notification (ECN) mark indicates that an AQM mechanism is used at the bottleneck, and the bottleneck network queue is therefore likely to be short.  Feedback of this signal allows the TCP sender-side ECN reaction in congestion avoidance to reduce the Congestion Window (cwnd) by a smaller amount than the congestion control algorithm's reaction to inferred packet loss. Therefore, this specification defines an experimental change to the TCP reaction specified in RFC 3168, as permitted by RFC 8311.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8511"/>
          <seriesInfo name="DOI" value="10.17487/RFC8511"/>
        </reference>
        <reference anchor="RFC3465" target="https://www.rfc-editor.org/info/rfc3465">
          <front>
            <title>TCP Congestion Control with Appropriate Byte Counting (ABC)</title>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <date year="2003" month="February"/>
            <abstract>
              <t>This document proposes a small modification to the way TCP increases its congestion window.  Rather than the traditional method of increasing the congestion window by a constant amount for each arriving acknowledgment, the document suggests basing the increase on the number of previously unacknowledged bytes each ACK covers.  This change improves the performance of TCP, as well as closes a security hole TCP receivers can use to induce the sender into increasing the sending rate too rapidly. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3465"/>
          <seriesInfo name="DOI" value="10.17487/RFC3465"/>
        </reference>
      </references>
    </references>
    <section anchor="loss-recovery-pseudocode" numbered="true" toc="default">
      <name>Loss Recovery Pseudocode</name>
      <t>We now describe an example implementation of the loss detection mechanisms
described in <xref target="loss-detection" format="default"/>.</t>
      <t>The pseudocode segments in this section are licensed as Code Components; see the
copyright notice.</t>
      <section anchor="tracking-sent-packets" numbered="true" toc="default">
        <name>Tracking Sent Packets</name>
        <t>To correctly implement congestion control, a QUIC sender tracks every
ack-eliciting packet until the packet is acknowledged or lost.
It is expected that implementations will be able to access this information by
packet number and crypto context and store the per-packet fields
(<xref target="sent-packets-fields" format="default"/>) for loss recovery and congestion control.</t>
        <t>After a packet is declared lost, the endpoint can still maintain state for it
for an amount of time to allow for packet reordering; see Section 13.3 of
<xref target="QUIC-TRANSPORT" format="default"/>. This enables a sender to detect spurious retransmissions.</t>
        <t>Sent packets are tracked for each packet number space, and ACK
processing only applies to a single space.</t>
        <section anchor="sent-packets-fields" numbered="true" toc="default">
          <name>Sent Packet Fields</name>
          <dl>
            <dt>
packet_number:  </dt>
            <dd>
              <t>The packet number of the sent packet.</t>
            </dd>
            <dt>
ack_eliciting:  </dt>
            <dd>
              <t>A boolean that indicates whether a packet is ack-eliciting.
If true, it is expected that an acknowledgement will be received,
though the peer could delay sending the ACK frame containing it
by up to the max_ack_delay.</t>
            </dd>
            <dt>
in_flight:  </dt>
            <dd>
              <t>A boolean that indicates whether the packet counts towards bytes in
flight.</t>
            </dd>
            <dt>
sent_bytes:  </dt>
            <dd>
              <t>The number of bytes sent in the packet, not including UDP or IP
overhead, but including QUIC framing overhead.</t>
            </dd>
            <dt>
time_sent:  </dt>
            <dd>
              <t>The time the packet was sent.</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="constants-of-interest" numbered="true" toc="default">
        <name>Constants of Interest</name>
        <t>Constants used in loss recovery are based on a combination of RFCs, papers, and
common practice.</t>
        <dl>
          <dt>
kPacketThreshold:  </dt>
          <dd>
            <t>Maximum reordering in packets before packet threshold loss detection
considers a packet lost. The value recommended in <xref target="packet-threshold" format="default"/> is 3.</t>
          </dd>
          <dt>
kTimeThreshold:  </dt>
          <dd>
            <t>Maximum reordering in time before time threshold loss detection
considers a packet lost. Specified as an RTT multiplier. The value
recommended in <xref target="time-threshold" format="default"/> is 9/8.</t>
          </dd>
          <dt>
kGranularity:  </dt>
          <dd>
            <t>Timer granularity. This is a system-dependent value, and <xref target="time-threshold" format="default"/>
recommends a value of 1ms.</t>
          </dd>
          <dt>
kInitialRtt:  </dt>
          <dd>
            <t>The RTT used before an RTT sample is taken. The value recommended in
<xref target="pto-handshake" format="default"/> is 333ms.</t>
          </dd>
          <dt>
kPacketNumberSpace:  </dt>
          <dd>
            <t>An enum to enumerate the three packet number spaces.</t>
          </dd>
        </dl>
        <artwork name="" type="" align="left" alt=""><![CDATA[
enum kPacketNumberSpace {
  Initial,
  Handshake,
  ApplicationData,
}
]]></artwork>
      </section>
      <section anchor="ld-vars-of-interest" numbered="true" toc="default">
        <name>Variables of interest</name>
        <t>Variables required to implement the congestion control mechanisms
are described in this section.</t>
        <dl>
          <dt>
latest_rtt:  </dt>
          <dd>
            <t>The most recent RTT measurement made when receiving an ack for
a previously unacked packet.</t>
          </dd>
          <dt>
smoothed_rtt:  </dt>
          <dd>
            <t>The smoothed RTT of the connection, computed as described in
<xref target="smoothed-rtt" format="default"/>.</t>
          </dd>
          <dt>
rttvar:  </dt>
          <dd>
            <t>The RTT variation, computed as described in <xref target="smoothed-rtt" format="default"/>.</t>
          </dd>
          <dt>
min_rtt:  </dt>
          <dd>
            <t>The minimum RTT seen in the connection, ignoring acknowledgment delay, as
described in <xref target="min-rtt" format="default"/>.</t>
          </dd>
          <dt>
first_rtt_sample:  </dt>
          <dd>
            <t>The time that the first RTT sample was obtained.</t>
          </dd>
          <dt>
max_ack_delay:  </dt>
          <dd>
            <t>The maximum amount of time by which the receiver intends to delay
acknowledgments for packets in the Application Data packet number
space, as defined by the eponymous transport parameter (Section 18.2
of <xref target="QUIC-TRANSPORT" format="default"/>). Note that the actual ack_delay in a received
ACK frame may be larger due to late timers, reordering, or loss.</t>
          </dd>
          <dt>
loss_detection_timer:  </dt>
          <dd>
            <t>Multi-modal timer used for loss detection.</t>
          </dd>
          <dt>
pto_count:  </dt>
          <dd>
            <t>The number of times a PTO has been sent without receiving an ack.</t>
          </dd>
          <dt>
time_of_last_ack_eliciting_packet[kPacketNumberSpace]:  </dt>
          <dd>
            <t>The time the most recent ack-eliciting packet was sent.</t>
          </dd>
          <dt>
largest_acked_packet[kPacketNumberSpace]:  </dt>
          <dd>
            <t>The largest packet number acknowledged in the packet number space so far.</t>
          </dd>
          <dt>
loss_time[kPacketNumberSpace]:  </dt>
          <dd>
            <t>The time at which the next packet in that packet number space will be
considered lost based on exceeding the reordering window in time.</t>
          </dd>
          <dt>
sent_packets[kPacketNumberSpace]:  </dt>
          <dd>
            <t>An association of packet numbers in a packet number space to information
about them.  Described in detail above in <xref target="tracking-sent-packets" format="default"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="initialization" numbered="true" toc="default">
        <name>Initialization</name>
        <t>At the beginning of the connection, initialize the loss detection variables as
follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
loss_detection_timer.reset()
pto_count = 0
latest_rtt = 0
smoothed_rtt = kInitialRtt
rttvar = kInitialRtt / 2
min_rtt = 0
first_rtt_sample = 0
for pn_space in [ Initial, Handshake, ApplicationData ]:
  largest_acked_packet[pn_space] = infinite
  time_of_last_ack_eliciting_packet[pn_space] = 0
  loss_time[pn_space] = 0
]]></artwork>
      </section>
      <section anchor="on-sending-a-packet" numbered="true" toc="default">
        <name>On Sending a Packet</name>
        <t>After a packet is sent, information about the packet is stored.  The parameters
to OnPacketSent are described in detail above in <xref target="sent-packets-fields" format="default"/>.</t>
        <t>Pseudocode for OnPacketSent follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnPacketSent(packet_number, pn_space, ack_eliciting,
             in_flight, sent_bytes):
  sent_packets[pn_space][packet_number].packet_number =
                                           packet_number
  sent_packets[pn_space][packet_number].time_sent = now()
  sent_packets[pn_space][packet_number].ack_eliciting =
                                           ack_eliciting
  sent_packets[pn_space][packet_number].in_flight = in_flight
  sent_packets[pn_space][packet_number].sent_bytes = sent_bytes
  if (in_flight):
    if (ack_eliciting):
      time_of_last_ack_eliciting_packet[pn_space] = now()
    OnPacketSentCC(sent_bytes)
    SetLossDetectionTimer()
]]></artwork>
      </section>
      <section anchor="on-receiving-a-datagram" numbered="true" toc="default">
        <name>On Receiving a Datagram</name>
        <t>When a server is blocked by anti-amplification limits, receiving
a datagram unblocks it, even if none of the packets in the
datagram are successfully processed. In such a case, the PTO
timer will need to be re-armed.</t>
        <t>Pseudocode for OnDatagramReceived follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnDatagramReceived(datagram):
  // If this datagram unblocks the server, arm the
  // PTO timer to avoid deadlock.
  if (server was at anti-amplification limit):
    SetLossDetectionTimer()
]]></artwork>
      </section>
      <section anchor="on-receiving-an-acknowledgment" numbered="true" toc="default">
        <name>On Receiving an Acknowledgment</name>
        <t>When an ACK frame is received, it may newly acknowledge any number of packets.</t>
        <t>Pseudocode for OnAckReceived and UpdateRtt follow:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
IncludesAckEliciting(packets):
  for packet in packets:
    if (packet.ack_eliciting):
      return true
  return false

OnAckReceived(ack, pn_space):
  if (largest_acked_packet[pn_space] == infinite):
    largest_acked_packet[pn_space] = ack.largest_acked
  else:
    largest_acked_packet[pn_space] =
        max(largest_acked_packet[pn_space], ack.largest_acked)

  // DetectAndRemoveAckedPackets finds packets that are newly
  // acknowledged and removes them from sent_packets.
  newly_acked_packets =
      DetectAndRemoveAckedPackets(ack, pn_space)
  // Nothing to do if there are no newly acked packets.
  if (newly_acked_packets.empty()):
    return

  // Update the RTT if the largest acknowledged is newly acked
  // and at least one ack-eliciting was newly acked.
  if (newly_acked_packets.largest().packet_number ==
          ack.largest_acked &&
      IncludesAckEliciting(newly_acked_packets)):
    latest_rtt =
      now() - newly_acked_packets.largest().time_sent
    UpdateRtt(ack.ack_delay)

  // Process ECN information if present.
  if (ACK frame contains ECN information):
      ProcessECN(ack, pn_space)

  lost_packets = DetectAndRemoveLostPackets(pn_space)
  if (!lost_packets.empty()):
    OnPacketsLost(lost_packets)
  OnPacketsAcked(newly_acked_packets)

  // Reset pto_count unless the client is unsure if
  // the server has validated the client's address.
  if (PeerCompletedAddressValidation()):
    pto_count = 0
  SetLossDetectionTimer()


UpdateRtt(ack_delay):
  if (first_rtt_sample == 0):
    min_rtt = latest_rtt
    smoothed_rtt = latest_rtt
    rttvar = latest_rtt / 2
    first_rtt_sample = now()
    return

  // min_rtt ignores acknowledgment delay.
  min_rtt = min(min_rtt, latest_rtt)
  // Limit ack_delay by max_ack_delay after handshake
  // confirmation. Note that ack_delay is 0 for
  // acknowledgements of Initial and Handshake packets.
  if (handshake confirmed):
    ack_delay = min(ack_delay, max_ack_delay)

  // Adjust for acknowledgment delay if plausible.
  adjusted_rtt = latest_rtt
  if (latest_rtt > min_rtt + ack_delay):
    adjusted_rtt = latest_rtt - ack_delay

  rttvar = 3/4 * rttvar + 1/4 * abs(smoothed_rtt - adjusted_rtt)
  smoothed_rtt = 7/8 * smoothed_rtt + 1/8 * adjusted_rtt
]]></artwork>
      </section>
      <section anchor="setting-the-loss-detection-timer" numbered="true" toc="default">
        <name>Setting the Loss Detection Timer</name>
        <t>QUIC loss detection uses a single timer for all timeout loss detection.  The
duration of the timer is based on the timer's mode, which is set in the packet
and timer events further below.  The function SetLossDetectionTimer defined
below shows how the single timer is set.</t>
        <t>This algorithm may result in the timer being set in the past, particularly if
timers wake up late. Timers set in the past fire immediately.</t>
        <t>Pseudocode for SetLossDetectionTimer follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
GetLossTimeAndSpace():
  time = loss_time[Initial]
  space = Initial
  for pn_space in [ Handshake, ApplicationData ]:
    if (time == 0 || loss_time[pn_space] < time):
      time = loss_time[pn_space];
      space = pn_space
  return time, space

GetPtoTimeAndSpace():
  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
      * (2 ^ pto_count)
  // Arm PTO from now when there are no inflight packets.
  if (no in-flight packets):
    assert(!PeerCompletedAddressValidation())
    if (has handshake keys):
      return (now() + duration), Handshake
    else:
      return (now() + duration), Initial
  pto_timeout = infinite
  pto_space = Initial
  for space in [ Initial, Handshake, ApplicationData ]:
    if (no in-flight packets in space):
        continue;
    if (space == ApplicationData):
      // Skip Application Data until handshake confirmed.
      if (handshake is not confirmed):
        return pto_timeout, pto_space
      // Include max_ack_delay and backoff for Application Data.
      duration += max_ack_delay * (2 ^ pto_count)

    t = time_of_last_ack_eliciting_packet[space] + duration
    if (t < pto_timeout):
      pto_timeout = t
      pto_space = space
  return pto_timeout, pto_space

PeerCompletedAddressValidation():
  // Assume clients validate the server's address implicitly.
  if (endpoint is server):
    return true
  // Servers complete address validation when a
  // protected packet is received.
  return has received Handshake ACK ||
       handshake confirmed

SetLossDetectionTimer():
  earliest_loss_time, _ = GetLossTimeAndSpace()
  if (earliest_loss_time != 0):
    // Time threshold loss detection.
    loss_detection_timer.update(earliest_loss_time)
    return

  if (server is at anti-amplification limit):
    // The server's timer is not set if nothing can be sent.
    loss_detection_timer.cancel()
    return

  if (no ack-eliciting packets in flight &&
      PeerCompletedAddressValidation()):
    // There is nothing to detect lost, so no timer is set.
    // However, the client needs to arm the timer if the
    // server might be blocked by the anti-amplification limit.
    loss_detection_timer.cancel()
    return

  // Determine which PN space to arm PTO for.
  timeout, _ = GetPtoTimeAndSpace()
  loss_detection_timer.update(timeout)
]]></artwork>
      </section>
      <section anchor="on-timeout" numbered="true" toc="default">
        <name>On Timeout</name>
        <t>When the loss detection timer expires, the timer's mode determines the action
to be performed.</t>
        <t>Pseudocode for OnLossDetectionTimeout follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnLossDetectionTimeout():
  earliest_loss_time, pn_space = GetLossTimeAndSpace()
  if (earliest_loss_time != 0):
    // Time threshold loss Detection
    lost_packets = DetectAndRemoveLostPackets(pn_space)
    assert(!lost_packets.empty())
    OnPacketsLost(lost_packets)
    SetLossDetectionTimer()
    return

  if (bytes_in_flight > 0):
    // PTO. Send new data if available, else retransmit old data.
    // If neither is available, send a single PING frame.
    _, pn_space = GetPtoTimeAndSpace()
    SendOneOrTwoAckElicitingPackets(pn_space)
  else:
    assert(!PeerCompletedAddressValidation())
    // Client sends an anti-deadlock packet: Initial is padded
    // to earn more anti-amplification credit,
    // a Handshake packet proves address ownership.
    if (has Handshake keys):
      SendOneAckElicitingHandshakePacket()
    else:
      SendOneAckElicitingPaddedInitialPacket()

  pto_count++
  SetLossDetectionTimer()
]]></artwork>
      </section>
      <section anchor="detecting-lost-packets" numbered="true" toc="default">
        <name>Detecting Lost Packets</name>
        <t>DetectAndRemoveLostPackets is called every time an ACK is received or the time
threshold loss detection timer expires. This function operates on the
sent_packets for that packet number space and returns a list of packets newly
detected as lost.</t>
        <t>Pseudocode for DetectAndRemoveLostPackets follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
DetectAndRemoveLostPackets(pn_space):
  assert(largest_acked_packet[pn_space] != infinite)
  loss_time[pn_space] = 0
  lost_packets = []
  loss_delay = kTimeThreshold * max(latest_rtt, smoothed_rtt)

  // Minimum time of kGranularity before packets are deemed lost.
  loss_delay = max(loss_delay, kGranularity)

  // Packets sent before this time are deemed lost.
  lost_send_time = now() - loss_delay

  foreach unacked in sent_packets[pn_space]:
    if (unacked.packet_number > largest_acked_packet[pn_space]):
      continue

    // Mark packet as lost, or set time when it should be marked.
    // Note: The use of kPacketThreshold here assumes that there
    // were no sender-induced gaps in the packet number space.
    if (unacked.time_sent <= lost_send_time ||
        largest_acked_packet[pn_space] >=
          unacked.packet_number + kPacketThreshold):
      sent_packets[pn_space].remove(unacked.packet_number)
      lost_packets.insert(unacked)
    else:
      if (loss_time[pn_space] == 0):
        loss_time[pn_space] = unacked.time_sent + loss_delay
      else:
        loss_time[pn_space] = min(loss_time[pn_space],
                                  unacked.time_sent + loss_delay)
  return lost_packets
]]></artwork>
      </section>
      <section anchor="upon-dropping-initial-or-handshake-keys" numbered="true" toc="default">
        <name>Upon Dropping Initial or Handshake Keys</name>
        <t>When Initial or Handshake keys are discarded, packets from the space
are discarded and loss detection state is updated.</t>
        <t>Pseudocode for OnPacketNumberSpaceDiscarded follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnPacketNumberSpaceDiscarded(pn_space):
  assert(pn_space != ApplicationData)
  RemoveFromBytesInFlight(sent_packets[pn_space])
  sent_packets[pn_space].clear()
  // Reset the loss detection and PTO timer
  time_of_last_ack_eliciting_packet[pn_space] = 0
  loss_time[pn_space] = 0
  pto_count = 0
  SetLossDetectionTimer()
]]></artwork>
      </section>
    </section>
    <section anchor="congestion-control-pseudocode" numbered="true" toc="default">
      <name>Congestion Control Pseudocode</name>
      <t>We now describe an example implementation of the congestion controller described
in <xref target="congestion-control" format="default"/>.</t>
      <t>The pseudocode segments in this section are licensed as Code Components; see the
copyright notice.</t>
      <section anchor="cc-consts-of-interest" numbered="true" toc="default">
        <name>Constants of interest</name>
        <t>Constants used in congestion control are based on a combination of RFCs, papers,
and common practice.</t>
        <dl>
          <dt>
kInitialWindow:  </dt>
          <dd>
            <t>Default limit on the initial bytes in flight as described in <xref target="initial-cwnd" format="default"/>.</t>
          </dd>
          <dt>
kMinimumWindow:  </dt>
          <dd>
            <t>Minimum congestion window in bytes as described in <xref target="initial-cwnd" format="default"/>.</t>
          </dd>
          <dt>
kLossReductionFactor:  </dt>
          <dd>
            <t>Reduction in congestion window when a new loss event is detected.
<xref target="congestion-control" format="default"/> recommends a value is 0.5.</t>
          </dd>
          <dt>
kPersistentCongestionThreshold:  </dt>
          <dd>
            <t>Period of time for persistent congestion to be established, specified as a PTO
multiplier. <xref target="persistent-congestion" format="default"/> recommends a value of 3.</t>
          </dd>
        </dl>
      </section>
      <section anchor="vars-of-interest" numbered="true" toc="default">
        <name>Variables of interest</name>
        <t>Variables required to implement the congestion control mechanisms
are described in this section.</t>
        <dl>
          <dt>
max_datagram_size:  </dt>
          <dd>
            <t>The sender's current maximum payload size. Does not include UDP or IP
overhead.  The max datagram size is used for congestion window
computations. An endpoint sets the value of this variable based on its Path
Maximum Transmission Unit (PMTU; see Section 14.2 of <xref target="QUIC-TRANSPORT" format="default"/>), with
a minimum value of 1200 bytes.</t>
          </dd>
          <dt>
ecn_ce_counters[kPacketNumberSpace]:  </dt>
          <dd>
            <t>The highest value reported for the ECN-CE counter in the packet number space
by the peer in an ACK frame. This value is used to detect increases in the
reported ECN-CE counter.</t>
          </dd>
          <dt>
bytes_in_flight:  </dt>
          <dd>
            <t>The sum of the size in bytes of all sent packets that contain at least one
ack-eliciting or PADDING frame, and have not been acknowledged or declared
lost. The size does not include IP or UDP overhead, but does include the QUIC
header and AEAD overhead.  Packets only containing ACK frames do not count
towards bytes_in_flight to ensure congestion control does not impede
congestion feedback.</t>
          </dd>
          <dt>
congestion_window:  </dt>
          <dd>
            <t>Maximum number of bytes-in-flight that may be sent.</t>
          </dd>
          <dt>
congestion_recovery_start_time:  </dt>
          <dd>
            <t>The time when QUIC first detects congestion due to loss or ECN, causing
it to enter congestion recovery. When a packet sent after this time is
acknowledged, QUIC exits congestion recovery.</t>
          </dd>
          <dt>
ssthresh:  </dt>
          <dd>
            <t>Slow start threshold in bytes.  When the congestion window is below ssthresh,
the mode is slow start and the window grows by the number of bytes
acknowledged.</t>
          </dd>
        </dl>
        <t>The congestion control pseudocode also accesses some of the variables from the
loss recovery pseudocode.</t>
      </section>
      <section anchor="initialization-1" numbered="true" toc="default">
        <name>Initialization</name>
        <t>At the beginning of the connection, initialize the congestion control
variables as follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
congestion_window = kInitialWindow
bytes_in_flight = 0
congestion_recovery_start_time = 0
ssthresh = infinite
for pn_space in [ Initial, Handshake, ApplicationData ]:
  ecn_ce_counters[pn_space] = 0
]]></artwork>
      </section>
      <section anchor="on-packet-sent" numbered="true" toc="default">
        <name>On Packet Sent</name>
        <t>Whenever a packet is sent, and it contains non-ACK frames, the packet
increases bytes_in_flight.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnPacketSentCC(sent_bytes):
  bytes_in_flight += sent_bytes
]]></artwork>
      </section>
      <section anchor="on-packet-acknowledgement" numbered="true" toc="default">
        <name>On Packet Acknowledgement</name>
        <t>Invoked from loss detection's OnAckReceived and is supplied with the
newly acked_packets from sent_packets.</t>
        <t>In congestion avoidance, implementers that use an integer representation
for congestion_window should be careful with division, and can use
the alternative approach suggested in Section 2.1 of <xref target="RFC3465" format="default"/>.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
InCongestionRecovery(sent_time):
  return sent_time <= congestion_recovery_start_time

OnPacketsAcked(acked_packets):
  for acked_packet in acked_packets:
    OnPacketAcked(acked_packet)

OnPacketAcked(acked_packet):
  if (!acked_packet.in_flight):
    return;
  // Remove from bytes_in_flight.
  bytes_in_flight -= acked_packet.sent_bytes
  // Do not increase congestion_window if application
  // limited or flow control limited.
  if (IsAppOrFlowControlLimited())
    return
  // Do not increase congestion window in recovery period.
  if (InCongestionRecovery(acked_packet.time_sent)):
    return
  if (congestion_window < ssthresh):
    // Slow start.
    congestion_window += acked_packet.sent_bytes
  else:
    // Congestion avoidance.
    congestion_window +=
      max_datagram_size * acked_packet.sent_bytes
      / congestion_window
]]></artwork>
      </section>
      <section anchor="on-new-congestion-event" numbered="true" toc="default">
        <name>On New Congestion Event</name>
        <t>Invoked from ProcessECN and OnPacketsLost when a new congestion event is
detected. If not already in recovery, this starts a recovery period and
reduces the slow start threshold and congestion window immediately.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnCongestionEvent(sent_time):
  // No reaction if already in a recovery period.
  if (InCongestionRecovery(sent_time)):
    return

  // Enter recovery period.
  congestion_recovery_start_time = now()
  ssthresh = congestion_window * kLossReductionFactor
  congestion_window = max(ssthresh, kMinimumWindow)
  // A packet can be sent to speed up loss recovery.
  MaybeSendOnePacket()
]]></artwork>
      </section>
      <section anchor="process-ecn-information" numbered="true" toc="default">
        <name>Process ECN Information</name>
        <t>Invoked when an ACK frame with an ECN section is received from the peer.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
ProcessECN(ack, pn_space):
  // If the ECN-CE counter reported by the peer has increased,
  // this could be a new congestion event.
  if (ack.ce_counter > ecn_ce_counters[pn_space]):
    ecn_ce_counters[pn_space] = ack.ce_counter
    sent_time = sent_packets[ack.largest_acked].time_sent
    OnCongestionEvent(sent_time)
]]></artwork>
      </section>
      <section anchor="on-packets-lost" numbered="true" toc="default">
        <name>On Packets Lost</name>
        <t>Invoked when DetectAndRemoveLostPackets deems packets lost.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
OnPacketsLost(lost_packets):
  sent_time_of_last_loss = 0
  // Remove lost packets from bytes_in_flight.
  for lost_packet in lost_packets:
    if lost_packet.in_flight:
      bytes_in_flight -= lost_packet.sent_bytes
      sent_time_of_last_loss =
        max(sent_time_of_last_loss, lost_packet.time_sent)
  // Congestion event if in-flight packets were lost
  if (sent_time_of_last_loss != 0):
    OnCongestionEvent(sent_time_of_last_loss)

  // Reset the congestion window if the loss of these
  // packets indicates persistent congestion.
  // Only consider packets sent after getting an RTT sample.
  if (first_rtt_sample == 0):
    return
  pc_lost = []
  for lost in lost_packets:
    if lost.time_sent > first_rtt_sample:
      pc_lost.insert(lost)
  if (InPersistentCongestion(pc_lost)):
    congestion_window = kMinimumWindow
    congestion_recovery_start_time = 0
]]></artwork>
      </section>
      <section anchor="removing-discarded-packets-from-bytes-in-flight" numbered="true" toc="default">
        <name>Removing Discarded Packets From Bytes In Flight</name>
        <t>When Initial or Handshake keys are discarded, packets sent in that space no
longer count toward bytes in flight.</t>
        <t>Pseudocode for RemoveFromBytesInFlight follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoveFromBytesInFlight(discarded_packets):
  // Remove any unacknowledged packets from flight.
  foreach packet in discarded_packets:
    if packet.in_flight
      bytes_in_flight -= size
]]></artwork>
      </section>
    </section>
    <section anchor="change-log" numbered="true" toc="default">
      <name>Change Log</name>
      <ul empty="true" spacing="normal">
        <li>
          <strong>RFC Editor's Note:</strong>  Please remove this section prior to
publication of a final version of this document.</li>
      </ul>
      <t>Issue and pull request numbers are listed with a leading octothorp.</t>
      <section anchor="since-draft-ietf-quic-recovery-32" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-32</name>
        <ul spacing="normal">
          <li>Clarifications to definition of persistent congestion (#4413, #4414, #4421,
#4429, #4437)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-31" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-31</name>
        <ul spacing="normal">
          <li>Limit the number of Initial packets sent in response to unauthenticated
packets (#4183, #4188)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-30" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-30</name>
        <t>Editorial changes only.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-29" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-29</name>
        <ul spacing="normal">
          <li>Allow caching of packets that can't be decrypted, by allowing the reported
acknowledgment delay to exceed max_ack_delay prior to confirming the
handshake (#3821, #3980, #4035, #3874)</li>
          <li>Persistent congestion cannot include packets sent before the first RTT
sample for the path (#3875, #3889)</li>
          <li>Recommend reset of min_rtt in persistent congestion (#3927, #3975)</li>
          <li>Persistent congestion is independent of packet number space (#3939, #3961)</li>
          <li>Only limit bursts to the initial window without information about the path
(#3892, #3936)</li>
          <li>Add normative requirements for increasing and reducing the congestion
window (#3944, #3978, #3997, #3998)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-28" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-28</name>
        <ul spacing="normal">
          <li>Refactored pseudocode to correct PTO calculation (#3564, #3674, #3681)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-27" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-27</name>
        <ul spacing="normal">
          <li>Added recommendations for speeding up handshake under some loss conditions
(#3078, #3080)</li>
          <li>PTO count is reset when handshake progress is made (#3272, #3415)</li>
          <li>PTO count is not reset by a client when the server might be awaiting
address validation (#3546, #3551)</li>
          <li>Recommend repairing losses immediately after entering the recovery period
(#3335, #3443)</li>
          <li>Clarified what loss conditions can be ignored during the handshake (#3456,
#3450)</li>
          <li>Allow, but don't recommend, using RTT from previous connection to seed RTT
(#3464, #3496)</li>
          <li>Recommend use of adaptive loss detection thresholds (#3571, #3572)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-26" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-26</name>
        <t>No changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-25" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-25</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-24" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-24</name>
        <ul spacing="normal">
          <li>Require congestion control of some sort (#3247, #3244, #3248)</li>
          <li>Set a minimum reordering threshold (#3256, #3240)</li>
          <li>PTO is specific to a packet number space (#3067, #3074, #3066)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-23" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-23</name>
        <ul spacing="normal">
          <li>Define under-utilizing the congestion window (#2630, #2686, #2675)</li>
          <li>PTO MUST send data if possible (#3056, #3057)</li>
          <li>Connection Close is not ack-eliciting (#3097, #3098)</li>
          <li>MUST limit bursts to the initial congestion window (#3160)</li>
          <li>Define the current max_datagram_size for congestion control
(#3041, #3167)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-22" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-22</name>
        <ul spacing="normal">
          <li>PTO should always send an ack-eliciting packet (#2895)</li>
          <li>Unify the Handshake Timer with the PTO timer (#2648, #2658, #2886)</li>
          <li>Move ACK generation text to transport draft (#1860, #2916)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-21" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-21</name>
        <ul spacing="normal">
          <li>No changes</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-20" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-20</name>
        <ul spacing="normal">
          <li>Path validation can be used as initial RTT value (#2644, #2687)</li>
          <li>max_ack_delay transport parameter defaults to 0 (#2638, #2646)</li>
          <li>ACK delay only measures intentional delays induced by the implementation
(#2596, #2786)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-19" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-19</name>
        <ul spacing="normal">
          <li>Change kPersistentThreshold from an exponent to a multiplier (#2557)</li>
          <li>Send a PING if the PTO timer fires and there's nothing to send (#2624)</li>
          <li>Set loss delay to at least kGranularity (#2617)</li>
          <li>Merge application limited and sending after idle sections. Always limit
burst size instead of requiring resetting CWND to initial CWND after
idle (#2605)</li>
          <li>Rewrite RTT estimation, allow RTT samples where a newly acked packet is
ack-eliciting but the largest_acked is not (#2592)</li>
          <li>Don't arm the handshake timer if there is no handshake data (#2590)</li>
          <li>Clarify that the time threshold loss alarm takes precedence over the
crypto handshake timer (#2590, #2620)</li>
          <li>Change initial RTT to 500ms to align with RFC6298 (#2184)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-18" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-18</name>
        <ul spacing="normal">
          <li>Change IW byte limit to 14720 from 14600 (#2494)</li>
          <li>Update PTO calculation to match RFC6298 (#2480, #2489, #2490)</li>
          <li>Improve loss detection's description of multiple packet number spaces and
pseudocode (#2485, #2451, #2417)</li>
          <li>Declare persistent congestion even if non-probe packets are sent and don't
make persistent congestion more aggressive than RTO verified was (#2365,
#2244)</li>
          <li>Move pseudocode to the appendices (#2408)</li>
          <li>What to send on multiple PTOs (#2380)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-17" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-17</name>
        <ul spacing="normal">
          <li>After Probe Timeout discard in-flight packets or send another (#2212, #1965)</li>
          <li>Endpoints discard initial keys as soon as handshake keys are available (#1951,
#2045)</li>
          <li>0-RTT state is discarded when 0-RTT is rejected (#2300)</li>
          <li>Loss detection timer is cancelled when ack-eliciting frames are in flight
(#2117, #2093)</li>
          <li>Packets are declared lost if they are in flight (#2104)</li>
          <li>After becoming idle, either pace packets or reset the congestion controller
(#2138, 2187)</li>
          <li>Process ECN counts before marking packets lost (#2142)</li>
          <li>Mark packets lost before resetting crypto_count and pto_count (#2208, #2209)</li>
          <li>Congestion and loss recovery state are discarded when keys are discarded
(#2327)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-16" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-16</name>
        <ul spacing="normal">
          <li>Unify TLP and RTO into a single PTO; eliminate min RTO, min TLP and min crypto
timeouts; eliminate timeout validation (#2114, #2166, #2168, #1017)</li>
          <li>Redefine how congestion avoidance in terms of when the period starts (#1928,
#1930)</li>
          <li>Document what needs to be tracked for packets that are in flight (#765, #1724,
#1939)</li>
          <li>Integrate both time and packet thresholds into loss detection (#1969, #1212,
#934, #1974)</li>
          <li>Reduce congestion window after idle, unless pacing is used (#2007, #2023)</li>
          <li>Disable RTT calculation for packets that don't elicit acknowledgment (#2060,
#2078)</li>
          <li>Limit ack_delay by max_ack_delay (#2060, #2099)</li>
          <li>Initial keys are discarded once Handshake keys are available (#1951, #2045)</li>
          <li>Reorder ECN and loss detection in pseudocode (#2142)</li>
          <li>Only cancel loss detection timer if ack-eliciting packets are in flight
(#2093, #2117)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-14" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-14</name>
        <ul spacing="normal">
          <li>Used max_ack_delay from transport params (#1796, #1782)</li>
          <li>Merge ACK and ACK_ECN (#1783)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-13" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-13</name>
        <ul spacing="normal">
          <li>Corrected the lack of ssthresh reduction in CongestionEvent pseudocode (#1598)</li>
          <li>Considerations for ECN spoofing (#1426, #1626)</li>
          <li>Clarifications for PADDING and congestion control (#837, #838, #1517, #1531,
#1540)</li>
          <li>Reduce early retransmission timer to RTT/8 (#945, #1581)</li>
          <li>Packets are declared lost after an RTO is verified (#935, #1582)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-12" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-12</name>
        <ul spacing="normal">
          <li>Changes to manage separate packet number spaces and encryption levels (#1190,
#1242, #1413, #1450)</li>
          <li>Added ECN feedback mechanisms and handling; new ACK_ECN frame (#804, #805,
#1372)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-11" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-11</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-10" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-10</name>
        <ul spacing="normal">
          <li>Improved text on ack generation (#1139, #1159)</li>
          <li>Make references to TCP recovery mechanisms informational (#1195)</li>
          <li>Define time_of_last_sent_handshake_packet (#1171)</li>
          <li>Added signal from TLS the data it includes needs to be sent in a Retry packet
(#1061, #1199)</li>
          <li>Minimum RTT (min_rtt) is initialized with an infinite value (#1169)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-09" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-09</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-08" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-08</name>
        <ul spacing="normal">
          <li>Clarified pacing and RTO (#967, #977)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-07" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-07</name>
        <ul spacing="normal">
          <li>Include ACK delay in RTO(and TLP) computations (#981)</li>
          <li>ACK delay in SRTT computation (#961)</li>
          <li>Default RTT and Slow Start (#590)</li>
          <li>Many editorial fixes.</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-06" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-06</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-05" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-05</name>
        <ul spacing="normal">
          <li>Add more congestion control text (#776)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-04" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-04</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-03" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-03</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-02" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-02</name>
        <ul spacing="normal">
          <li>Integrate F-RTO (#544, #409)</li>
          <li>Add congestion control (#545, #395)</li>
          <li>Require connection abort if a skipped packet was acknowledged (#415)</li>
          <li>Simplify RTO calculations (#142, #417)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-01" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-01</name>
        <ul spacing="normal">
          <li>Overview added to loss detection</li>
          <li>Changes initial default RTT to 100ms</li>
          <li>Added time-based loss detection and fixes early retransmit</li>
          <li>Clarified loss recovery for handshake packets</li>
          <li>Fixed references and made TCP references informative</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-recovery-00" numbered="true" toc="default">
        <name>Since draft-ietf-quic-recovery-00</name>
        <ul spacing="normal">
          <li>Improved description of constants and ACK behavior</li>
        </ul>
      </section>
      <section anchor="since-draft-iyengar-quic-loss-recovery-01" numbered="true" toc="default">
        <name>Since draft-iyengar-quic-loss-recovery-01</name>
        <ul spacing="normal">
          <li>Adopted as base for draft-ietf-quic-recovery</li>
          <li>Updated authors/editors list</li>
          <li>Added table of contents</li>
        </ul>
      </section>
    </section>
    <section anchor="contributors" numbered="true" toc="default">
      <name>Contributors</name>
      <t>The IETF QUIC Working Group received an enormous amount of support from many
people. The following people provided substantive contributions to this
document:</t>
      <ul spacing="normal">
        <li>Alessandro Ghedini</li>
        <li>Benjamin Saunders</li>
        <li>Gorry Fairhurst</li>
        <li>
          <t>        <contact asciiFullname="Kazu Yamamoto" fullname="山本和彦"/>
          </t>
        </li>
        <li>
          <t>        <contact asciiFullname="Kazuho Oku" fullname="奥 一穂"/>
          </t>
        </li>
        <li>Lars Eggert</li>
        <li>Magnus Westerlund</li>
        <li>Marten Seemann</li>
        <li>Martin Duke</li>
        <li>Martin Thomson</li>
        <li>
          <t>        <contact fullname="Mirja Kühlewind"/>
          </t>
        </li>
        <li>Nick Banks</li>
        <li>Praveen Balasubramanian</li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments" toc="default">
      <name>Acknowledgments</name>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAMSh1l8AA8W9y3IcWZYgtvev8CLNJoHMCBCBFwFmMbtRIDOLXcmHCGSn
tZVqOI4ID8CLEe7R7h5AopnZNjZrrbTWQpuR2ZjNZnazGG2kX1FLv6Hzvue6
e4DIqh4JllUEItzv87yf4/E4aYt2kT9L/4cfXp2l31dNk77I23zaFlWZZuUs
PavKq7yhP+HXtq4WSXZ5Wec3g68ks2paZksYb1Zn83Zc5O18/I/rYjqu82l1
k9d34/39ZJa18MTe7t7ueLI3nuwnU/jgqqrvnqVNO0uKVf0sbet10+7t7p7s
7iVZnWfP0os6K5tVVbfJbVV/vKqr9YrXkCRNC0v9kC2qEsa9y5tkVTxL/9hW
01HawAt1Pm/gt7sl/wJrXGarVVFe/SlJsnV7XdXPknScpPBTlM2z9O920ld3
eXmV1fQZb+jvsjKLPq7qq2fpt1nTLu7o73yZFYtn6Z/rYge3/bdX+PfOtFrS
t3BwMEg+K9qqjiZ7tZOe3+Zt66Z6lZXuM5rnu6q6WuR+ngJOA5/52yv6anii
pKzqZdYWN/mzBL7F0xpfvD99c/7u7fuLZ/S83P8j/O5Zepr+8OLd+HdZk8/S
1+tFW6wW+U/wO4LCeT5d13m4h0f0fu8y8cMmr4u8Kcp5xZOk6auyzesyb8cv
EDD68NHqqAgg+IJdDP2M5d/hG7rnloZuqn8fQ3O83kkvrqtlA1Adz/E6q9ui
7H1Js7yu/qlYLLLhaewGvj+Pz/4HOKqrFD5O20qPGZ/81z3hRfOgs/3X3/fg
NOcwzRrW273B8xygv/MNTdGU+/Vsw8HiOXhA//b07A/xEX9b1bdZPUtPpx/L
6naRz67yZV7CMb3P50VJx3/2boDaPRo6MDuo11l7XTTxx3+HH1/PspvC3d7k
5ORovHvcvbr09Ox1ev7qu7O3r1/jut+/JOx8/er8/NXbN/EOXi1XdXWDK31f
rcvZ+KIuVulFsczTl7Bi2HzewAJgP4siu1w4PE3f1RXQwmrR3LOZdzvpH7K6
jD8820nfwaXXBZxWvJnD8e7kvs2kZ2fvk2Q8HqfZZQO4PW2T5AKOConvGg8+
neXNtC4uYdELZCGziOtMwz1M+R7SZT69zsqiWTYp3HWC6LHDM5RVm394g//X
Vh/e59ksr5skeVE003XT4BDVPG1pbsSItM0+wqSrRTbNU/iyvWZcS5Gr4OkS
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
qa1P35yL4Y9elDPmPKF+8cdNp/7rz01sO5RKJmLeuzfB/ZYpA63qHZFOiAgI
pPZ4eXI/gCklijw6VvvyR1cP2Iu6UbPmUU88DblwjfrIkQqyUVcSIoatuj3c
rNZ9v8zQQ5tR2KSx/w6YbKvQW/4LjBNBehm0UDzAQLFZse9jZLcB3Dd+iwBX
nIEfmm3DO1Yud0QSj2t2j2Uo6DFDr1dAPCThD6lReFMa04nuQD3qyR7Eb37o
XtMQGHOL7Ldl/ra+uK28JWzoWINw9uuEQ9gEd3OW0nUY8YC4rXZ+IWHPTGfH
7hDA1chmyBadCuGw5JrvA3RhWoOm0o708ayn8XOH0MCAq9sSeOh1sdqJxNff
D4uvckj+fOxJPig5TS++Drz0jjYlu7QXE2dV+uqre2xKRk/kG67q3LoizhvR
Q2qgLHLfnl3dHL5wrJRupHzjTTw2plXae02132qVcz2jypJ2Agq7VJ1+JAQb
zRG1KP+4aFwnGTELJ9pFAUOROFS/S/HuOYSY6j2EmOBlCrB/xgfxG+fzSDZ7
+Xsk7Y9/CuyEzU1x0Co3sXL2oFFkdVH7kzYQpHvFeqVOgYyjb6Wzbp4vtQlv
dwE0n33QUUbVTi1jSQlBKRhXNAJYgzO0aAWffRA9W43nYaaEFTQK0dfow6Lc
4H8OWpk82nEDfPMZp5EhtypriVIPTDuy+uWNyD+oN2LkMq5dO59ICZLLXDLZ
jGSjxfKZL1/ZDZhOWTknlaGxwLfaJCMq3mO1/MdFyclfV9mqSTfHV+30jiRE
H/z2efcGglT/OffaN96jMnzaX/W2aOc7fH077B0bvjw1eETcuygJDeWFPr0l
q+kQ1gWRw+TGHmL2D+wrD5j8qp9t00BoKx74phPGMvhz/xq2g6rmjyUwhR+w
QcsLTWBWVgpwG5jaH4CpiQQ6+H2/03foYKzlkkRt7nTnLns8gnOF0DlDUvGg
aMog40LpXtiIw4FDQ48OEmsTfX7TN7kk2KkNge9b2NLvUHh7VX5LotvWMKxu
jtnZmS5ALtkSQxz7qgZkezyeUDD3XzNo7OEOKYGTodaHf1UG4nDCqIWSJRQ6
Fh6ylun/H2YgRgk0Lmp/Oh1TDs3nE2gGovR/RRZNwhl5vSwawUEuUIJBpC/y
eYbmfS7RVWmrT8bUbumSfhh8p0gXzBCVs6T45s0NPrU4ykPGRQiz7k3fwo4q
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
d6FKPj1jCS+fPX9Elecf/ZL8v9LNvgWZSAEA

-->

</rfc>
