<?xml version="1.0" encoding="us-ascii"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.13 (Ruby 2.6.10) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

<!ENTITY RFC2119 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY RFC5681 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5681.xml">
<!ENTITY RFC7942 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7942.xml">
<!ENTITY RFC8126 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8126.xml">
<!ENTITY SELF "[RFCXXXX]">
]>


<rfc ipr="trust200902" docName="draft-chung-ccwg-search-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="search">SEARCH -- a New Slow Start Algorithm for TCP and QUIC</title>

    <author initials="J." surname="Chung" fullname="Jae Won Chung">
      <organization abbrev="viasat">Viasat Inc</organization>
      <address>
        <postal>
          <street>300 Nickerson Rd,</street>
          <city>Marlborough, MA</city>
          <code>1002</code>
          <country>United States of America</country>
        </postal>
        <email>jaewon.chung@viasat.com</email>
      </address>
    </author>
    <author initials="M." surname="Kachooei" fullname="Maryam Ataei Kachooei">
      <organization abbrev="WPI">Worcester Polytechnic Institute</organization>
      <address>
        <postal>
          <street>100 Institute Rd</street>
          <city>Worcester, MA</city>
          <code>01609</code>
          <country>United States of America</country>
        </postal>
        <email>mataeikachooei@wpi.edu</email>
      </address>
    </author>
    <author initials="F." surname="Li" fullname="Feng Li">
      <organization abbrev="viasat">Viasat Inc</organization>
      <address>
        <postal>
          <street>300 Nickerson Rd,</street>
          <city>Marlborough, MA</city>
          <code>1002</code>
          <country>United States of America</country>
        </postal>
        <email>feng.li@viasat.com</email>
      </address>
    </author>
    <author initials="M." surname="Claypool" fullname="Mark Claypool">
      <organization abbrev="WPI">Worcester Polytechnic Institute</organization>
      <address>
        <postal>
          <street>100 Institute Rd</street>
          <city>Worcester, MA</city>
          <code>01609</code>
          <country>United States of America</country>
        </postal>
        <email>claypool@cs.wpi.edu</email>
      </address>
    </author>

    <date year="2025" month="January" day="14"/>

    <area>Web and Internet Transport</area>
    <workgroup>ccwg</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 158?>

<t>TCP slow start is designed to ramp up to the network congestion point
quickly, doubling the congestion window each round-trip time until the
congestion point is reached, whereupon TCP exits the slow start phase.
Unfortunately, the default Linux TCP slow start implementation -- TCP
Cubic with HyStart -- can cause premature exit from slow
start, especially over wireless links, degrading link utilization.
However, without HyStart, TCP exits slow start too late, causing
unnecessary packet loss.  To improve TCP slow start performance, this
document proposes using the Slow start Exit At Right CHokepoint
(SEARCH) algorithm where the TCP sender determines the
congestion point based on acknowledged deliveries -- specifically, the
sender computes the delivered bytes compared to the expected delivered
bytes, smoothed to account for link latency variation and normalized
to accommodate link capacities, and exits slow start if the delivered
bytes are lower than expected.  We implemented SEARCH as a Linux
kernel v5.16 module and evaluated it over WiFi, 4G/LTE, and low earth
orbit (LEO) and geosynchronous (GEO) satellite links.  Analysis of the
results show that the SEARCH reliably exits from slow start after the
congestion point is reached but before inducing packet loss.</t>



    </abstract>



  </front>

  <middle>


<?line 180?>

<section anchor="problems"><name>Introduction</name>

<t>The TCP slow start mechanism starts sending data rates cautiously yet
rapidly increases towards the congestion point, approximately doubling
the congestion window (cwnd) each round-trip time (RTT).
Unfortunately, default implementations of TCP slow start, such as TCP
Cubic with HyStart <xref target="HYSTART"/> in Linux, often result in a premature
exit from the slow start phase, or, if HyStart is disabled, excessive
packet loss upon overshooting the congestion point.  Exiting slow
start too early curtails TCP&#39;s ability to capitalize on unused link
capacity, a setback that is particularly pronounced in high
bandwidth-delay product (BDP) networks (e.g., GEO satellites) where
the time to grow the congestion window to the congestion point is
substantial.  Conversely, exiting slow start too late overshoots the
link&#39;s capacity, inducing unnecessary congestion and packet loss,
particularly problematic for links with large (bloated) bottleneck
queues.</t>

