<?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.30 -->

<!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">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:quic@ietf.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><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 year="2017" month="3" day="13"/>

    <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>
</rfc>

