<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.34 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-boucadair-tcpm-rst-diagnostic-payload-17" category="exp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.32.0 -->
  <front>
    <title abbrev="RST Diagnostic Payload">TCP RST Diagnostic Payload</title>
    <seriesInfo name="Internet-Draft" value="draft-boucadair-tcpm-rst-diagnostic-payload-17"/>
    <author fullname="Mohamed Boucadair">
      <organization>Orange</organization>
      <address>
        <email>mohamed.boucadair@orange.com</email>
      </address>
    </author>
    <author fullname="Tirumaleswar Reddy">
      <organization>Nokia</organization>
      <address>
        <postal>
          <country>India</country>
        </postal>
        <email>kondtir@gmail.com</email>
      </address>
    </author>
    <author fullname="Jason Xing">
      <organization>Tencent</organization>
      <address>
        <email>kerneljasonxing@gmail.com</email>
      </address>
    </author>
    <date year="2026" month="March" day="16"/>
    <area/>
    <workgroup>TCP Maintenance and Minor Extensions</workgroup>
    <keyword>Service diagnostic</keyword>
    <abstract>
      <?line 54?>
<t>This document specifies an experimental diagnostic payload format returned in TCP
   RST segments. Such payloads are used to share with an endpoint the
   reasons for which a TCP connection has been reset.  Sharing this
   information is meant to ease diagnostic and troubleshooting.</t>
      <t>This specification builds on provisions that are already present in RFC 9293 "Transmission Control Protocol (TCP)".
   As such, this document does not require any change to RFC 9293.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    TCP Maintenance and Minor Extensions  mailing list (tcpm@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/tcpm/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/boucadair/draft-boucadair-tcpm-rst-diagnostic-payload"/>.</t>
    </note>
  </front>
  <middle>
    <?line 63?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A TCP connection <xref target="RFC9293"/> can be reset by a peer for various
   reasons, e.g., received data does not correspond to an active
   connection.  Also, a TCP connection can be reset by an on-path
   service function (e.g., Carrier Grade NAT (CGN) <xref target="RFC6888"/>, NAT64
   <xref target="RFC6146"/>, or firewall) for several reasons.  Typically, a Network
   Address Translator (NAT) function can generate an RST segment to
   notify an endpoint upon the expiry of the lifetime of the
   corresponding mapping entry or because an RST segment was received
   from a peer (<xref section="2.2" sectionFormat="of" target="RFC7857"/>).</t>
      <t>A TCP connection can also be
   closed by a user or an application at any time.  However, the peer
   that receives an RST segment does not have any hint about the reason
   that led to terminating the connection.  Likewise, the application
   that relies upon such a TCP connection may not easily identify the
   reason for the connection reset. Troubleshooting such events at
   the remote side of the connection that receives the RST segment may
   not be trivial.</t>
      <t>This document fills this void by specifying an experimental format of the
   diagnostic payload returned in an RST segment. This design is
   backward compatible with TCP as further clarified in <xref target="bc"/>.</t>
      <t>The generic procedure for processing an RST segment is specified in
   <xref section="3.5.3" sectionFormat="of" target="RFC9293"/>. Only the deviations from that procedure
   to insert and validate a diagnostic payload is provided in <xref target="payload"/>.</t>
      <t>This document specifies the format and the overall approach to ease
   maintaining the list of codes while allowing for adding new codes as
   needed in the future and accommodating any existing vendor-specific
   codes.  An initial version of error codes is available in <xref target="initial"/>.
   However, the authoritative source to retrieve the full list of error
   codes is the IANA-maintained registry (<xref target="causes"/>).</t>
      <t><xref target="examples"/> provides a set of examples to illustrate the use of TCP RST
   diagnostic payloads.</t>
      <t><xref target="socket-api"/> provides an informative discussion of socket API considerations.
   Implementation and experimental validation are detailed in <xref target="sec-validation"/>.</t>
      <t>Experiment goals are listed in <xref target="sec-goals"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>This document makes use of the terms defined in <xref section="4" sectionFormat="of" target="RFC9293"/>.</t>
      <t>SEG.LEN is defined in <xref section="3.3.1" sectionFormat="of" target="RFC9293"/>.</t>
      <t>This document uses the following terms:</t>
      <dl>
        <dt>RST diagnostic payload:</dt>
        <dd>
          <t>The payload of an RST message that conveys diagnostic data.</t>
        </dd>
        <dt>RST with diagnostic payload:</dt>
        <dd>
          <t>An RST segment that includes diagnostic payload.</t>
        </dd>
      </dl>
    </section>
    <section anchor="sec-goals">
      <name>Experiment Description &amp; Goals</name>
      <t>The main objective of this experiment is to have a common format
  of RST diagnostic payload that would be used as basis for consistent
  testing and evaluation in a variety of deployment contexts
  (Internet, data centers, application clients/servers provided and managed by the same entity,
  clients and servers software owned by distinct entities, etc.).</t>
      <t>Experiments reports are encouraged to share the main lessons
  learned in these experimentations. Specifically, the following items are of interest:</t>
      <dl>
        <dt>Delivery &amp; on-path device interference:</dt>
        <dd>
          <t>Identify and share issues or lack thereof related to the delivery of RST with diagnostic payload.</t>
        </dd>
        <dt>CPU/load impact:</dt>
        <dd>
          <t>Assess CPU/load impact (or lack thereof) of handling RSTs, including when a mix of RSTs with and without diagnostic payload are sent.</t>
        </dd>
        <dt>Standard reset reasons:</dt>
        <dd>
          <t>Assess whether the list of code reasons (<xref target="causes"/>) reflects most of reset cases.</t>
        </dd>
        <dt>Integration of socket API extensions:</dt>
        <dd>
          <t>Excercise the socket API extensions and identify any required adjustement (<xref target="socket-api"/>).</t>
        </dd>
        <dt>Operational guidance:</dt>
        <dd>
          <t>Strengthen the operationnal guidance for deploying RSTs with diagnostic payload.</t>
        </dd>
      </dl>
    </section>
    <section anchor="payload">
      <name>RST Diagnostic Payload</name>
      <section anchor="compact">
        <name>Payload Format</name>
        <t>This section defines the message format to convey RST diagnostic payload. This format is designed to minimize the length of the payload.</t>
        <t>The format of the RST diagnostic payload is shown in <xref target="format-1"/>.</t>
        <figure anchor="format-1">
          <name>Structure of the RST Diagnostic Payload</name>
          <artwork><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |             0x33AA            |          reason-code          |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                              pen                              |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>The RST diagnostic payload comprises a magic number that is used to
   unambiguously identify an RST payload that follows this
   specification.  It <bcp14>MUST</bcp14> be set to 0x33AA.</t>
        <t>The descriptions of other fields shown in <xref target="format-1"/> are as follows:</t>
        <dl>
          <dt>reason-code:</dt>
          <dd>
            <t>This field takes a value from an available registry (IANA or vendor-specific).</t>
          </dd>
          <dt/>
          <dd>
            <t>Value 0 is reserved and <bcp14>MUST NOT</bcp14> be used.</t>
          </dd>
          <dt/>
          <dd>
            <t>The reason code is taken from the "TCP Failure Causes" registry (<xref target="causes"/>) if "pen" is set to 0.</t>
          </dd>
          <dt/>
          <dd>
            <t>If the "pen" is not set to 0, then the reason code refers to the registry of the entity specified by the "pen" parameter.</t>
          </dd>
          <dt>pen:</dt>
          <dd>
            <t>Includes a Private Enterprise Number (PEN) <xref target="Private-Enterprise-Numbers"/>.</t>
          </dd>
          <dt/>
          <dd>
            <t>The reserved PEN value "0" is used to indicate that the reason code refers to the IANA-maintained registry (<xref target="causes"/>).</t>
          </dd>
        </dl>
        <t>SEG.LEN <bcp14>MUST</bcp14> be 8 for an RST with diagnostic payload.</t>
      </section>
      <section anchor="behavior">
        <name>Behavior</name>
        <t>Malformed RST diagnostic payloads that include the magic
   numbers 0x33AA <bcp14>MUST</bcp14> be silently ignored by the receiver.
   RSTs that carry such malformed diagnostic payloads are handled like an RST without payload.</t>
        <t>A peer that receives a valid diagnostic payload may pass the reset
   reason information to the local application in addition to the
   information (<bcp14>MUST</bcp14>-12) described in <xref section="3.6" sectionFormat="of" target="RFC9293"/>.  That
   information may also be logged locally, unless a local policy
   specifies otherwise.  How the information is passed to an application
   and how it is stored locally is implementation-specific.</t>
      </section>
    </section>
    <section anchor="examples">
      <name>Some Examples</name>
      <t><xref target="fig-1"/> depicts an example of an RST diagnostic payload that is
   generated to inform the peer that the TCP connection is reset because
   an ACK was received from that peer while the connection is still in
   the LISTEN state (<xref section="3.10.7.2" sectionFormat="of" target="RFC9293"/>).</t>
      <figure anchor="fig-1">
        <name>Example of an RST Diagnostic Payload with Reason Code</name>
        <artwork><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |             0x33AA            |               0x02            |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                              0x00                             |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t>An RST diagnostic payload may also be sent by an on-path service
   function.  For example, the following diagnostic payload is returned
   by a NAT function upon expiry of the mapping entry to which the TCP
   connection is bound (<xref target="fig-2"/>).</t>
      <figure anchor="fig-2">
        <name>Example of an RST Diagnostic Payload to Report Connection Timeout</name>
        <artwork><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |             0x33AA            |              0x0E             |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                              0x00                             |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t><xref target="fig-3"/> illustrates an RST diagnostic payload that is returned by a
   peer that resets a TCP connection for a reason code 1234 defined by a
   vendor with the private enterprise number 32473 (0x7D9).</t>
      <figure anchor="fig-3">
        <name>Example of an RST Diagnostic Payload to Report Vendor-Specific Reason Code</name>
        <artwork><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |             0x33AA            |              0x4DE            |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                             0x7D9                             |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t><xref target="fig-3"/> uses the Enterprise Number 32473 defined for documentation
   use <xref target="RFC5612"/>.</t>
    </section>
    <section anchor="ops-cons">
      <name>Operational Considerations</name>
      <section anchor="bc">
        <name>Backward Compatibility</name>
        <t>Returning diagnostic data in an RST segment is consistent with
   the provision in <xref section="3.5.3" sectionFormat="of" target="RFC9293"/> for RST segments, especially:</t>
        <blockquote>
          <t>"TCP implementations <bcp14>SHOULD</bcp14> allow a received RST segment to
 include data (SHLD-2)."</t>
        </blockquote>
        <t>Also, this document does not change the conditions under which an RST
   segment is generated (<xref section="3.5.2" sectionFormat="of" target="RFC9293"/>).</t>
      </section>
      <section anchor="multiple-rsts">
        <name>Multiple RSTs</name>
        <t>Per <xref section="3.6" sectionFormat="of" target="RFC9293"/>, one or more RST segments can be sent
   to reset a connection.</t>
        <t>Sending more RST segments to reset a connection can be used
   to mitigate deployment contexts where some on-path devices may
   discard RSTs with payload data.</t>
        <t>Whether a TCP endpoint elects to send more
   than one RST with only a subset of them that include the diagnostic
   payload is implementation-specific.</t>
      </section>
      <section anchor="manageability">
        <name>Manageability</name>
        <t>TCP server implementations should support the following parameters:</t>
        <ul spacing="normal">
          <li>
            <t>A parameter to control the activation of RSTs with diagnostic payload.</t>
          </li>
          <li>
            <t>A parameter to control whether "empty" RSTs are also sent together with an RST with diagnostic payload.</t>
          </li>
          <li>
            <t>A rate-limit of RSTs with diagnostic payload.</t>
          </li>
          <li>
            <t>Counters to track sent/received RSTs with diagnostic payload.</t>
          </li>
          <li>
            <t>Counters to track received invalid RSTs with diagnostic payload.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="socket-api">
      <name>Socket API Considerations (Informative)</name>
      <t>This section describes how the socket API  can  be extended to provide a way
for an application to use the functionality described in this document.</t>
      <t>This section is informational only.</t>
      <t>The API described in this section can change in a non-backwards compatible way
during the evolution of this document due to changed functionality or gained
experience during the implementation.</t>
      <section anchor="socket-options">
        <name>Socket Options</name>
        <t><xref target="socket-options-table"/> provides an overview of the <tt>IPPROTO_TCP</tt>-level socket
options defined in this section.</t>
        <table anchor="socket-options-table">
          <name>Socket Options</name>
          <thead>
            <tr>
              <th align="left">Option Name</th>
              <th align="left">Data Type</th>
              <th align="left">Set</th>
              <th align="left">Get</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>TCP_RST_REASON_ENABLE</tt></td>
              <td align="left">
                <tt>uint32_t</tt></td>
              <td align="left">X</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">
                <tt>TCP_RST_REASON_CODE</tt></td>
              <td align="left">
                <tt>struct tcp_rst_reason</tt></td>
              <td align="left">X</td>
              <td align="left">X</td>
            </tr>
          </tbody>
        </table>
        <section anchor="enable-the-sending-of-the-diagnostic-payload-tcprstreasonenable">
          <name>Enable the Sending of the Diagnostic Payload (<tt>TCP_RST_REASON_ENABLE</tt>)</name>
          <t>Using <tt>setsockopt()</tt> with the <tt>IPPROTO_TCP</tt>-level socket option with the
name <tt>TCP_RST_REASON_ENABLE</tt> enables or disabled the sending of the
diagnostic payload using a reason-code and pen.
The <tt>option_value</tt> of type <tt>uint32_t</tt> specifies the pen in host byte order
to use.
When 0 is used (<xref section="3" sectionFormat="of" target="RFC9371"/>), the reason-codes from the registry
specified in <xref target="causes"/> are used.
When 0xffffffff is used (<xref section="3" sectionFormat="of" target="RFC9371"/>), the sending is disabled.
The default is that the sending of a diagnostic payload is disabled.
An implementation might not support the use of PENs different from zero and
0xffffffff.</t>
        </section>
        <section anchor="get-or-set-the-diagnostic-payload-as-code-tcprstreasoncode">
          <name>Get or Set the Diagnostic Payload as Code (<tt>TCP_RST_REASON_CODE</tt>)</name>
          <t>Using <tt>getsockopt()</tt> with the <tt>IPPROTO_TCP</tt>-level socket option with the
name <tt>TCP_RST_REASON_CODE</tt> allows the caller to retrieve the reason-code and
the pen of the diagnostic payload in the received RST segment, which terminated
the corresponding TCP connection.</t>
          <t>Using <tt>setsockopt()</tt> with this socket option allows the caller to provide
reason-code and pen to be sent as part of the diagnostic payload when the
application triggers the sending of a RST segment by using <tt>close()</tt>.
In addition to using <tt>close()</tt> in combination with the <tt>SOL_SOCKET</tt>-level
socket option with name <tt>SO_LINGER</tt>, the application can just provide the
<tt>TCP_RR_RST_ON_CLOSE</tt> flag in <tt>trr_flags</tt>. This way the application can
trigger the sending of a RST segment by calling <tt>setsockopt()</tt> once followed
by <tt>close()</tt>.</t>
          <t>For accepted sockets, this socket option is inherited from the listening socket.</t>
          <t>The following structure is used as the <tt>option_value</tt>:</t>
          <sourcecode type="c"><![CDATA[
struct tcp_rst_reason {
        uint16_t trr_flags;
        uint16_t trr_code;
        uint32_t trr_pen;
};
]]></sourcecode>
          <dl>
            <dt><tt>trr_flags</tt>:</dt>
            <dd>
              <dl>
                <dt>This field is reported as 0 for <tt>getsockopt()</tt> calls. For <tt>setsockopt()</tt></dt>
                <dd>
                  <t/>
                </dd>
                <dt>calls, the following flag can be used:</dt>
                <dd>
                  <t/>
                </dd>
                <dt><tt>TCP_RR_RST_ON_CLOSE</tt>:</dt>
                <dd>
                  <t>When this flag is set, calling <tt>close()</tt> triggers the sending of a RST segment
similar to case, where the <tt>SOL_SOCKET</tt>-level socket option with name
<tt>SO_LINGER</tt> is used to enable lingering with the linger time of 0.
When this flag is cleared, the corresponding functionality is disabled.</t>
                </dd>
              </dl>
            </dd>
            <dt><tt>trr_code</tt>:</dt>
            <dd>
              <t>The reason-code in host byte order to be interpreted in combination with
the PEN provided in <tt>trr_pen</tt>. In case of <tt>trr_pen</tt> being
zero, <tt>trr_code</tt> refers to a value in the registry defined in
<xref target="causes"/>.</t>
            </dd>
            <dt><tt>trr_pen</tt>:</dt>
            <dd>
              <t>The PEN in host byte order to is used in combination with the reason-code
specified in <tt>trr_code</tt>.
When this socket option is used with <tt>setsockopt()</tt>, it is an error to use
zero as a value for <tt>trr_pen</tt> as long as <tt>trr_code</tt> is not
zero.</t>
            </dd>
          </dl>
          <t>When <tt>getsockopt()</tt> with this socket option is performed on a socket, which
has not received a RST with a diagnostic payload containing a reason-code and
pen, zero is provided as the <tt>trr_code</tt> and <tt>trr_pen</tt>.
When <tt>setsockopt()</tt> with a <tt>trr_code</tt> and <tt>trr_pen</tt> of zero
is performed, the special handling of RST segments sent during the ungraceful
termination of the TCP connection is disabled.</t>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t><xref target="RFC9293"/> discusses TCP-related security considerations. In
   particular, RST-specific attacks and their mitigations are discussed
   in <xref section="3.10.7.3" sectionFormat="of" target="RFC9293"/>.</t>
      <t>The presence of vendor-specific reason codes may be used
   to fingerprint hosts.  Such a concern does not apply if the reason
   codes are taken from the IANA-maintained registry.  Implementers are,
   thus, encouraged to register new codes within IANA instead of
   maintaining specific registries.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="causes">
        <name>New Registry for TCP Failure Causes</name>
        <t>This document requests IANA to create a new registry entitled "TCP
   Failure Causes" under the "Transmission Control Protocol (TCP)
   Parameters" registry group <xref target="IANA-TCP"/>.</t>
        <t>Values are taken from the 1-65535 range.</t>
        <t>The assignment policy for this registry is "Expert Review"
   (<xref section="4.5" sectionFormat="of" target="RFC8126"/>). See more guidance at <xref target="de"/>.</t>
        <t>The registry is initially populated with the values listed in
   <xref target="initial"/>.</t>
        <table anchor="initial">
          <name>Initial TCP Failure Causes</name>
          <thead>
            <tr>
              <th align="center">Value</th>
              <th align="left">Description</th>
              <th align="left">Specification (if available)</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center">0</td>
              <td align="left">Reserved</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">1</td>
              <td align="left">Illegal Option</td>
              <td align="left">
                <xref section="3.1" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">2</td>
              <td align="left">Desynchronized state</td>
              <td align="left">
                <xref section="3.5.1" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">3</td>
              <td align="left">New data is received after CLOSE is called</td>
              <td align="left">Sections 3.6.1 and  3.10.7.1 of <xref target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">4</td>
              <td align="left">ABORT Process</td>
              <td align="left">
                <xref section="3.10.5" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">5</td>
              <td align="left">Unexpected ACK received by non-synchronized state connection</td>
              <td align="left">
                <xref section="3.10.7" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">6</td>
              <td align="left">Unexpected SYN in the window</td>
              <td align="left">
                <xref section="3.10.7" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">7</td>
              <td align="left">Unexpected security compartment</td>
              <td align="left">
                <xref section="A.1" sectionFormat="of" target="RFC9293"/></td>
            </tr>
            <tr>
              <td align="center">8</td>
              <td align="left">Malformed Message</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">9</td>
              <td align="left">Not Authorized</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">10</td>
              <td align="left">Resource Exceeded</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">11</td>
              <td align="left">Network Failure</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">12</td>
              <td align="left">Reset received from the peer</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">13</td>
              <td align="left">Destination Unreachable</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">14</td>
              <td align="left">Connection Timeout</td>
              <td align="left">ThisDocument</td>
            </tr>
            <tr>
              <td align="center">15</td>
              <td align="left">Too much outstanding data</td>
              <td align="left">
                <xref section="3.6" sectionFormat="of" target="RFC8684"/></td>
            </tr>
            <tr>
              <td align="center">16</td>
              <td align="left">Unacceptable performance</td>
              <td align="left">
                <xref section="3.6" sectionFormat="of" target="RFC8684"/></td>
            </tr>
            <tr>
              <td align="center">17</td>
              <td align="left">Middlebox interference</td>
              <td align="left">
                <xref section="3.6" sectionFormat="of" target="RFC8684"/></td>
            </tr>
          </tbody>
        </table>
        <t>Note that codes in the 8-14 range can be used by service functions (CGN, firewall, proxy, etc.).</t>
        <ul empty="true">
          <li>
            <t>Note to the RFC Editor: Please replace ThisDocument with the RFC number assigned to this document.</t>
          </li>
        </ul>
      </section>
      <section anchor="de">
        <name>Guidelines for the Designated Experts</name>
        <t>Criteria that should be applied by the designated experts include
   determining whether the proposed registration duplicates existing
   entries and whether the registration description is clear and fits
   the purpose of this registry.</t>
        <t>The designated experts may approve registration once they checked
   that the new requested code is not covered by an existing code and if
   the provided reasoning to register the new code is acceptable.  A
   registration request may supply a pointer to a specification where
   that code is defined.  However, a registration may be accepted even
   if no permanent and readily available public specification is
   available.</t>
        <t>Registration requests are to be sent to <eref target="mailto:rst-diag-review@ietf.org">rst-diag-review@ietf.org</eref>
   and are evaluated within a three-week review period on the advice of
   one or more designated experts.  Within the review period, the
   designated experts will either approve or deny the registration
   request, communicating this decision to the review list and IANA.
   Denials should include an explanation and, if applicable, suggestions
   as to how to make the request successful.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9293">
          <front>
            <title>Transmission Control Protocol (TCP)</title>
            <author fullname="W. Eddy" initials="W." role="editor" surname="Eddy"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies the Transmission Control Protocol (TCP). TCP is an important transport-layer protocol in the Internet protocol stack, and it has continuously evolved over decades of use and growth of the Internet. Over this time, a number of changes have been made to TCP as it was specified in RFC 793, though these have only been documented in a piecemeal fashion. This document collects and brings those changes together with the protocol specification from RFC 793. This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093, 6429, 6528, and 6691 that updated parts of RFC 793. It updates RFCs 1011 and 1122, and it should be considered as a replacement for the portions of those documents dealing with TCP requirements. It also updates RFC 5961 by adding a small clarification in reset handling while in the SYN-RECEIVED state. The TCP header control bits from RFC 793 have also been updated based on RFC 3168.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="9293"/>
          <seriesInfo name="DOI" value="10.17487/RFC9293"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC8684">
          <front>
            <title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
            <author fullname="A. Ford" initials="A." surname="Ford"/>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="O. Bonaventure" initials="O." surname="Bonaventure"/>
            <author fullname="C. Paasch" initials="C." surname="Paasch"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>TCP/IP communication is currently restricted to a single path per connection, yet multiple paths often exist between peers. The simultaneous use of these multiple paths for a TCP/IP session would improve resource usage within the network and thus improve user experience through higher throughput and improved resilience to network failure.</t>
              <t>Multipath TCP provides the ability to simultaneously use multiple paths between peers. This document presents a set of extensions to traditional TCP to support multipath operation. The protocol offers the same type of service to applications as TCP (i.e., a reliable bytestream), and it provides the components necessary to establish and use multiple TCP flows across potentially disjoint paths.</t>
              <t>This document specifies v1 of Multipath TCP, obsoleting v0 as specified in RFC 6824, through clarifications and modifications primarily driven by deployment experience.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8684"/>
          <seriesInfo name="DOI" value="10.17487/RFC8684"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="IANA-TCP" target="https://www.iana.org/assignments/tcp-parameters/tcp-parameters.xhtml#">
          <front>
            <title>Transmission Control Protocol (TCP) Parameters</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="Private-Enterprise-Numbers" target="https://www.iana.org/assignments/enterprise-numbers">
          <front>
            <title>Private Enterprise Numbers</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="RFC6888">
          <front>
            <title>Common Requirements for Carrier-Grade NATs (CGNs)</title>
            <author fullname="S. Perreault" initials="S." role="editor" surname="Perreault"/>
            <author fullname="I. Yamagata" initials="I." surname="Yamagata"/>
            <author fullname="S. Miyakawa" initials="S." surname="Miyakawa"/>
            <author fullname="A. Nakagawa" initials="A." surname="Nakagawa"/>
            <author fullname="H. Ashida" initials="H." surname="Ashida"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>This document defines common requirements for Carrier-Grade NATs (CGNs). It updates RFC 4787.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="127"/>
          <seriesInfo name="RFC" value="6888"/>
          <seriesInfo name="DOI" value="10.17487/RFC6888"/>
        </reference>
        <reference anchor="RFC6146">
          <front>
            <title>Stateful NAT64: Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers</title>
            <author fullname="M. Bagnulo" initials="M." surname="Bagnulo"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="I. van Beijnum" initials="I." surname="van Beijnum"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document describes stateful NAT64 translation, which allows IPv6-only clients to contact IPv4 servers using unicast UDP, TCP, or ICMP. One or more public IPv4 addresses assigned to a NAT64 translator are shared among several IPv6-only clients. When stateful NAT64 is used in conjunction with DNS64, no changes are usually required in the IPv6 client or the IPv4 server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6146"/>
          <seriesInfo name="DOI" value="10.17487/RFC6146"/>
        </reference>
        <reference anchor="RFC7857">
          <front>
            <title>Updates to Network Address Translation (NAT) Behavioral Requirements</title>
            <author fullname="R. Penno" initials="R." surname="Penno"/>
            <author fullname="S. Perreault" initials="S." surname="Perreault"/>
            <author fullname="M. Boucadair" initials="M." role="editor" surname="Boucadair"/>
            <author fullname="S. Sivakumar" initials="S." surname="Sivakumar"/>
            <author fullname="K. Naito" initials="K." surname="Naito"/>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document clarifies and updates several requirements of RFCs 4787, 5382, and 5508 based on operational and development experience. The focus of this document is Network Address Translation from IPv4 to IPv4 (NAT44).</t>
              <t>This document updates RFCs 4787, 5382, and 5508.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="127"/>
          <seriesInfo name="RFC" value="7857"/>
          <seriesInfo name="DOI" value="10.17487/RFC7857"/>
        </reference>
        <reference anchor="RFC5612">
          <front>
            <title>Enterprise Number for Documentation Use</title>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="D. Harrington" initials="D." surname="Harrington"/>
            <date month="August" year="2009"/>
            <abstract>
              <t>This document describes an Enterprise Number (also known as SMI Network Management Private Enterprise Code) for use in documentation. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5612"/>
          <seriesInfo name="DOI" value="10.17487/RFC5612"/>
        </reference>
        <reference anchor="RFC9371">
          <front>
            <title>Registration Procedures for Private Enterprise Numbers (PENs)</title>
            <author fullname="A. Baber" initials="A." surname="Baber"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="March" year="2023"/>
            <abstract>
              <t>This document describes how Private Enterprise Numbers (PENs) are registered by IANA. It shows how to request a new PEN and how to modify a current PEN. It also gives a brief overview of PEN uses.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9371"/>
          <seriesInfo name="DOI" value="10.17487/RFC9371"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
      </references>
    </references>
    <?line 477?>

<section anchor="sec-validation">
      <name>Implementation and Experimental Validation in Linux</name>
      <t>Questions and concerns have been raised regarding whether RST with payload affects the normal termination of flows across different software platforms, operating systems, middleboxes, etc. Even though <xref section="3.5.3" sectionFormat="of" target="RFC9293"/> explicitly allows this behavior, a full implementation is needed to widely verify if unexpected cases can happen in the real world.</t>
      <t>The overall design in Linux is to pre-allocate a large enough zeroed buffer, put a reset reason code in the first byte and sent it out to verify whether the RST with payload can be possibly declined by any equipment in between two sides and the other side successfully parses the RST with payload.</t>
      <section anchor="implementation">
        <name>Implementation</name>
        <t>The following implementation is accomplished on top of Linux 6.16:</t>
        <dl>
          <dt><strong>Payload Attachment</strong>:</dt>
          <dd>
            <t>Allocate a 1000-byte data payload attached to all generated RST packets.</t>
          </dd>
          <dt><strong>Reason Code Encoding</strong>:</dt>
          <dd>
            <t>The first byte of the payload is used to store a predefined reset reason code that is listed in include/net/rstreason.h file, while the remainder of the payload is zero-padded. The reason code is generated by the existing mechanism called <eref target="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d5115a55ffb52">TCP reset reasons</eref>.</t>
          </dd>
          <dt><strong>Handling of Reset Types</strong>:</dt>
          <dd>
            <t>The implementation distinguishes between the two primary reset scenarios in <tt>tcp_send_active_reset()</tt> and <tt>tcp_v4_send_reset()</tt> respectively:
</t>
            <ul spacing="normal">
              <li>
                <t>For an <strong>Active Reset</strong>, initiated proactively by the local system, the payload is placed in the linear area of the socket buffer (<tt>sk_buff</tt>).</t>
              </li>
              <li>
                <t>For a <strong>Passive Reset</strong>, sent in response to an unexpected or invalid incoming packet, the payload is stored in the non-linear (paged) area of the <tt>sk_buff</tt>.</t>
              </li>
            </ul>
          </dd>
        </dl>
        <t>Complete patch is shown in <xref target="patch"/>.</t>
        <figure anchor="patch">
          <name>Complete Patch</name>
          <artwork><![CDATA[
diff --git a/include/net/tcp.h b/include/net/tcp.h
index b3815d104340..0b32257774c8 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -62,6 +62,7 @@ void tcp_time_wait(struct sock *sk, int state, int timeo);
 #define MAX_TCP_OPTION_SPACE 40
 #define TCP_MIN_SND_MSS                48
 #define TCP_MIN_GSO_SIZE       (TCP_MIN_SND_MSS - MAX_TCP_OPTION_SPACE)
+#define PAYLOAD_LEN 1000

 /*
  * Never offer a window over 32767 without using window scaling. Some
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 84d3d556ed80..49250e6bd6a1 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -741,6 +741,7 @@ static bool tcp_v4_ao_sign_reset(const struct sock *sk, struct sk_buff *skb,
 static void tcp_v4_send_reset(const struct sock *sk, struct sk_buff *skb,
                              enum sk_rst_reason reason)
 {
+       u32 len = sizeof(struct tcphdr) + REPLY_OPTIONS_LEN + PAYLOAD_LEN;
        const struct tcphdr *th = tcp_hdr(skb);
        struct {
                struct tcphdr th;
@@ -757,6 +758,7 @@ static void tcp_v4_send_reset(const struct sock *sk, struct sk_buff *skb,
 #endif
        u64 transmit_time = 0;
        struct sock *ctl_sk;
+       char buffer[len];
        struct net *net;
        u32 txhash = 0;

@@ -786,7 +788,8 @@ static void tcp_v4_send_reset(const struct sock *sk, struct sk_buff *skb,
        }

        memset(&arg, 0, sizeof(arg));
-       arg.iov[0].iov_base = (unsigned char *)&rep;
+       memset(&buffer, 0, len);
+       arg.iov[0].iov_base = (unsigned char *)buffer;
        arg.iov[0].iov_len  = sizeof(rep.th);

        net = sk ? sock_net(sk) : skb_dst_dev_net_rcu(skb);
@@ -911,6 +914,10 @@ static void tcp_v4_send_reset(const struct sock *sk, struct sk_buff *skb,
                ctl_sk->sk_mark = 0;
                ctl_sk->sk_priority = 0;
        }
+       memcpy(buffer, (char *)&rep, arg.iov[0].iov_len);
+       /* put rst reason into the first byte in payload */
+       buffer[arg.iov[0].iov_len] = reason;
+       arg.iov[0].iov_len += PAYLOAD_LEN;
        ip_send_unicast_reply(ctl_sk, sk,
                              skb, &TCP_SKB_CB(skb)->header.h4.opt,
                              ip_hdr(skb)->saddr, ip_hdr(skb)->daddr,
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index b616776e3354..c07dd009a0de 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -3628,12 +3628,14 @@ void tcp_send_fin(struct sock *sk)
 void tcp_send_active_reset(struct sock *sk, gfp_t priority,
                           enum sk_rst_reason reason)
 {
+       u32 len = MAX_TCP_HEADER + PAYLOAD_LEN;
+       char payload[PAYLOAD_LEN];
        struct sk_buff *skb;

        TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);

        /* NOTE: No TCP options attached and we never retransmit this. */
-       skb = alloc_skb(MAX_TCP_HEADER, priority);
+       skb = alloc_skb(len, priority);
        if (!skb) {
                NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
                return;
@@ -3641,8 +3643,13 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority,

        /* Reserve space for headers and prepare control bits. */
        skb_reserve(skb, MAX_TCP_HEADER);
+       skb_put(skb, PAYLOAD_LEN);
        tcp_init_nondata_skb(skb, tcp_acceptable_seq(sk),
                             TCPHDR_ACK | TCPHDR_RST);
+       memset(payload, 0, PAYLOAD_LEN);
+       payload[0] = reason;
+       skb_store_bits(skb, 0, payload, PAYLOAD_LEN);
+       TCP_SKB_CB(skb)->end_seq += PAYLOAD_LEN;
        tcp_mstamp_refresh(tcp_sk(sk));
        /* Send it off. */
        if (tcp_transmit_skb(sk, skb, 0, priority))
]]></artwork>
        </figure>
      </section>
      <section anchor="experimental-validation">
        <name>Experimental Validation</name>
        <t>To ensure a thorough evaluation, a multi-layered experimental methodology was designed, progressing from basic functional checks to complex, real-world compatibility and stability tests. The whole implementation has been deployed in Tencent's production environment for almost six months.</t>
        <section anchor="functional-verification">
          <name>Functional Verification</name>
          <t>The basic functionality test is using iperf or iperf3 to construct a normal termination senario. The <tt>tcpdump</tt> tool with <tt>-X</tt> option effectively helps to show the <tt>[RST+]</tt> flag and the 1000-byte payload, confirming that the kernel correctly generated and transmitted the augmented RST packets.</t>
          <t>Two servers, designated as Client A and Server B. The test is conducted as following:</t>
          <ol spacing="normal" type="1"><li>
              <t>Start the <tt>iperf3</tt> server on Server B (<tt>iperf3 -s</tt>).</t>
            </li>
            <li>
              <t>Initiate a connection from Client A to Server B (<tt>iperf3 -c [IP_of_B]</tt>).</t>
            </li>
            <li>
              <t>After the connection is established, one of the <tt>iperf3</tt> processes is terminated using the <tt>kill</tt> command, triggering the kernel to send an RST packet.</t>
            </li>
            <li>
              <t>Simultaneously, <tt>tcpdump</tt> is run on either host to capture the reset packet using the filter: <tt>'tcp[tcpflags] &amp; tcp-rst != 0' -X -nn -vv -S</tt>.</t>
            </li>
          </ol>
        </section>
        <section anchor="compatibility-verification">
          <name>Compatibility Verification</name>
          <dl>
            <dt><strong>Hardwares and Kernels</strong>:</dt>
            <dd>
              <t>Tests were conducted on various Linux distributions (e.g., Ubuntu or CentOS) with different kernel versions. The physical hosts were equipped with a range of network interface cards (NICs), including Intel <tt>i40e</tt>, <tt>ixgbe</tt>, and Mellanox <tt>mlx5</tt>.</t>
            </dd>
            <dt><strong>Virtualization</strong>:</dt>
            <dd>
              <t>The mechanism was tested in a virtualized environment where the VM used a <tt>virtio_net</tt> driver and the host employed DPDK to redirect packets in the host.</t>
            </dd>
            <dt><strong>Middleboxes</strong>:</dt>
            <dd>
              <t>Tests were performed with Layer 4 (L4) and Layer 7 (L7) gateways placed between the client and server to verify correct packet parsing and forwarding.</t>
            </dd>
            <dt><strong>Wide Area Network (WAN)</strong>:</dt>
            <dd>
              <t>The setup was tested over long-haul international links to simulate complex conditions, including China-to-Singapore (RTT &gt; 30ms) and China-to-Germany (RTT &gt; 200ms).</t>
            </dd>
          </dl>
          <t>In conclusion, across all complex environment tests, the RST packets with payloads were successfully received by the peer. No instances of packets being dropped or mishandled by intermediate middleboxes, gateways, or diverse hardware and software configurations were observed.</t>
        </section>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The "diagnostic payload" name is inspired by <xref section="5.5.2" sectionFormat="of" target="RFC7252"/>
  that was cited by Carsten Bormann in the tcpm mailing list.</t>
      <t>Thanks to Jon Shallow, Neal Cardwell, Lars Eggert, Eric Dumazet, Rick Jones, Yoshifumi Nishida, Li Jinghui, Gleb Smirnoff, and Michael Tuexen for the reveiw and comments.</t>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact fullname="Michael Tüxen">
        <organization/>
        <address>
          <email>tuexen@fh-muenster.de</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
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
izKy5qI7E3qfyA/Gef8f9hGhdqVyAAA=

-->

</rfc>