<t>To determine the slow start exit point, we propose that the TCP sender
monitor the acknowledged delivered bytes in an RTT and compare that to
what is expected based on the bytes acknowledged as delivered during
the previous RTT.  Large differences between delivered bytes and
expected delivered bytes is then the indicator that slow start has
reached the network congestion point and the slow start phase should
exit.  We call our approach the Slow start Exit At Right CHokepoint
(SEARCH) algorithm.  SEARCH is based on the principle that during slow
start, the congestion window expands by one maximum segment size (MSS)
for each acknowledgment (ACK) received, prompting the transmission of
two segments and effectively doubling the sending rate each RTT.
However, when the network surpasses the congestion point, the delivery
rate does not double as expected, signaling that the slow start phase
should exit.  Specifically, the current delivered bytes should be
twice the delivered bytes one RTT ago.  To accommodate links with a
wide range in capacities, SEARCH normalizes the difference based on
the current delivered bytes and since link latencies can vary over
time independently of data rates (especially for wireless links),
SEARCH smooths the measured delivered bytes over several RTTs.</t>

<t>This document describes the current version of the SEARCH algorithm,
<strong>version 3</strong>.  Active work on the SEARCH algorithm is continuing.</t>

<t>This document is organized as follows: Section 2 provides terminology
and definitions relevant to this document; Section 3 describes the
SEARCH algorithm in detail; Section 4 provides justification for the
algorithm settings; Section 5 describes the implementation status;
Section 6 describes security considerations; Section 7 notes that
there are no IANA considerations; Section 8 closes with
acknowledgments; and Section 9 provides references.</t>

</section>
<section anchor="terminology-and-definitions"><name>Terminology and Definitions</name>

<t>The key words &quot;MUST&quot;, &quot;MUST NOT&quot;, &quot;REQUIRED&quot;, &quot;SHALL&quot;, &quot;SHALL NOT&quot;,
&quot;SHOULD&quot;, &quot;SHOULD NOT&quot;, &quot;RECOMMENDED&quot;, &quot;MAY&quot;, and &quot;OPTIONAL&quot; in this
document are to be interpreted as described in RFC 2119, BCP 14
<xref target="RFC2119"/> and indicate requirement levels for compliant CoAP
implementations.</t>

<t>In this document, the term &quot;byte&quot; is used in its now customary sense
as a synonym for &quot;octet&quot;.</t>

<t><em>ACK:</em> a TCP acknowledgement.</t>

<t><em>bins:</em> the aggregate (total) of acknowledged delivery bytes over a
 small time window.</t>

<t><em>congestion window (cwnd):</em> A TCP state variable that limits the
 amount of data a TCP sender can send.  At any given time, a TCP flow
 MUST NOT send data with a sequence number higher than the sum of the
 highest acknowledged sequence number and the minimum of the cwnd and
 the receiver window.</t>

<t><em>norm_diff:</em> the normalized difference in current delivered bytes and
 previously delivered bytes.</t>

<t><em>round-trip time (RTT):</em> the round-trip time for a segment sent until
 the acknowledgement is received.</t>

<t><em>THRESH:</em> the norm_diff value above which SEARCH considers the
 congestion point reached and the slow start phase exits.</t>

</section>
<section anchor="search-algorithm"><name>SEARCH Algorithm</name>

<t>The SEARCH algorithm core concept is that during the slow start phase,
the delivered bytes should double each RTT until the congestion point
is reached.  In SEARCH, when the bytes delivered one RTT prior is half
the bytes delivered currently, the bitrate is not yet at capacity,
whereas when the bytes delivered prior are more than half the bytes
delivered currently, the link capacity has been reached and TCP exits
slow start.</t>

<t>One challenge in monitoring delivered data across multiple RTTs is
latency variability for some links.  Variable latency in the absence
of congestion - common in some wireless links - can cause RTTs to
differ over time even when the network is not yet at the congestion
point.  This variability complicates comparing delivered bytes one RTT
prior to those delivered currently in that a lowered latency can make
it seem like the total bytes delivered currently is too low compared
to the total delivered one RTT ago, making it seem like the link is at
the congestion point when it is not.</t>

