<?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.0.40 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-recovery-02" category="std">

  <front>
    <title abbrev="QUIC Loss Detection">QUIC Loss Detection and Congestion Control</title>

    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
      <address>
        <email>jri@google.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 />

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>QUIC is a new multiplexed and secure transport atop UDP.  QUIC builds on decades
of transport and security experience, and implements mechanisms that make it
attractive as a modern general-purpose transport.  QUIC implements the spirit of
known TCP loss detection mechanisms, described in RFCs, various Internet-drafts,
and also those prevalent in the Linux TCP implementation.  This document
describes QUIC loss detection and congestion control, and attributes the TCP
equivalent in RFCs, Internet-drafts, academic papers, and TCP implementations.</t>



    </abstract>


    <note title="Note to Readers">


<t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>

<t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/recovery">https://github.com/quicwg/base-drafts/labels/recovery</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>QUIC is a new multiplexed and secure transport atop UDP.  QUIC builds on decades
of transport and security experience, and implements mechanisms that make it
attractive as a modern general-purpose transport.  The QUIC protocol is
described in <xref target="QUIC-TRANSPORT"/>.</t>

<t>QUIC implements the spirit of known TCP loss recovery mechanisms, described in
RFCs, various Internet-drafts, and also those prevalent in the Linux TCP
implementation.  This document describes QUIC congestion control and loss
recovery, and where applicable, attributes the TCP equivalent in RFCs,
Internet-drafts, academic papers, and/or TCP implementations.</t>

<t>This document first describes pre-requisite parts of the QUIC transmission
machinery, then discusses QUIC’s default congestion control and loss detection
mechanisms, and finally lists the various TCP mechanisms that QUIC loss
detection implements (in spirit.)</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</t>

</section>
</section>
<section anchor="design-of-the-quic-transmission-machinery" title="Design of the QUIC Transmission Machinery">

<t>All transmissions in QUIC are sent with a packet-level header, which includes a
packet sequence number (referred to below as a packet number).  These packet
numbers never repeat in the lifetime of a connection, and are monotonically
increasing, which makes duplicate detection trivial.  This fundamental design
decision obviates the need for disambiguating between transmissions and
retransmissions and eliminates significant complexity from QUIC’s interpretation
of TCP loss detection mechanisms.</t>

<t>Every packet may contain several frames.  We outline the frames that are
important to the loss detection and congestion control machinery below.</t>

<t><list style="symbols">
  <t>Retransmittable frames are frames requiring reliable delivery.  The most
common are STREAM frames, which typically contain application data.</t>
  <t>Crypto handshake data is also sent as STREAM data, and uses the reliability
machinery of QUIC underneath.</t>
  <t>ACK frames contain acknowledgment information.  QUIC uses a SACK-based
scheme, where acks express up to 256 ranges.  The ACK frame also includes a
receive timestamp for each packet newly acked.</t>
</list></t>

<section anchor="relevant-differences-between-quic-and-tcp" title="Relevant Differences Between QUIC and TCP">

<t>There are some notable differences between QUIC and TCP which are important for
reasoning about the differences between the loss recovery mechanisms employed by
the two protocols.  We briefly describe these differences below.</t>

<section anchor="monotonically-increasing-packet-numbers" title="Monotonically Increasing Packet Numbers">

<t>TCP conflates transmission sequence number at the sender with delivery sequence
number at the receiver, which results in retransmissions of the same data
carrying the same sequence number, and consequently to problems caused by
“retransmission ambiguity”.  QUIC separates the two: QUIC uses a packet sequence
number (referred to as the “packet number”) for transmissions, and any data that
is to be delivered to the receiving application(s) is sent in one or more
streams, with stream offsets encoded within STREAM frames inside of packets that
determine delivery order.</t>

<t>QUIC’s packet number is strictly increasing, and directly encodes transmission
order.  A higher QUIC packet number signifies that the packet was sent later,
and a lower QUIC packet number signifies that the packet was sent earlier.  When
a packet containing frames is deemed lost, QUIC rebundles 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="no-reneging" title="No Reneging">

<t>QUIC ACKs contain information that is equivalent to TCP SACK, but QUIC does not
allow any acked packet to be reneged, greatly simplifying implementations on
both sides and reducing memory pressure on the sender.</t>

</section>
<section anchor="more-ack-ranges" title="More ACK Ranges">

<t>QUIC supports up to 256 ACK ranges, opposed to TCP’s 3 SACK ranges.  In high
loss environments, this speeds recovery.</t>