<t>To counteract link latency variability, SEARCH tracks delivered data
over several RTTs in a sliding window to provide a more stable basis
for comparison.  Since tracking individual segment delivery times is
prohibitive in terms of memory use, the data within the sliding window
is aggregated over bins representing small, fixed time periods.  The
window then slides over bin-by-bin, rather than sliding every
acknowledgement (ACK), reducing both the computational load (since
SEARCH only triggers at the bin boundary) and the memory requirements
(since delivered bytes are kept for a bin-sized time interval instead
of for each segment).</t>

<t>The SEARCH algorithm (that runs on the TCP sender only) is shown
below.</t>

<t>The parameters in CAPS (lines 0-4) are constants.</t>

<t>The variables in Initialization (lines 5-9) are set once upon
establishment of a TCP connection.  The <em>initial_rtt</em> (line 1)
obtained via the first round-trip time measured in the TCP connection.</t>

<t>The variable <em>now</em> on lines 9, 10 and 24 is the current system time
when the code is called.</t>

<t>The variables sequence_num and rtt in the ACK_arrived() function are
obtained upon arrival of an acknowledgement from the receiver.</t>

<t>The variable <em>cwnd</em> on lines 38 and 39 is the TCP congestion window.</t>

<t>Lines 0-4 set the predefined parameters for the SEARCH algorithm.  The
window factor (WINDOW_FACTOR) is a multiple of the initial RTT, set so
as the SEARCH window will be 3.5 times the initial RTT (set upon
initialization of the TCP flow in line 5).  The delivered bytes over a
SEARCH window is approximated using 10 bins (W), with an additional 15
additional bins (EXTRA_BINS) bins (for a total of 25 (NUM_BINS)) to
allow comparison of the current delivered bytes to the previously
delivered bytes one RTT earlier.  The threshold (THRESH) is set to
0.35 and is the upper bound of the permissible difference between the
previously delivered bytes and the current delivered bytes
(normalized) above which slow start exits.</t>

<t>Lines 5-9 do one-time initialization of SEARCH variables when a TCP
connection is established.  The SEARCH window size (window_size) is
set to be the initial RTT (initial_rtt) multiplied by the window
factor (WINDOW_FACTOR).  The bin duration (bin_duration) is then the
window size divided by size (in bins) of the SEARCH window (W).</t>

<t>After initialization, SEARCH only acts when acknowledgements (ACKs) are
received and even then, only when the current time (<em>now</em>) has passed
the end of the latest bin boundary (stored in the variable bin_end).
This check happens on line 10 and if the bin boundary is passed, the
bin statistics are updated in the function update_bins(), lines 24-30.</t>

<t>In update_bins(), under most TCP connections, the time (<em>now</em>) is
within the bin immediately after the previous bin, but in some cases
(such as during an RTT spike or a TCP connection without data to
send), more than one bin boundary may have been passed.  Line 24
computes how many bins have been passed and line 25 updates the next
bin boundary accordingly.  In lines 26-28, for each bin passed, the
bin[] variable is set to the previously-delivered bytes.  In line
30, for the latest bin, the delivered bytes is updated to the latest
sequence number (from the ACK).</t>

<t>Once the bins are updated, lines 12-14 check if enough bins have been
filled to run SEARCH.  This requires at least W (10) bins (i.e., a
SEARCH window&#39;s worth of bytes-delivered data), but also enough bins to
shift back by an RTT to compute a window (10) of bins one RTT ago, too.</t>

<t>If there is enough bin data to run SEARCH, lines 15 and 17 compute the
current and previously delivered bytes over a window (W) of bins,
respectively.  This computation is done in the function
compute_delv(), lines 32-38. For previously delivered bytes, shifting
by an RTT may mean the SEARCH window lands between bin boundaries, so
the fraction of the bin is computed in line 16 and passed into
compute_delv() in line 17.</t>

<t>In the function compute_delv() over lines 31-35, idx1 and idx2 are the
indices into the bin[] array for the start and end of the window as
explained above, fraction is the proportion (from 0 to 1) of the end
bins to use in the computation.  Line 32 computes the bytes delivered
(delv) over the inner part of the window (i.e., not counting the
fractional bins on the end), and lines 33-34 compute the
fractional parts of the end bins to add to delv.</t>

<t>Once delivered byes are computed, line 18 calculates the difference
between the expected delivered bytes (2 x prev_delv) and the current
delivered bytes (curr_delv), normalized by dividing by the expected
delivered bytes.  In line 19, this normalized difference value
(norm_diff) is compared to the threshold (THRESH).  If norm_diff is
larger than THRESH, that means the current delivered bytes is lower
than expected (i.e., the delivered bytes did not double over the
previous RTT) and slow start exits.</t>

<t>Slow start exit is handled by the function exit_slow_start() on line
36.  Setting the slow start threshold (ssthresh) to the congestion
window (<em>cwnd</em>) at effectively exits slow start.</t>

<t>SEARCH 2.0 ALGORITHM</t>

<figure><artwork><![CDATA[
Parameters:
0: WINDOW_FACTOR = 3.5
1: W = 10  
2: EXTRA_BINS = 15
3: NUM_BINS = W + EXTRA_BINS  
4: THRESH = 0.35  

Initialization():
5: window_size = *initial_rtt* x WINDOW_FACTOR
6: bin_duration = window_size / W  
7: bin\[NUM_BINS\] = {}
8: curr_idx = -1 
9: bin_end = *now* + bin_duration  

ACK_arrived(sequence_num, rtt):

// Check if passed bin boundary.
10: if (*now* > bin_end) then  
11:    update_bins()

// Check if enough data for SEARCH.
12:    prev_idx = curr_idx - (rtt / bin_duration)
13:    if (prev_idx >= W) and
14:       (curr_idx - prev_idx) <= EXTRA_BINS then  

// Run SEARCH check.
15:       curr_delv = compute_delv(curr_idx - W, curr_idx)
16:       fraction = (rtt mod bin_duration) / bin_duration
17:       prev_delv = compute_delv(prev_idx - W, prev_idx, fraction)
18:       norm_diff = (2 x prev_delv - curr_delv) / (2 x prev_delv)
19:       if (norm_diff >= THRESH) then
20:          exit_slow_start()
21:       end if

22:    end if // Enough data for SEARCH.

23: end if // Each ACK.

// Update bin statistics, accounting for cases where more
// than one bin boundary might have been passed.
update_bins():
24: passed_bins = (*now* - bin_end) / bin_duration + 1
25: bin_end += passed_bins x bin_duration
26: for i = (curr_idx + 1) to (curr_idx + passed_bins)
27:    if (curr_idx >= 0) bin\[i mod NUM_BINS\] = bin\[curr_idx\]
28: end for
29: curr_idx += passed_bins
30: bin\[curr_idx mod NUM_BINS\] = sequence_num

// Compute delivered bytes over the window of bins, interpolating a
// fraction of each bin on the end (default is 0).
compute_delv(idx1, idx2, fraction = 0):
31: delv = 0
32: delv = bin[(idx2 - 1) mod NUM_BINS] - bin[idx1 mod NUM_BINS]
33: delv += (bin[idx1 mod NUM_BINS] - bin[(idx1 - 1) mod NUM_BINS]) x (1 - fraction)
34: delv += (bin[idx2 mod NUM_BINS] - bin[(idx2 - 1) mod NUM_BINS]) x fraction
35: return delv

// Exit slow start by setting ssthresh.
exit_slow_start():
36: ssthresh = *cwnd*
]]></artwork></figure>

</section>
<section anchor="search-parameters"><name>SEARCH Parameters</name>

<t>This section provides justification and some sensitivity analysis for
key SEARCH algorithm constants.</t>

<t><strong>Window Size (window_size)</strong></t>

<t>The SEARCH window smooths over RTT fluctuations in a connection that
are unrelated to congestion. The window size must be large enough to
encapsulate meaningful link RTT variation, yet small in order to allow
SEARCH to respond near when slow start reaches link capacity. In order
to determine an appropriate window size, we analyzed RTT variation
over time for GEO, LEO, and 4G LTE links for TCP during slow start.
See <xref target="KCL24"/> for details.</t>

<t>The SEARCH window size needs to be large enough to capture the
observed periodic oscillations in the RTT values. In order to
determine the oscillation period, we use a Fast Fourier Transform
(FFT) to convert measured RTT values from the time domain to the
frequency domain.  For GEO satellites, the primary frequency peak is
at 0.5 Hz, meaning there is a large, periodic cycle that occurs about
every 2 seconds.  Given the minimum RTT for a GEO connection of about
600 ms, this means an RTT cycle occurs about every 3.33 RTTs.  Thus, a
SEARCH window size of about 3.5 times the minimum RTT should smooth
out the latency variation for this type of link.</t>

<t>While the RTT periodicity for LEO links is not as pronounced as in GEO
links, the analysis yields a similar window size.  The FFT of LEO RTTs
has a dominant peak at 10 Hz, so a period of about 0.1 seconds.  With
LEO&#39;s minimum RTT of about 30 ms, the period is about 3.33 RTTs,
similar to that for GEO links. Thus, a window size of about 3.5 times
the minimum RTT should smooth out the latency variation for this type
of link, too.</t>

<t>Similarly to the LEO link, the LTE network does not have a strong RTT
periodicity.  The FFT of LTE RTTs has a dominant peak at 6 Hz, with a
period of about 0.17 seconds.  With the minimum RTT of the LTE network
of about 60 ms, this means a window size of about 2.8 times the
minimum RTT is needed.  A SEARCH default of 3.5 times the minimum RTT
exceeds this, so should smooth out the variance for this type of link
as well.</t>

<t>** Threshold (THRESH) **</t>

<t>The threshold (THRESH) determines when the difference between the
bytes delivered currently and the bytes delivered during the previous
RTT is large enough to exit the slow start phase.  A small threshold
is desirable to exit slow start close to the &quot;at capacity&quot; point
(i.e., without overshooting too much), but the threshold must be large
enough not to trigger an exit from slow start prematurely due to noise
in the measurements.</t>

<t>During slow start, the congestion window doubles each RTT.  In ideal
conditions and with an initial cwnd of 1 (1 is used as an example, but
typical congestion windows start at 10 or more), this results in a
sequence of delivered bytes that follows a doubling pattern (1, 2, 4,
8, 16, ...). Once the link capacity is reached, the delivered bytes
each RTT cannot increase despite cwnd growth.  For example, consider a
SEARCH window that is 4x the size of the RTT.  After 5 RTTs, the
current delivered window comprises 2, 4, 8, 16, while the previous
delivered window is 1, 2, 4, 8.  The current delivered bytes is 30,
exactly double the bytes delivered in the previous window.  Thus,
SEARCH would compute the normalized difference as zero.</t>

<t>Once the cwnd ramps up to meet full link capacity, the delivered bytes
plateau.  Continuing the example, if the link capacity is reached when
cwnd is 16, the delivered bytes growth would be 1, 2, 4, 8, 16, 16.
The current delivered window is 4+8+16+16 = 44, while the previously
delivered window is 2+4+8+16 = 30.  Here, the normalized difference
between 2x the previously delivered window and the current delivered
window is about (60-44)/60 = 0.27.  After 5 more RTTs, the previous
delivered and current delivered bytes would both be 16 + 16 + 16 + 16
= 64 and the normalized difference would be (128 - 64) / 64 = 0.5.</t>

<t>Thus, the norm values typically range from 0 (before the congestion
point) to 0.5 (well after the congestion point) with values between 0
and 0.5 when the congestion point has been reached but not surpassed
by the full window.</t>

<t>To generalize this relationship, the theoretical underpinnings of this
behavior can be quantified by integrating the area under the
congestion window curve over time for a closed-form equation for both
the current delivered bytes (curr_delv) and the previously delivered
bytes (prev_delv).  The normalized difference can be computed based on
the RTT round relative to the &quot;at capacity&quot; round.  While SEARCH seeks
to detect the &quot;at capacity&quot; point as soon as possible after reaching
it, it must also avoid premature exit in the case of noise on the
link.  The 0.35 threshold value chosen does this and can be detected
about 2 RTTs of reaching capacity.</t>

<t><strong>Number of Bins (NUM_BINS)</strong></t>

<t>Dividing the delivered byte window into bins reduces the sender&#39;s
memory use by aggregating data across multiple ACKs instead of
tracking each ACK.  This approach simplifies data handling and
minimizes the frequency of SEARCH window updates, enhancing sender
efficiency.  However, more bins provide more fidelity to actual
delivered byte totals and allow SEARCH to make decisions (i.e.,
compute if it should exit slow start) more often, but require more
memory for each TCP flow.  Sensitivity analysis previously
conducted aimed to identify the impact of the number of bins used by
SEARCH and the ability to exit slow start in a timely fashion.</t>

<t>Using a window size of 3.5x the initial RTT and a threshold of 0.35,
we varied the number of bins from 5 to 40 and observed the impact on
SEARCH&#39;s performance over GEO, LEO and 4G LTE downloads.  For all
three link types, a bin size of 10 provides nearly identical
performance as SEARCH running with more bins, while 10 also minimizes
early exits from slow start while having an &quot;at chokepoint&quot; percentage
that is close to the maximum.</t>

</section>
<section anchor="search-options"><name>SEARCH Options</name>

<t>This section describes optional adjustments to the SEARCH algorithm.</t>

<t>A) The interpolation code in lines 16-17 and 33-34 gives a more precise
computation of the previously delivered bytes by computing a fraction
of the adjacent bins.  If saving the computation time required for
interpolation is desired, interpolation could be disabled, effectively
&quot;rounding down&quot; the previous delivered window to the lowest bin (the
same as running SEARCH with fraction of 0).  While this would
sacrifice some accuracy for the SEARCH check computations, at least it
errs on the side of not exiting slow start too early.</t>