</section>
<section anchor="explicit-correction-for-delayed-acks" title="Explicit Correction For Delayed Acks">

<t>QUIC ACKs explicitly encode the delay incurred at the receiver between when a
packet is received and when the corresponding ACK is sent.  This allows the
receiver of the ACK to adjust for receiver delays, specifically the delayed ack
timer, when estimating the path RTT.  This mechanism also allows a receiver to
measure and report the delay from when a packet was received by the OS kernel,
which is useful in receivers which may incur delays such as context-switch
latency before a userspace QUIC receiver processes a received packet.</t>

</section>
</section>
</section>
<section anchor="loss-detection" title="Loss Detection">

<t>We now describe QUIC’s loss detection as functions that should be called on
packet transmission, when a packet is acked, and timer expiration events.</t>

<section anchor="constants-of-interest" title="Constants of interest">

<t>Constants used in loss recovery and congestion control are based on a
combination of RFCs, papers, and common practice.  Some may need to be changed
or negotiated in order to better suit a variety of environments.</t>

<t><list style="hanging">
  <t hangText='kMaxTLPs (default 2):'>
  Maximum number of tail loss probes before an RTO fires.</t>
  <t hangText='kReorderingThreshold (default 3):'>
  Maximum reordering in packet number space before FACK style loss detection
considers a packet lost.</t>
  <t hangText='kTimeReorderingFraction (default 1/8):'>
  Maximum reordering in time sapce before time based loss detection considers
a packet lost.  In fraction of an RTT.</t>
  <t hangText='kMinTLPTimeout (default 10ms):'>
  Minimum time in the future a tail loss probe alarm may be set for.</t>
  <t hangText='kMinRTOTimeout (default 200ms):'>
  Minimum time in the future an RTO alarm may be set for.</t>
  <t hangText='kDelayedAckTimeout (default 25ms):'>
  The length of the peer’s delayed ack timer.</t>
  <t hangText='kDefaultInitialRtt (default 100ms):'>
  The default RTT used before an RTT sample is taken.</t>
</list></t>

</section>
<section anchor="variables-of-interest" title="Variables of interest">

<t>We first describe the variables required to implement the loss detection
mechanisms described in this section.</t>

<t><list style="hanging">
  <t hangText='loss_detection_alarm:'>
  Multi-modal alarm used for loss detection.</t>
  <t hangText='handshake_count:'>
  The number of times the handshake packets have been
retransmitted without receiving an ack.</t>
  <t hangText='tlp_count:'>
  The number of times a tail loss probe has been sent without
receiving an ack.</t>
  <t hangText='rto_count:'>
  The number of times an rto has been sent without receiving an ack.</t>
  <t hangText='smoothed_rtt:'>
  The smoothed RTT of the connection, computed as described in
<xref target="RFC6298"/></t>
  <t hangText='rttvar:'>
  The RTT variance, computed as described in <xref target="RFC6298"/></t>
  <t hangText='initial_rtt:'>
  The initial RTT used before any RTT measurements have been made.</t>
  <t hangText='reordering_threshold:'>
  The largest delta between the largest acked
retransmittable packet and a packet containing retransmittable frames before
it’s declared lost.</t>
  <t hangText='time_reordering_fraction:'>
  The reordering window as a fraction of max(smoothed_rtt, latest_rtt).</t>
  <t hangText='loss_time:'>
  The time at which the next packet will be considered lost based on early
transmit or exceeding the reordering window in time.</t>
  <t hangText='sent_packets:'>
  An association of packet numbers to information about them, including a number
field indicating the packet number, a time field indicating the time a packet
was sent, and a bytes field indicating the packet’s size.  sent_packets is
ordered by packet number, and packets remain in sent_packets until
acknowledged or lost.</t>
</list></t>

</section>
<section anchor="initialization" title="Initialization">

<t>At the beginning of the connection, initialize the loss detection variables as
follows:</t>

<figure><artwork><![CDATA[
   loss_detection_alarm.reset()
   handshake_count = 0
   tlp_count = 0
   rto_count = 0
   if (UsingTimeLossDetection())
     reordering_threshold = infinite
     time_reordering_fraction = kTimeReorderingFraction
   else:
     reordering_threshold = kReorderingThreshold
     time_reordering_fraction = infinite
   loss_time = 0
   smoothed_rtt = 0
   rttvar = 0
   initial_rtt = kDefaultInitialRtt
]]></artwork></figure>

</section>
<section anchor="on-sending-a-packet" title="On Sending a Packet">

<t>After any packet is sent, be it a new transmission or a rebundled transmission,
the following OnPacketSent function is called.  The parameters to OnPacketSent
are as follows:</t>