<t>B) In exit_slow_start(), since SEARCH had to pass the congestion point
in order to ascertain that it had, in fact, been reached, the
congestion window (<em>cwnd</em>) could be reduced to the value at the
congestion point instead of above it.  Since with a THRESHOLD setting
of 0.35, detection of the congestion point is delayed by almost
exactly two RTTs, so the extra bytes (past the congestion point) that
had been added to the congestion window could be subtracted from the
congestion window.  Code to do so is below:</t>

<figure><artwork><![CDATA[
36: cong_idx = curr_idx - 2 x *initial_rtt* / bin_duration
37: overshoot = compute_delv(cong_idx, curr_idx)
38: *cwnd* -= overshoot
]]></artwork></figure>

<t>C) If the RTT grows such that the previous window can not be computed
due to overlapping the bins used for the current window (line 14),
SEARCH cannot run and instead must wait for the RTT to decrease enough
until there is no such overlap.  Instead, SEARCH could reduce the size
of the window to prevent this overlap.  If this is done, instead of
shifting back 3.5x the initial RTT (the WINDOW_FACTOR), SEARCH could
shift back less (e.g., 2.0x).  While this smaller window has the
disadvantage of not smoothing over RTT variance as well as the default
window, it has the advantage of allowing the SEARCH check to still run
(lines 15-21), possibly with an adjusted THRESHOLD.</t>

</section>
<section anchor="deployment-and-performance-evaluation"><name>Deployment and Performance Evaluation</name>

<t>Evaluation of hundreds of downloads of TCP with SEARCH across GEO,
LEO, and 4G LTE network links compared to TCP with HyStart and TCP
without HyStart shows SEARCH almost always exits after capacity has
been reached but before packet loss has occurred.  This results in
capacity limits being reached quickly while avoiding inefficiencies
caused by lost packets.</t>

<t>Evaluation of a SEARCH implementation in an open source QUIC library
(QUICly) over an emulated GEO satellite link validates the
implementation, illustrating how SEARCH detects the congestion point
and exits slow start before packet loss occurs.  Evaluation over a
commercial GEO satellite link shows SEARCH can provide a median
improvement of up to 3 seconds (14%) compared to the baseline by
limiting cwnd growth when capacity is reached and delaying any packet
loss due to congestion.</t>

<t>Details can be found at <xref target="KCL24"/> and <xref target="CKC24"/>, respectively.</t>

</section>
<section anchor="implementation-status"><name>Implementation Status</name>

<t>This section records the status of known implementations of the
algorithm defined by this specification at the time of posting of this
Internet-Draft, and is based on a proposal described in <xref target="RFC7942"></xref>. The
description of implementations in this section is intended to assist
the IETF in its decision processes in progressing drafts to RFCs.
Please note that the listing of any individual implementation here
does not imply endorsement by the IETF.  Furthermore, no effort has
been spent to verify the information presented here that was supplied
by IETF contributors.  This is not intended as, and must not be
construed to be, a catalog of available implementations or their
features.  Readers are advised to note that other implementations may
exist.</t>