<t><list style="symbols">
  <t>packet_number: The packet number of the sent packet.</t>
  <t>is_retransmittble: A boolean that indicates whether the packet contains at
least one frame requiring reliable deliver.  The retransmittability of various
QUIC frames is described in <xref target="QUIC-TRANSPORT"/>.  If false, it is still
acceptable for an ack to be received for this packet.  However, a caller MUST
NOT set is_retransmittable to true if an ack is not expected.</t>
  <t>sent_bytes: The number of bytes sent in the packet.</t>
</list></t>

<t>Pseudocode for OnPacketSent follows:</t>

<figure><artwork><![CDATA[
 OnPacketSent(packet_number, is_retransmittable, sent_bytes):
   sent_packets[packet_number].packet_number = packet_number
   sent_packets[packet_number].time = now
   if is_retransmittable:
     sent_packets[packet_number].bytes = sent_bytes
     SetLossDetectionAlarm()
]]></artwork></figure>

</section>
<section anchor="on-ack-receipt" title="On Ack Receipt">

<t>When an ack is received, it may acknowledge 0 or more packets.</t>

<t>Pseudocode for OnAckReceived and UpdateRtt follow:</t>

<figure><artwork><![CDATA[
   OnAckReceived(ack):
     // If the largest acked is newly acked, update the RTT.
     if (sent_packets[ack.largest_acked]):
       rtt_sample = now - sent_packets[ack.largest_acked].time
       if (rtt_sample > ack.ack_delay):
         rtt_sample -= ack.delay
       UpdateRtt(rtt_sample)
     // Find all newly acked packets.
     for acked_packet_number in DetermineNewlyAckedPackets():
       OnPacketAcked(acked_packet_number)

     DetectLostPackets(ack.largest_acked_packet)
     SetLossDetectionAlarm()


   UpdateRtt(rtt_sample):
     // Based on {{RFC6298}}.
     if (smoothed_rtt == 0):
       smoothed_rtt = rtt_sample
       rttvar = rtt_sample / 2
     else:
       rttvar = 3/4 * rttvar + 1/4 * (smoothed_rtt - rtt_sample)
       smoothed_rtt = 7/8 * smoothed_rtt + 1/8 * rtt_sample
]]></artwork></figure>

</section>
<section anchor="on-packet-acknowledgment" title="On Packet Acknowledgment">

<t>When a packet is acked for the first time, the following OnPacketAcked function
is called.  Note that a single ACK frame may newly acknowledge several packets.
OnPacketAcked must be called once for each of these newly acked packets.</t>

<t>OnPacketAcked takes one parameter, acked_packet, which is the packet number of
the newly acked packet, and returns a list of packet numbers that are detected
as lost.</t>

<t>Pseudocode for OnPacketAcked follows:</t>

<figure><artwork><![CDATA[
   OnPacketAcked(acked_packet_number):
     handshake_count = 0
     tlp_count = 0
     rto_count = 0
     sent_packets.remove(acked_packet_number)
]]></artwork></figure>

</section>
<section anchor="setting-the-loss-detection-alarm" title="Setting the Loss Detection Alarm">

<t>QUIC loss detection uses a single alarm for all timer-based loss detection.  The
duration of the alarm is based on the alarm’s mode, which is set in the packet
and timer events further below.  The function SetLossDetectionAlarm defined
below shows how the single timer is set based on the alarm mode.</t>

<section anchor="handshake-packets" title="Handshake Packets">

<t>The initial flight has no prior RTT sample.  A client SHOULD remember
the previous RTT it observed when resumption is attempted and use that for an
initial RTT value.  If no previous RTT is available, the initial RTT defaults
to 200ms.  Once an RTT measurement is taken, it MUST replace initial_rtt.</t>

<t>Endpoints MUST retransmit handshake frames if not acknowledged within a
time limit. This time limit will start as the largest of twice the rtt value
and MinTLPTimeout.  Each consecutive handshake retransmission doubles the
time limit, until an acknowledgement is received.</t>

<t>Handshake frames may be cancelled by handshake state transitions.  In
particular, all non-protected frames SHOULD be no longer be transmitted once
packet protection is available.</t>

<t>When stateless rejects are in use, the connection is considered immediately
closed once a reject is sent, so no timer is set to retransmit the reject.</t>

<t>Version negotiation packets are always stateless, and MUST be sent once per
per handshake packet that uses an unsupported QUIC version, and MAY be sent
in response to 0RTT packets.</t>