<t>According to <xref target="RFC7942"></xref>, &quot;this will allow reviewers and working groups
to assign due consideration to documents that have the benefit of
running code, which may serve as evidence of valuable experimentation
and feedback that have made the implemented protocols more mature. It
is up to the individual working groups to use this information as they
see fit&quot;.</t>

<t>As of the time of writing, the following implementations of SEARCH
have been publicly released:</t>

<t>Linux TCP</t>

<t>Source code URL:</t>

<t><eref target="https://github.com/Project-Faster/tcp_ss_search.git">https://github.com/Project-Faster/tcp_ss_search.git</eref></t>

<t>Source: WPI
Maturity: production
License: GPL?
Contact: claypool@cs.wpi.edu
Last updated: May 2024</t>

<t>QUIC</t>

<t>Source code URLs:</t>

<t><eref target="https://github.com/Project-Faster/quicly/tree/generic-slowstart">https://github.com/Project-Faster/quicly/tree/generic-slowstart</eref>
<eref target="https://github.com/AmberCronin/quicly">https://github.com/AmberCronin/quicly</eref>
<eref target="https://github.com/AmberCronin/qperf">https://github.com/AmberCronin/qperf</eref></t>

<t>Source: WPI
Maturity: production
License: BSD-style
Contact: claypool@cs.wpi.edu
Last updated: May 2024</t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>This proposal makes no changes to the underlying security of transport
protocols or congestion control algorithms.  SEARCH shares the same
security considerations as the existing standard congestion control
algorithm <xref target="RFC5681"></xref>.</t>

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

<t>This document has no IANA actions. Here we are using that phrase,
suggested by <xref target="RFC8126"></xref>, because SEARCH does not modify or extend the
wire format of any network protocol, nor does it add new dependencies
on assigned numbers.  SEARCH involves only a change to the slow start
part of the congestion control algorithm of a transport sender, and
does not involve changes in the network, the receiver, or any network
protocol.</t>

<t>Note to RFC Editor: this section may be removed on publication as an RFC.</t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Much of the content of this draft is the result of discussions with
the Congestion Control Research Group (CCRG) at WPI
<eref target="https://web.cs.wpi.edu/~claypool/ccrg">https://web.cs.wpi.edu/~claypool/ccrg</eref>. In addition, feedback and
discussions of early versions of SEARCH with the technical group at
Viasat has been invaluable.</t>

</section>
<section anchor="references"><name>References</name>

</section>


  </middle>

  <back>


    <references title='Normative References' anchor="sec-normative-references">

&RFC2119;
&RFC5681;
&RFC7942;
&RFC8126;


    </references>

    <references title='Informative References' anchor="sec-informative-references">

<reference anchor="CKC24" target="https://web.cs.wpi.edu/~claypool/papers/quic-search-lanman-24/paper.pdf">
  <front>
    <title>Improving QUIC Slow Start Behavior in Wireless Networks with SEARCH</title>
    <author initials="A." surname="Cronin" fullname="Amber Cronin">
      <organization>Worcester Polytechnic Institute</organization>
    </author>
    <author initials="M." surname="Kachooei" fullname="Maryam Ataei Kachooei">
      <organization>Worcester Polytechnic Institute</organization>
    </author>
    <author initials="J." surname="Chung" fullname="Jae Won Chung">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="F." surname="Li" fullname="Feng Li">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="B." surname="Peters" fullname="Benjamin Peters">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="M." surname="Claypool" fullname="Mark Claypool">
      <organization>Worcester Polytechnic Institute</organization>
    </author>
    <date year="2024"/>
  </front>
  <seriesInfo name="Proceedings of the IEEE International Symposium on Local and Metropolitan Area Networks (LANMAN), Boston, MA, USA" value=""/>
</reference>
<reference anchor="KCL24" >
  <front>
    <title>Improving TCP Slow Start Performance in Wireless Networks with SEARCH</title>
    <author initials="M." surname="Kachooei" fullname="Maryam Ataei Kachooei">
      <organization>Worcester Polytechnic Institute</organization>
    </author>
    <author initials="J." surname="Chung" fullname="Jae Won Chung">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="F." surname="Li" fullname="Feng Li">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="B." surname="Peters" fullname="Benjamin Peters">
      <organization>Viasat Inc</organization>
    </author>
    <author initials="J." surname="Chung" fullname="Josh Chung">
      <organization>Lexington Christian Academy</organization>
    </author>
    <author initials="M." surname="Claypool" fullname="Mark Claypool">
      <organization>Worcester Polytechnic Institute</organization>
    </author>
    <date year="2024"/>
  </front>
  <seriesInfo name="The IEEE World of Wireless, Mobile and Multimedia Networks conference (WoWMoM), Perth, Australia" value=""/>