</section>
<section anchor="tail-loss-probe-and-retransmission-timeout" title="Tail Loss Probe and Retransmission Timeout">

<t>Tail loss probes <xref target="I-D.dukkipati-tcpm-tcp-loss-probe"/> and retransmission
timeouts<xref target="RFC6298"/> are an alarm based mechanism to recover from cases when
there are outstanding retransmittable packets, but an acknowledgement has
not been received in a timely manner.</t>

</section>
<section anchor="early-retransmit" title="Early Retransmit">

<t>Early retransmit <xref target="RFC5827"/> is implemented with a 1/4 RTT timer. It is
part of QUIC’s time based loss detection, but is always enabled, even when
only packet reordering loss detection is enabled.</t>

</section>
<section anchor="pseudocode" title="Pseudocode">

<t>Pseudocode for SetLossDetectionAlarm follows:</t>

<figure><artwork><![CDATA[
 SetLossDetectionAlarm():
    if (retransmittable packets are not outstanding):
      loss_detection_alarm.cancel();
      return

    if (handshake packets are outstanding):
      // Handshake retransmission alarm.
      if (smoothed_rtt == 0):
        alarm_duration = 2 * initial_rtt
      else:
        alarm_duration = 2 * smoothed_rtt
      alarm_duration = max(alarm_duration, kMinTLPTimeout)
      alarm_duration = alarm_duration << handshake_count
    else if (loss_time != 0):
      // Early retransmit timer or time loss detection.
      alarm_duration = loss_time - now
    else if (tlp_count < kMaxTLPs):
      // Tail Loss Probe
      if (retransmittable_packets_outstanding = 1):
        alarm_duration = 1.5 * smoothed_rtt + kDelayedAckTimeout
      else:
        alarm_duration = kMinTLPTimeout
      alarm_duration = max(alarm_duration, 2 * smoothed_rtt)
    else:
      // RTO alarm
      if (rto_count = 0):
        alarm_duration = smoothed_rtt + 4 * rttvar
        alarm_duration = max(alarm_duration, kMinRTOTimeout)
      else:
        alarm_duration = loss_detection_alarm.get_delay() << 1

    loss_detection_alarm.set(now + alarm_duration)
]]></artwork></figure>

</section>
</section>
<section anchor="on-alarm-firing" title="On Alarm Firing">

<t>QUIC uses one loss recovery alarm, which when set, can be in one of several
modes.  When the alarm fires, the mode determines the action to be performed.</t>

<t>Pseudocode for OnLossDetectionAlarm follows:</t>

<figure><artwork><![CDATA[
   OnLossDetectionAlarm():
     if (handshake packets are outstanding):
       // Handshake retransmission alarm.
       RetransmitAllHandshakePackets();
       handshake_count++;
     // TODO: Clarify early retransmit and time loss.
     else if (loss_time != 0):
       // Early retransmit or Time Loss Detection
       DetectLostPackets(largest_acked_packet)
     else if (tlp_count < kMaxTLPs):
       // Tail Loss Probe.
       if (HasNewDataToSend()):
         SendOnePacketOfNewData()
       else:
         RetransmitOldestPacket()
       tlp_count++
     else:
       // RTO.
       RetransmitOldestTwoPackets()
       rto_count++

     SetLossDetectionAlarm()
]]></artwork></figure>

</section>
<section anchor="detecting-lost-packets" title="Detecting Lost Packets">

<t>Packets in QUIC are only considered lost once a larger packet number is
acknowledged.  DetectLostPackets is called every time an ack is received.
If the loss detection alarm fires and the loss_time is set, the previous
largest acked packet is supplied.</t>

<section anchor="handshake-packets-1" title="Handshake Packets">

<t>The receiver MUST ignore unprotected packets that ack protected packets.
The receiver MUST trust protected acks for unprotected packets, however.  Aside
from this, loss detection for handshake packets when an ack is processed is
identical to other packets.</t>

</section>
<section anchor="pseudocode-1" title="Pseudocode">

<t>DetectLostPackets takes one parameter, acked, which is the largest acked packet.</t>

<t>Pseudocode for DetectLostPackets follows:</t>

<figure><artwork><![CDATA[
   DetectLostPackets(largest_acked):
     loss_time = 0
     lost_packets = {}
     delay_until_lost = infinite;
     if (time_reordering_fraction != infinite):
       delay_until_lost =
         (1 + time_reordering_fraction) * max(latest_rtt, smoothed_rtt)
     else if (largest_acked.packet_number == largest_sent_packet):
       // Early retransmit alarm.
       delay_until_lost = 9/8 * max(latest_rtt, smoothed_rtt)
     foreach (unacked less than largest_acked.packet_number):
       time_since_sent = now() - unacked.time_sent
       packet_delta = largest_acked.packet_number - unacked.packet_number
       if (time_since_sent > delay_until_lost):
         lost_packets.insert(unacked)
       else if (packet_delta > reordering_threshold)
         lost_packets.insert(unacked)
       else if (loss_time == 0 && delay_until_lost != infinite):
         loss_time = delay_until_lost - time_since_sent

     // Inform the congestion controller of lost packets and
     // lets it decide whether to retransmit immediately.
     OnPacketsLost(lost_packets)
     foreach (packet in lost_packets)
       sent_packets.remove(packet.packet_number)
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="congestion-control" title="Congestion Control">

<t>(describe NewReno-style congestion control <xref target="RFC6582"/> for QUIC.)
(describe appropriate byte counting.)
(define recovery based on packet numbers.)
(describe min_rtt based hystart.)
(describe how QUIC’s F-RTO <xref target="RFC5682"/> delays reducing CWND.)
(describe PRR <xref target="RFC6937"/>)</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document has no IANA actions.  Yet.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<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>Google</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date />
  </front>
</reference>




<reference  anchor='RFC2119' target='http://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>




    </references>

    <references title='Informative References'>





<reference  anchor='RFC6298' target='http://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='I-D.dukkipati-tcpm-tcp-loss-probe'>
<front>
<title>Tail Loss Probe (TLP): An Algorithm for Fast Recovery of Tail Losses</title>

<author initials='N' surname='Dukkipati' fullname='Nandita Dukkipati'>
    <organization />
</author>

<author initials='N' surname='Cardwell' fullname='Neal Cardwell'>
    <organization />
</author>

<author initials='Y' surname='Cheng' fullname='Yuchung Cheng'>
    <organization />
</author>

<author initials='M' surname='Mathis' fullname='Matt Mathis'>
    <organization />
</author>

<date month='February' day='25' year='2013' />

<abstract><t>Retransmission timeouts are detrimental to application latency, especially for short transfers such as Web transactions where timeouts can often take longer than all of the rest of a transaction. The primary cause of retransmission timeouts are lost segments at the tail of transactions.  This document describes an experimental algorithm for TCP to quickly recover lost segments at the end of transactions or when an entire window of data or acknowledgments are lost.  Tail Loss Probe (TLP) is a sender-only algorithm that allows the transport to recover tail losses through fast recovery as opposed to lengthy retransmission timeouts.  If a connection is not receiving any acknowledgments for a certain period of time, TLP transmits the last unacknowledged segment (loss probe).  In the event of a tail loss in the original transmissions, the acknowledgment from the loss probe triggers SACK/FACK based fast recovery.  TLP effectively avoids long timeouts and thereby improves TCP performance.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-dukkipati-tcpm-tcp-loss-probe-01' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-dukkipati-tcpm-tcp-loss-probe-01.txt' />
</reference>



<reference  anchor='RFC5827' target='http://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 &quot;Early Retransmit&quot; 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='RFC6582' target='http://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 &quot;partial acknowledgments&quot; (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 &quot;NewReno&quot;.  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='RFC5682' target='http://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='RFC6937' target='http://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>




    </references>


<section anchor="acknowledgments" title="Acknowledgments">

</section>
<section anchor="change-log" title="Change Log">

<t><list style='empty'>
  <t><spanx style="strong">RFC Editor’s Note:</spanx>  Please remove this section prior to publication of a
final version of this document.</t>
</list></t>

<section anchor="since-draft-ietf-quic-recovery-01" title="Since draft-ietf-quic-recovery-01">

<t><list style="symbols">
  <t>Changes initial default RTT to 100ms</t>
  <t>Added time-based loss detection and fixes early retransmit</t>
  <t>Clarified loss recovery for handshake packets</t>
  <t>Fixed references and made TCP references informative</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-recovery-00" title="Since draft-ietf-quic-recovery-00:">

<t><list style="symbols">
  <t>Improved description of constants and ACK behavior</t>
</list></t>

</section>
<section anchor="since-draft-iyengar-quic-loss-recovery-01" title="Since draft-iyengar-quic-loss-recovery-01:">

<t><list style="symbols">
  <t>Adopted as base for draft-ietf-quic-recovery.</t>
  <t>Updated authors/editors list.</t>
  <t>Added table of contents.</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
xv8BCoEaEllOAAA=

-->

</rfc>