</reference>
<reference anchor="HYSTART" target="https://doi.org/10.1016/j.comnet.2011.01.014">
  <front>
    <title>Taming the Elephants: New TCP Slow Start</title>
    <author initials="S." surname="Ha" fullname="Sangtae Ha">
      <organization></organization>
    </author>
    <author initials="I." surname="Rhee" fullname="Injong Rhee">
      <organization></organization>
    </author>
    <date year="2024"/>
  </front>
  <seriesInfo name="Computer Networks vol. 55, no. 9, pp. 2092-2110, DOI 10.1016/j.comnet.2011.01.014" value=""/>
</reference>


    </references>


<?line 719?>

<section anchor="compat"><name>Historical Note</name>

<!--  LocalWords:  SEARCH: a New Slow Start Algorithm for TCP and QUIC 
-->
<!--  LocalWords:  
-->

</section>


  </back>

<!-- ##markdown-source:
H4sIAFvAhmcAA+19+XMbR5bm7/lX5MqxYUAGIAI8JGHa3qYo6pimjiGp4Uy4
HYxCIUGUVahC10EKrfD87fu+9zKzsgqA2t0RsxM7MQyHRaIqr5fv+N6RieFw
qKqkSs1UX52fXp690cOhjvR786Cv0pz+V0VFpU/Tu7xIquVKL/JCX5991FE2
1//y6e2ZVtFsVpj7qS5NVMRLreZ5nEUr6m9eRItqGC/r7G4Yxw93Q3ljeHBI
L0UVvTE5mBwPD8bD8ZFS3+myok5vozTP6FFV1EapZF3wr2U1OTh4fjBRUWGi
qb4xM57A26wyRWYqfV1EWbnOi0o93E01BlOfH6b++fAlpqLiqKJpVnNVVtTN
ip6fX79SKs7nSUbN6nIYlXGSqHUy1fTznY6jjD41OiqKaKN7yUJHaao3puxr
IsMyKpd6aQpDc9dDXeWx/FLSPAqzKO1fmxX/ofHCFI3pV/fKlIeZm0VUp1VJ
b7jn0kheV1FdLfNiqjT/DO2/WicZvfHPI30GEmv/sVD/nyOjb/JMHvpneUEL
/dckKqOKqBP7z90m3vMj/zEIZYhohwcH+n0SfzZFSV1ezgf6u/HBgX8tTqrN
VL+LinSWF3l9txzod6fN03xO8zkYPz2eBJ/VWVVQo09ZUpk52Kwypc4X+nRl
iiSO/JtmFSXpVP8amYc8GzE3/VFmOYrz1W6avBvpP0XxMs9N0qEKzXETrfRp
FZlk+x2mzk1exKYkxtEf83RTmXiZJTERqyQxqSuzRbKbj2+36EXEaVoQvTqU
8kPspNPJwfPfTyfdJdQqwto+26X98WGdjMy83k2nVyN90aXQK0O8dJH8/88x
C1rIKE1+D7OcpdFmnefpNrN83n7234FJYruoP8blyHGIyvKCmCe5N1NoLksr
XSziyXj8vPPR8cmzceejp8+PJp2Pno0nJzT05aszdDGVX9HU/oom9le8OiWF
ny2aWWh99qezyZEoPmukHr1drYv8nhS2mJ/ASL0wy+g+IcWcZPomKUxqypIM
WfWQF59L/UDmy5q4R9xhW6vShNtscUpsUeQZ9dXhitPVjLZdnv1DTPFfoKz+
M2zGLl3S7dAqE72vL72P+i9G+qOhZZXdHl+Y7NdoRbsij//mJPUWsf9zhL0k
QTMl2Jd49GORx8YAVbAUVktDUOP83OIR4u48i1J9tVmt8zKpV5pIfpHH9BFA
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
Hp9yAAA=

-->

</rfc>

