<?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.29 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-multipath-20" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Multiple Paths for QUIC">Managing multiple paths for a QUIC connection</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-20"/>
    <author fullname="刘彦梅" asciiFullname="Yanmei Liu" role="editor">
      <organization>Alibaba Inc.</organization>
      <address>
        <email>miaoji.lym@alibaba-inc.com</email>
      </address>
    </author>
    <author fullname="马云飞" asciiFullname="Yunfei Ma">
      <organization>Uber Technologies Inc.</organization>
      <address>
        <email>yunfei.ma@uber.com</email>
      </address>
    </author>
    <author initials="Q." surname="De Coninck" fullname="Quentin De Coninck" role="editor">
      <organization>University of Mons (UMONS)</organization>
      <address>
        <email>quentin.deconinck@umons.ac.be</email>
      </address>
    </author>
    <author initials="O." surname="Bonaventure" fullname="Olivier Bonaventure">
      <organization>UCLouvain and WELRI</organization>
      <address>
        <email>olivier.bonaventure@uclouvain.be</email>
      </address>
    </author>
    <author initials="C." surname="Huitema" fullname="Christian Huitema">
      <organization>Private Octopus Inc.</organization>
      <address>
        <email>huitema@huitema.net</email>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind" role="editor">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <date/>
    <area>Transport</area>
    <workgroup>QUIC Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 82?>

<t>This document specifies a multipath extension for the QUIC protocol to
enable the simultaneous usage of multiple paths for a single connection.
It introduces explicit path identifiers to create, delete, and manage multiple paths.
This document does not specify address discovery or management, nor
how applications using QUIC schedule traffic over multiple paths.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    QUIC Working Group mailing list (quic@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/quicwg/multipath"/>.</t>
    </note>
  </front>
  <middle>
    <?line 90?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an extension to QUIC version 1 <xref target="QUIC-TRANSPORT"/>
to enable the simultaneous usage of multiple paths for a single
connection, using the same or different 4-tuples (of source/destination
port numbers and source/destination IP addresses).</t>
      <t>Connection migration as specified in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>
directs a peer to switch sending through
a new preferred path, and, if successful, to release resources
associated with the old path. The multipath extension specified in this document
builds on this mechanism but introduces a path identifier, or path ID,
to manage connection IDs and packet number spaces per path, enabling the use
of multiple paths simultaneously. As such, a path in this extension is defined
by its path ID. Note that it therefore is possible to have multiple paths/paths ID for the same 4-tuple.</t>
      <t>The connection ID of a packet binds the packet to a path ID, and therefore
to a packet number space. That means each connection ID is associated with exactly one path ID
but multiple connection IDs are usually issued for each path ID.
The same path ID is used in both directions, starting with 0 for the initial path.
Path IDs are generated monotonically increasing and cannot be reused.</t>
      <t>This extension uses multiple packet number spaces, one for each path.
Each path ID-specific packet number space starts at packet number 0.
As such, each path maintains distinct packet number states for sending and receiving packets, as in <xref target="QUIC-TRANSPORT"/>.
Using multiple packet number spaces enables direct use of the
loss detection and congestion control mechanisms defined in
<xref target="QUIC-RECOVERY"/> on a per-path basis.
However, use of multiple packet number spaces requires
non-zero connection IDs in order to identify the path and the respective
packet number space as well as a modified AEAD calculation including the
path ID (see <xref target="nonce"/>).</t>
      <t>As such, this extension specifies a departure from the specification of
path management in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/> and therefore
requires a new transport parameter, as specified in <xref target="nego"/>, to indicate
support of the multipath extension specified in this document.</t>
      <t>Further, this document specifies the needed path management mechanisms for path
initiation in <xref target="path-initiation"/>, handling of per-path connection IDs in <xref target="consume-retire-cid"/>,
signaling of preferred path usage in <xref target="path-state"/>, and explicit
removal of paths that have been abandoned in <xref target="path-close"/>.
Note that in this extension, a QUIC server does not initiate the creation
of a path, but it has to validate a new path created by a client.</t>
      <t>This extension does not cover address discovery and management.
The extension specified in this document can be used as it if address
management and the actual decision to set up or tear down paths are
handled by the application. This document does not prevent future extensions from
defining mechanisms to cope with the remaining scenarios.</t>
      <t>Further, this document does not specify scheduling algorithms that define
how multiple, simultaneously open paths are used to send packets.
As these differ depending on application requirements,
only some basic implementation guidance is discussed in <xref target="impl-consideration"/>.
This extension can be used with different scheduling algorithms that,
e.g., can range from support for failover to simultaneous
use of the aggregated capacity across all open paths.
There are currently no IETF specifications that define scheduling
algorithms for simultaneously (i.e., concurrently) using multiple paths.</t>
      <t>Specifically, while failover between Wi-Fi
and mobile networks is a well-known multipath use case,
it only temporarily uses two paths at the same time
to avoid transmission pauses.
Simultaneous path usage generally, however, needs more consideration
than specified in this document to avoid negative performance
impacts, e.g., when stream data is distributed over multiple paths with
different delays.</t>
      <t>The operational considerations for QUIC are addressed in <xref target="RFC9312"/>.
They also apply to QUIC connections using the extensions defined in this
document. An additional complexity is that applications might use a combination
of monitored and non-monitored paths, but that complexity already
exists when using path migration as defined in <xref target="QUIC-TRANSPORT"/>.</t>
      <section anchor="definition">
        <name>Conventions and Definitions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP 14
<xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>
        <t>This document uses the terminology defined in <xref target="QUIC-TRANSPORT"/>.
When this document uses the term "path", it refers
to the notion of "network path" used in <xref target="QUIC-TRANSPORT"/>.</t>
        <t>The packet diagrams in this document use the conventions defined
in <xref section="1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, including the notation (i) to denote
variable-length integers, encoded as specified in <xref section="16" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
      </section>
    </section>
    <section anchor="connection-lifecycle-and-packet-protection">
      <name>Connection Lifecycle and Packet Protection</name>
      <t>This document defines a new transport parameter initial_max_path_id
to indicate the support of the multipath extension.
If either of the endpoints does not advertise the initial_max_path_id transport
parameter, then both endpoints MUST NOT use any frame or
mechanism defined in this document.
If both endpoints advertise the initial_max_path_id transport parameter, once the handshake is completed
a new AEAD usage applies to all 1-RTT packets, as specified in <xref target="nonce"/>,
and new paths can be used, as specified in <xref target="path-management"/>.
As specified in <xref target="frames"/>, the new frames defined in this document can
only be sent in 1-RTT packets.</t>
      <t>The transport parameter negotiation enables incremental deployment of implementations
of the multipath extension.</t>
      <section anchor="nego">
        <name>initial_max_path_id Transport Parameter</name>
        <t>The new transport parameter is defined as follows:</t>
        <ul spacing="normal">
          <li>
            <t>initial_max_path_id (parameter ID 0x3e): parameter value is a
variable-length integer specifying the maximum path ID
an endpoint is willing to maintain at connection initiation.
This value MUST NOT exceed 2<sup>32</sup>-1, the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).</t>
          </li>
        </ul>
        <t>The initial_max_path_id transport parameter limits the initial
maximum number of open paths that can be used during a connection.
For example, if initial_max_path_id is set to 1, only connection IDs
associated with path IDs 0 and 1 should be issued by the peer.
If an endpoint receives an initial_max_path_id transport parameter with value 0,
the peer aims to enable the multipath extension without allowing extra paths immediately.</t>
        <t>Setting initial_max_path_id parameter is equivalent to sending a
MAX_PATH_ID frame (<xref target="max-paths-frame"/>) with the same value.
As such to allow for the use of more paths later,
endpoints can send the MAX_PATH_ID frame to increase the maximum allowed path ID.</t>
        <t>If an initial_max_path_id transport parameter value higher than 2<sup>32</sup>-1
is received, the receiver MUST close the connection with an error of type
TRANSPORT_PARAMETER_ERROR.</t>
        <t>When advertising the initial_max_path_id transport parameter, endpoints
MUST use Source and Destination Connection IDs with non-zero lengths.
If an initial_max_path_id transport
parameter is received and the carrying packet contains a zero-length
connection ID, the receiver MUST treat this as a connection error of type
PROTOCOL_VIOLATION and close the connection.</t>
        <t>Cipher suites with a nonce shorter than 12 bytes cannot be used together with
the multipath extension. If such a cipher suite is selected and the use of the
multipath extension is supported, endpoints MUST abort the handshake with
an error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>The initial_max_path_id parameter MUST NOT be remembered
for use in a subsequent connection (<xref section="7.4.1" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
      </section>
      <section anchor="relation-to-other-transport-parameters">
        <name>Relation to Other Transport Parameters</name>
        <t>When the QUIC multipath extension is used, the active_connection_id_limit transport parameter
<xref target="QUIC-TRANSPORT"/> limits the maximum number of active connection IDs per path.
As defined in <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs that are issued
and not retired are considered active.</t>
        <t>If an endpoint receives a disable_active_migration transport parameter,
it is forbidden to establish new paths to the peer's handshake address. However,
establishment of additional paths to other peer addresses
(e.g., carried by peer's preferred_address) is immediately valid.</t>
        <t>If the server uses the preferred_address transport parameter, clients
cannot assume that the initial server address and the addresses
contained in this parameter can be simultaneously used for multipath
(<xref section="9.6.2" sectionFormat="of" target="QUIC-TRANSPORT"/>).
Use of the preferred address with the same local address is considered as a migration event
that does not change the path ID. A such, the path ID for
the connection ID specified in the preferred_address transport parameter is 0.</t>
      </section>
      <section anchor="handling-ack-and-pathack-in-0-rtt-and-1-rtt">
        <name>Handling ACK and PATH_ACK in 0-RTT and 1-RTT</name>
        <t>The PATH_ACK frame (see <xref target="mp-ack-frame"/>) is used to
acknowledge 1-RTT packets.
Compared to the ACK frame, as specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the PATH_ACK frame additionally
contains the path ID to identify the path-specific packet number space.
ACK frames when used with the multipath extension acknowledge packets for the path with path ID 0.
As multipath support is unknown during the handshake, acknowledgments of
Initial and Handshake packets are sent using ACK frames.</t>
        <t>After the handshake concludes with support for the multipath extension,
endpoints SHOULD use PATH_ACK frames instead of ACK frames,
including for so far unacknowledged 0-RTT packets using path ID 0.
Endpoints MUST still process ACK frames that acknowledge 0-RTT packets or 1-RTT packets.
For example, a sender could negotiate multipath support for later use and keep
only the initial path with path ID 0 for a while. During this single-path period,
the sender might prefer to send ACK frames.</t>
      </section>
      <section anchor="nonce">
        <name>Nonce Calculation after Handshake Completion</name>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TLS"/> specifies AEAD usage, and in particular
the use of a nonce, N, formed by combining the packet protection IV
with the packet number. When multiple packet number spaces are used,
the packet number alone would not guarantee the uniqueness of the nonce.
Therefore, the nonce N is calculated for 1-RTT packets if the multipath extension is used
by combining the packet protection
IV with the packet number and with the 32 bits of the
path ID. In order to guarantee the uniqueness of the nonce, the path ID
is limited to a max value of 2<sup>32</sup>-1, as specified in <xref target="nego"/>.</t>
        <t>To calculate the nonce, a 96-bit Path-and-Packet-Number (PPN) is composed of the
32 bits of the path ID in network byte order,
two zero bits, and the 62 bits of the reconstructed QUIC packet number in
network byte order, as illustrated in <xref target="fig-path-and-packet-number"/>.</t>
        <figure anchor="fig-path-and-packet-number">
          <name>96 Bits Path-And-Packet-Number</name>
          <artwork><![CDATA[
  PPN {
    Path ID (32),
    Zeroes (2) = 0b00,
    Packet Number (62)
  }
]]></artwork>
        </figure>
        <t>The IV length is equal to the nonce length. If the IV is larger than 96 bits, the path-and-packet-number
is left-padded with zeros to the size of the IV. The exclusive OR of the padded
packet number and the IV forms the AEAD nonce. An AEAD algorithm where the nonce length
is less than 12 bytes cannot be used with the QUIC multipath extension. The following
figure illustrates this for a 96-bits IV.</t>
        <figure anchor="fig-nonce-calculation">
          <name>Nonce Calculation</name>
          <artwork><![CDATA[
IV(12);
N(12) = IV xor PPN;
]]></artwork>
        </figure>
        <t>For example, assuming the IV value is <tt>0x6b26114b9cba2b63a9e8dd4f</tt>,
the path ID is <tt>3</tt>, and the packet number is <tt>54321</tt> (hex value <tt>0xd431</tt>),
the nonce will be set to <tt>0x6b2611489cba2b63a9e8097e</tt>, as illustrated below:</t>
        <figure anchor="fig-example-nonce">
          <name>Example Nonce Calculation</name>
          <artwork><![CDATA[
   IV:      6b26114b9cba2b63a9e8dd4f
⊕  PPN:     00000003000000000000d431
------------------------------------
   Nonce:   6b2611489cba2b63a9e8097e
]]></artwork>
        </figure>
      </section>
      <section anchor="multipath-key-update">
        <name>Key Phase Update Process</name>
        <t>The Key Phase bit update process is specified in
<xref section="6" sectionFormat="of" target="QUIC-TLS"/>. The general principles of key update
are not changed in this specification. Following <xref target="QUIC-TLS"/>, the Key Phase bit is used to
indicate which packet protection keys are used to protect the packet.
The Key Phase bit is toggled to signal each subsequent key update.</t>
        <t>Because of network delays, packets protected with the older key might
arrive later than the packets protected with the new key, however receivers
can solely rely on the Key Phase bit to determine the corresponding packet
protection key, assuming that there is sufficient interval between two
consecutive key updates (<xref section="6.5" sectionFormat="of" target="QUIC-TLS"/>).</t>
        <t>When this specification is used, endpoints SHOULD wait for at least three times
the largest Probe Timeout (PTO) (see <xref section="6.2" sectionFormat="of" target="QUIC-RECOVERY"/>)
among all the paths before initiating a new key update
after receiving an acknowledgment that confirms the receipt of the previous key
update. This interval is different from that in <xref target="QUIC-TLS"/>
which used three times the PTO of the single path.</t>
        <t>As packets that arrive after their decryption key has been discarded will be dropped,
the choice of three times the largest PTO is a trade-off: Longer delays
reduce the probability of losing packets but keeping old keys
longer can negatively impact the security of the protocol.
The use of three times the largest PTO aims to minimize packet lost for all paths
and therefore limits the impact on performance.</t>
        <t>Following <xref section="5.4" sectionFormat="of" target="QUIC-TLS"/>, the Key Phase bit is protected,
so sending multiple packets with Key Phase bit flipping at the same time
should not cause activity across different paths to be linkable by an observer.</t>
      </section>
      <section anchor="connection-closure">
        <name>Connection Closure</name>
        <t>CONNECTION_CLOSE frames and their processing are unchanged from <xref target="QUIC-TRANSPORT"/>.
They can be sent on any open path. <xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies that
the closing and draining connection states "SHOULD persist for at least three times the current PTO".
When this specification is used, these states SHOULD instead persist for at least three
times the largest PTO among all paths.</t>
      </section>
    </section>
    <section anchor="path-management">
      <name>Path Management</name>
      <t>After completing the handshake indicating
multipath support, endpoints can start using multiple paths.
In accordance with <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>,
this extension only enables clients to open a new path.
The client can open a new path when both endpoints
have issued available connection IDs for at least one unused, common path ID,
as the same path ID is used in both directions.</t>
      <t>This document specifies path initiation (see <xref target="path-initiation"/>),
issuing and retirement of per-path connection IDs (see
<xref target="consume-retire-cid"/>), path status management (see <xref target="path-state"/>) and
path closure (see <xref target="path-close"/>).
However, this document does not specify when a client decides to initiate or close a path,
or how multiple open paths are used for sending.</t>
      <t>For path management this extension specifies the following frames in <xref target="frames"/>:</t>
      <ul spacing="normal">
        <li>
          <t>PATH_ABANDON (see <xref target="path-abandon-frame"/>)</t>
        </li>
        <li>
          <t>PATH_STATUS_BACKUP (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_STATUS_AVAILABLE (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_NEW_CONNECTION_ID (see <xref target="mp-new-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>PATH_RETIRE_CONNECTION_ID (see <xref target="mp-retire-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>MAX_PATH_ID (see <xref target="max-paths-frame"/>)</t>
        </li>
        <li>
          <t>PATHS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
        <li>
          <t>PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
      </ul>
      <section anchor="path-initiation">
        <name>Path Initiation and Validation</name>
        <t>To open a new path, an endpoint MUST use a new connection ID associated
with an unused path ID. An endpoint
MUST use a connection ID associated to the same path ID as used in the packet
received by the endpoint when it intends to send packets on the same path.</t>
        <t>A client that wants to use a
new path MUST validate the peer's address before sending any data
as described in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>,
unless it has previously validated the 4-tuple used for that path.</t>
        <t>After receiving packets from the
client on a new path, if the server decides to use the new path,
the server MUST validate the peer's address before sending any data
as described in (<xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless it has previously validated the 4-tuple used for that path.
Until the client's address is
validated, the anti-amplification limit from <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
applies.</t>
        <t>If an endpoint sends a PATH_RESPONSE (<xref section="19.18" sectionFormat="of" target="QUIC-TRANSPORT"/>), it MUST be sent on the same path
as used by the packet that contained the PATH_CHALLENGE frame (<xref section="19.17" sectionFormat="of" target="QUIC-TRANSPORT"/>),
using a connection ID associated with the same path ID.</t>
        <t>The server might receive packets for a yet unused path ID that do not
contain a PATH_CHALLENGE frame. Such packets are valid if they can be properly decrypted
given a valid connection ID.</t>
        <t>Each endpoint MUST also validate that a minimum QUIC packet MTU of 1200 bytes is supported
on the path. This can be done during initial path validation or separately later if
the amplification limit prevents it initially, as specified in <xref section="8.2.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>An endpoint that receives packets on a new path and does not want to establish
this path is expected to close the path by sending a PATH_ABANDON
on another path, as specified in <xref target="path-close"/>.</t>
        <t>An endpoint that has no active connection ID for this path or
lacks other resources to immediately configure a new path could
delay sending the PATH_RESPONSE until sufficient resources are available.
Long delays might cause the peer to repeat the PATH_CHALLENGE and eventually
send a PATH_ABANDON, in which case the procedures specified in
<xref target="path-close"/> apply.</t>
        <t>PATH_ACK frames (see <xref target="mp-ack-frame"/>) can be returned on any path.
If the PATH_ACK is preferred to be sent on the same path as the acknowledged
packet (see <xref target="compute-rtt"/> for further guidance), it can be beneficial
to bundle a PATH_ACK frame with the PATH_RESPONSE frame during
path validation.</t>
        <t>If validation succeeds, the client can continue to use the path.
If validation fails, the client MUST NOT use the path and can
remove any status associated to the path initiation attempt.
As the used path ID is consumed either way,
the endpoint MUST explicitly close the path, as specified in
<xref target="path-close"/>.</t>
        <section anchor="path-establishment-example">
          <name>Path Establishment Example</name>
          <t>In the example below it is assumed that both endpoints have
indicated an initial_max_path_id value of at least 2, which means
both endpoints can use path IDs 0, 1, and 2. Note that
path ID 0 is already used for the initial path.</t>
          <figure anchor="fig-example-new-path">
            <name>Example of new path establishment</name>
            <artwork><![CDATA[
   Client                                                  Server

   (Provide new CIDs for path 1 on an existing path 0)
   1-RTT[X]: DCID=S0, PATH_NEW_CONNECTION_ID[C1, Seq=0, PathID=1] -->
           <-- 1-RTT[Y]: DCID=C0,
                         PATH_NEW_CONNECTION_ID[S1, Seq=0, PathID=1],
                         PATH_ACK[PathID=0, PN=X]
           <-- 1-RTT[Y+1]: DCID=C0, PATH_NEW_CONNECTION_ID[S2, Seq=0,
                                                            PathID=2]
   ...
   (start sending packets on a new path using path ID 1)
   1-RTT[0]: DCID=S1, PATH_CHALLENGE[X] -->
        <-- 1-RTT[0]: DCID=C1, PATH_RESPONSE[X], PATH_CHALLENGE[Y],
                                             PATH_ACK[PathID=1, PN=0]
   1-RTT[1]: DCID=S1, PATH_RESPONSE[Y],
            PATH_ACK[PathID=1, PN=0], ... -->

]]></artwork>
          </figure>
          <t>In <xref target="fig-example-new-path"/>, the endpoints first exchange
new available connection IDs with the PATH_NEW_CONNECTION_ID frame,
as further explained in <xref target="consume-retire-cid"/>.
In this example, the client provides one connection ID (C1 with
path ID 1), and server provides two connection IDs
(S1 with path ID 1, and S2 with path ID 2).</t>
          <t>Before the client opens a new path by sending a packet on that path
with a PATH_CHALLENGE frame, it has to check whether there is
an unused connection ID for the same unused path ID available for each side.
In this example the path ID 1 is used which is the smallest unused path ID available
as recommended in <xref target="consume-retire-cid"/>.
Respectively, the client chooses the connection ID S1
as the Destination Connection ID of the new path when sending the PATH_CHALLENGE frame.
The server replies with a PATH_RESPONSE bundled with the PATH_ACK using connection ID C1
associated with the same path ID.</t>
        </section>
        <section anchor="relation-to-probing-and-migration">
          <name>Relation to Probing and Migration</name>
          <t><xref section="9.1" sectionFormat="of" target="QUIC-TRANSPORT"/> introduces the concept of
"probing" and "non-probing" frames. A packet that contains at least
one "non-probing" frame is a "non-probing" packet.
Migration as specified in <xref section="9.2" sectionFormat="of" target="QUIC-TRANSPORT"/> is initiated
by sending packets containing non-probing frames on a new (validated) path,
however, using the same path ID as on the old path.
When the multipath extension is negotiated, the reception of any packet,
no matter if "probing" or "non-probing", on a new path with a new, so far unused path ID
does not impact the path status of any existing
path. Therefore, any frame can be sent on a new path with a new path ID at any time
as long as the anti-amplification limits
(see <xref section="21.1.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>) and the congestion control
limits for this path are respected.</t>
          <t>An endpoint could receive a packet with a connection ID
associated to an active path ID where the packet's 4-tuple does not match the 4-tuple
currently used with that path ID. This MUST be treated as path migration,
as specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, with the constraint that
all connection IDs used during path migration MUST be
associated with the current path ID of the path being migrated.</t>
        </section>
        <section anchor="address-validation-token">
          <name>Address Validation Token</name>
          <t>As specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the server is expected to send a new
address validation token to a client following the successful validation of a
new client address. The client will receive several tokens. When considering using a token
for subsequent connections, it might be difficult for the client
to pick the "right" token among multiple tokens obtained in a previous connection.
The client is likely to fall back to the strategy specified in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>,
i.e., pick the last received token. To avoid issues when clients make the "wrong" choice,
a server SHOULD issue tokens that are capable of validating
any of the previously validated addresses. Including more addresses increases the
probability that the token will be useful in the future, but at the cost of a larger token.
Further guidance on token usage can be found in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        </section>
      </section>
      <section anchor="consume-retire-cid">
        <name>Handling Connection IDs</name>
        <t>When the multipath extension is used,
endpoints have to use the PATH_NEW_CONNECTION_ID and PATH_RETIRE_CONNECTION_ID frames
to indicate the respective path ID together with associated sequence number
(see <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>), at least for all paths with a path ID other than 0.
Each path ID has its own connection ID sequence number space whose initial value is 0.</t>
        <t>Endpoints SHOULD also use PATH_NEW_CONNECTION_ID and
PATH_RETIRE_CONNECTION_ID for the initial path with path ID 0.
However, the use of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID
is still valid and endpoints need to process these frames
as corresponding to path ID 0.</t>
        <section anchor="issuing-new-connection-ids">
          <name>Issuing New Connection IDs</name>
          <t>In order to let the peer open new paths, it is RECOMMENDED to proactively
issue at least one Connection ID for each unused path ID up to the
minimum of the peer's and the local maximum path ID limits.</t>
          <t>If for any reason an endpoint does not want to issue connection IDs for all
unused path ID, it SHOULD NOT introduce discontinuity
in the issuing of path IDs as path initiation
requires available connection IDs for the same path ID on both sides. For instance,
if the maximum path ID limit is 2 and the endpoint wants to provide connection IDs
for only one path ID inside range [1, 2], it should select path ID 1 (and not path
ID 2).</t>
          <t>Similarly, endpoints SHOULD consume path IDs in a continuous way, i.e., when
creating paths. However, endpoints cannot expect to receive new connection IDs
or path initiation attempts with in-order use of path IDs
due to out-of-order delivery or path validation failure.</t>
          <t>Each endpoint maintains the set of connection IDs received from its peer for each path,
any of which it can use when sending packets on that path; see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.
Usually, it is desired to provide at least one additional connection ID for
all used paths, to allow for (unintentional) migration events (<xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
          <t>As further specified in <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs
cannot be issued more than once on the same connection
and therefore are unique for the scope of the connection,
regardless of the associated path ID.</t>
          <t>Endpoints MUST NOT issue new connection IDs with path IDs greater than
the Maximum Path Identifier field in MAX_PATH_ID frames (see <xref target="max-paths-frame"/>)
or the value of initial_max_path_id transport parameter if no MAX_PATH_ID frame was received yet.
Receipt of a frame with a greater path ID is a connection error as specified
in <xref target="frames"/>.</t>
          <t>When an endpoint cannot open a path because there are no unused path IDs,
it SHOULD either send a MAX_PATH_ID frame to increase the maximum path ID limit
(when limited by the sender) or a PATHS_BLOCKED frame
(see <xref target="paths-and-cids-blocked-frame"/>) to inform the peer that
its current limit prevented the creation of the new path.</t>
        </section>
        <section anchor="rotating-and-retiring-connection-ids">
          <name>Rotating and Retiring Connection IDs</name>
          <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. For the extension specified in
this document, endpoints MUST only rotate to another connection ID associated
with the same path ID. Use of a connection ID associated with
another path ID will be considered as an attempt to open a new path instead.</t>
          <t>An endpoint is supposed to retire any connection ID that is not being used,
and the server is expected to provide
replacements, as specified in <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>.
As such, when receiving a PATH_RETIRE_CONNECTION_ID frame, an endpoint
SHOULD provide new connection IDs for that path, if still open, using PATH_NEW_CONNECTION_ID frames.</t>
          <t>While it is expected that the peer provides at least one unused connection ID
for all active paths using the PATH_NEW_CONNECTION_ID after retirement
of an old connection ID, an endpoint MAY send
a PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)
if it wants to change the connection ID but no
unused connection ID for a that path is available. Further, an
endpoint MAY also send a PATH_CIDS_BLOCKED frame if it wants to
open a new path and has no connection IDs available for an unused
path ID even though the Maximum Path Identifier value would allow
for more paths.</t>
          <t>Retirement of connection IDs will not retire the path ID
that corresponds to the connection ID or any other path resources
as the packet number space is associated to the path ID.</t>
          <t>The peer that sends the PATH_RETIRE_CONNECTION_ID frame can keep sending data
on the path that the retired connection ID was used on but has
to use a different connection ID for the same path ID when doing so.</t>
        </section>
      </section>
      <section anchor="path-state">
        <name>Path Status Management</name>
        <t>An endpoint can send PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames (see
<xref target="path-backup-available-frame"/>) to inform the peer that it should
send packets on the paths with the preference expressed by these frames.
Note that an endpoint might not follow the peer's advertisements,
but these frames are still a clear signal of the peer's preference of path usage.</t>
        <t>Each peer indicates its preference of path usage independently of the other peer.
That means that peers could have different usage preferences for the same path.
Depending on the data sender's decisions, this might lead to usage of paths that have been
indicated as "backup" by the peer or non-usage of some locally available paths.</t>
        <t>PATH_STATUS_AVAILABLE indicates that a path is "available", i.e., it suggests to
the peer to use its own logic to split traffic among available paths.</t>
        <t>PATH_STATUS_BACKUP suggests that a path should only be used as backup, i.e., that no traffic
should be sent on that path if another path is available and usable.
If all established paths are indicated as backup paths, no guidance is provided about
which path should be used.</t>
        <t>Similarly, if no frame indicating a path usage preference was received for a certain path,
the preference of the peer is unknown and the sender needs to decide based on it
own local logic if the path should be used.</t>
        <t>If an endpoint starts using a backup path
because it has detected issues on the paths marked as "available", it is RECOMMENDED
to update its own path state signaling such that the peer avoids using the broken path.
An endpoint that detects a path breakage can also explicitly close the path
by sending a PATH_ABANDON frame (see <xref target="path-close"/>) in order to avoid
that its peer keeps using it and enable faster switchover to a backup path.
If the endpoints do not want to close the path immediately, as connectivity
could be re-established, PING frames can potentially be used to quickly detect
connectivity changes and switch back in a timely way.</t>
        <t>The PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames share a common, per-path sequence number space
to detect and ignore outdated information, as further described in <xref target="path-backup-available-frame"/>.
This is needed as they might arrive out-of-order,
e.g., if sent using different paths.</t>
      </section>
      <section anchor="path-close">
        <name>Path Close</name>
        <t>At any time in the connection, each endpoint can decide to
abandon a path, for example following changes in local
connectivity or local preferences.
An endpoint that wants to abandon a path MUST explicitly
close the path by sending a PATH_ABANDON frame (see <xref target="path-abandon-frame"/>).
This is true whether the decision to close the path results
from implicit signals such as an idle time-out (see <xref target="idle-time-close"/>)
or packet losses as well as for any other reason such as management
of local resources.</t>
        <t>Endpoints that send a PATH_ABANDON frame MUST treat all connection
IDs received from the peer for the path ID indicated in the PATH_ABANDON as immediately
retired, and subsequently cannot send any packet on that path anymore.
Note that while abandoning a path will cause
connection ID retirement, the inverse is not true: retiring the associated connection IDs
does not indicate path abandonment (see further <xref target="consume-retire-cid"/>).</t>
        <t>PATH_ABANDON frames can be sent on any open path,
not only on the path that is intended to be closed.
It is RECOMMENDED to send the PATH_ABANDON frames on another open path,
especially if connectivity on the to-be-abandoned path
is expected to be broken.</t>
        <t>When an endpoint receives a PATH_ABANDON frame, it MUST send a corresponding
PATH_ABANDON frame, if it has not already done so, and respectively treat all
connection IDs received from the peer for that path as immediately
retired. While that means retired connection IDs received from the peer cannot be used
for sending anymore, packets from the peer might still be in transit.
Therefore, knowledge of the
connection IDs issued to the peer and of the state
of the number space associated to the path SHOULD be retained for
3 PTO after the PATH_ABANDON frame has been received.
This avoids generating spurious stateless reset packets, as discussed in
<xref target="spurious-stateless-reset"/>, and helps acknowledge any
potentially reordered, outstanding packets from the peer (see <xref target="ack-after-abandon"/>).</t>
        <t>It is also possible that an endpoint will receive a PATH_ABANDON frame
before receiving or sending any traffic on a path. For example, if the client
tries to initiate a path and the path cannot be established, it will send a
PATH_ABANDON frame (see <xref target="path-initiation"/>). An endpoint could also decide
to abandon an unused path for any other reason, for example, removing a hole from
the sequence of path IDs in use. This is not an error.</t>
        <t>If a peer sends a PATH_ABANDON frame but never receives
a corresponding PATH_ABANDON frame, it might not be able to remove path state.
It is left to the implementation to handle this unexpected
behavior as it does not impact interoperability. If the endpoint is no longer
willing to process the issued connection IDs for the abandoned path,
it MAY close the connection, but SHOULD wait at least 3 PTOs after
sending the PATH_ABANDON frame.</t>
        <t>After a path is abandoned, the path ID MUST NOT be reused
for new paths, as the path ID is part of the nonce calculation <xref target="nonce"/>.</t>
        <t>If a PATH_ABANDON frame is received for the only open path of a QUIC
connection, the receiving peer SHOULD send a CONNECTION_CLOSE frame
and enter the closing state. Alternatively, a client MAY instead try to open a new path, if
available, and only initiate connection closure if path validation fails
or a CONNECTION_CLOSE frame is received from the server. Similarly,
the server MAY wait for a short, limited time such as one PTO, to see if a
packet is received on a new path before sending the
CONNECTION_CLOSE frame.</t>
        <t>Note that other explicit closing mechanisms of <xref target="QUIC-TRANSPORT"/> still
apply on the whole connection. In particular, the reception of either a
CONNECTION_CLOSE (<xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) or a Stateless
Reset (<xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/>) closes the connection.</t>
        <section anchor="path-closure-example">
          <name>Path Closure Example</name>
          <t>In the example below, the client wants to close the path with path ID 0.
It sends the PATH_ABANDON frame to terminate the path with path ID 0
on the path with path ID 1 using the connection ID S1. After receiving
the PATH_ABANDON frame for path ID 0, the server also sends a
PATH_ABANDON frame with path ID 0 together with a PATH_ACK frame
on the same path using connection ID C1.</t>
          <figure anchor="fig-example-path-close1">
            <name>Example of closing a path.</name>
            <artwork><![CDATA[
Client                                                      Server

(client tells server to abandon a path with path ID 0)
1-RTT[X]: DCID=S1 PATH_ABANDON[path ID=0]->
                           (server tells client to abandon a path)
                    <-1-RTT[Y]: DCID=C1 PATH_ABANDON[path ID=0],
                                           PATH_ACK[PATH ID=1, PN=X]
1-RTT[U]: DCID=S1 PATH_ACK[path ID=1, PN=Y] ->
]]></artwork>
          </figure>
          <t>Note that if the PATH_ABANDON frame is instead sent on the to-be-abandoned path,
the last acknowledgment still needs to be sent on a different path
as no further packets can be sent on the abandoned path after the
PATH_ABANDON frame.</t>
        </section>
        <section anchor="spurious-stateless-reset">
          <name>Avoiding Spurious Stateless Resets</name>
          <t>Due to network delays, packets sent on an abandoned path can
arrive well after the connection IDs have been retired.
If not recognized as bound to the local
connection, such a packet triggers the peer to send a Stateless Reset
packet. The requirement to retain knowledge of connection ID and about
the packet number space for 3 PTOs
after receiving a PATH_ABANDON frame, as specified in <xref target="path-close"/> above,
is intended to reduce the risk of sending such spurious stateless
packets, but it cannot completely avoid that risk.</t>
          <t><xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/> specified that the Stateless Reset Tokens
associated with retired connection IDs cannot be used to identify Stateless Reset packets.
The immediate retirement of connection IDs received from the peer for an abandoned
path guarantees that spurious Stateless Reset packets
sent by the peer will not cause the closure of the QUIC connection.</t>
        </section>
        <section anchor="ack-after-abandon">
          <name>Handling PATH_ACK for Abandoned Paths</name>
          <t>When an endpoint sends a PATH_ABANDON frame, there might
still be some packets in transit from the peer.
Further, if an endpoint receives a PATH_ABANDON frame, it might still receive
reordered packets on the abandoned path. Endpoints SHOULD
promptly send PATH_ACK frames for all unacknowledged packets received on
an abandoned path if path state is still retained to do so.</t>
          <t>PATH_ACK frames have to be sent on a different path than the path being abandoned
after sending the PATH_ABANDON frame as connection IDs are immediately retired.</t>
          <t>When an endpoint finally deletes all state associated with the path,
the packets sent over the path and not yet acknowledged MUST be considered lost.
PATH_ACK frames received with an abandoned path ID are silently ignored,
as specified in <xref target="frames"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="frames">
      <name>New Frames</name>
      <t>All frames defined in this document MUST only be sent in 1-RTT packets.
If an endpoint receives a multipath-specific frame in a different packet type,
it MUST close the connection with an error of type PROTOCOL_VIOLATION.</t>
      <t>Receipt of multipath-specific frames
that use a path ID that is greater than the announced Maximum Paths value
in the MAX_PATH_ID frame or in the initial_max_path_id transport parameter,
if no MAX_PATH_ID frame was received yet,
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
      <t>If an endpoint receives a multipath-specific frame
with a path ID that it cannot process
anymore (e.g., because the path might have been abandoned), it
MUST silently ignore the frame.</t>
      <section anchor="mp-ack-frame">
        <name>PATH_ACK Frame</name>
        <t>The PATH_ACK frame (types 0x3e and 0x3f)
is an extension of the ACK frame specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is
used to acknowledge packets that were sent on different paths, as
each path has its own packet number space. If the frame type is 0x3f, PATH_ACK frames
also contain the sum of QUIC packets with associated ECN marks received
on the acknowledged packet number space up to this point.</t>
        <t>PATH_ACK frame is formatted as shown in <xref target="fig-mp-ack-format"/>.</t>
        <figure anchor="fig-mp-ack-format">
          <name>PATH_ACK Frame Format</name>
          <artwork><![CDATA[
  PATH_ACK Frame {
    Type (i) = 0x3e..0x3f,
    Path Identifier (i),
    Largest Acknowledged (i),
    ACK Delay (i),
    ACK Range Count (i),
    First ACK Range (i),
    ACK Range (..) ...,
    [ECN Counts (..)],
  }
]]></artwork>
        </figure>
        <t>Compared to the ACK frame specified in <xref target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the packet number space of the 0-RTT and 1-RTT packets
which are acknowledged by the PATH_ACK frame.</t>
          </dd>
        </dl>
      </section>
      <section anchor="path-abandon-frame">
        <name>PATH_ABANDON Frame</name>
        <t>The PATH_ABANDON frame informs the peer to abandon a path.
After the PATH_ABANDON frame is sent on a path, the path can no longer be used for sending.</t>
        <t>PATH_ABANDON frames are formatted as shown in <xref target="fig-path-abandon-format"/>.</t>
        <figure anchor="fig-path-abandon-format">
          <name>PATH_ABANDON Frame Format</name>
          <artwork><![CDATA[
  PATH_ABANDON Frame {
    Type (i) = 0x3e75,
    Path Identifier (i),
    Error Code (i),
  }
]]></artwork>
        </figure>
        <t>PATH_ABANDON frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated to the to-be-abandoned path.</t>
          </dd>
          <dt>Error Code:</dt>
          <dd>
            <t>A variable-length integer that indicates the reason for abandoning
this path. NO_ERROR(0x0) indicates that the path is being abandoned
without any error being encountered. Other error codes can be found in <xref target="error-codes"/>.</t>
          </dd>
        </dl>
        <t>PATH_ABANDON frames are ack-eliciting. If a packet containing
a PATH_ABANDON frame is considered lost, the peer SHOULD repeat it.</t>
        <t>Use of the PATH_ABANDON frame is specified in <xref target="path-close"/>.</t>
        <section anchor="error-codes">
          <name>Error Codes</name>
          <t>QUIC transport error codes are 62-bit unsigned integers
(see <xref section="20.1" sectionFormat="of" target="QUIC-TRANSPORT"/>. In addition to
NO_ERROR(0x0), the following QUIC error codes are defined
for use in the PATH_ABANDON frame:</t>
          <dl>
            <dt>APPLICATION_ABANDON_PATH (0x3e):</dt>
            <dd>
              <t>The endpoint is abandoning the path at the
request of the application.</t>
            </dd>
            <dt>PATH_RESOURCE_LIMIT_REACHED (0x3e75):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
it cannot allocate sufficient resources to maintain it.</t>
            </dd>
            <dt>PATH_UNSTABLE_OR_POOR (0x3e76):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
the used interface is observed to be unstable or performance is considered poor. This condition can occur, e.g.,
due to frequent handover events during high-speed mobility or due to a weak wireless signal.</t>
            </dd>
            <dt>NO_CID_AVAILABLE_FOR_PATH (0x3e77):</dt>
            <dd>
              <t>The endpoint is abandoning the path due to
the lack of a connection ID for this path.
This might occur when the peer initiates a new path
but has not provided a corresponding connection ID for the path ID
(or the packet containing the connection IDs has not arrived yet).</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="path-backup-available-frame">
        <name>PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames</name>
        <t>PATH_STATUS_AVAILABLE frames (type=0x3e77) are used by endpoints to inform the peer
that the indicated path is available for sending.</t>
        <t>PATH_STATUS_AVAILABLE frames are formatted as shown in <xref target="fig-path-available-format"/>.</t>
        <figure anchor="fig-path-available-format">
          <name>PATH_STATUS_AVAILABLE Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_AVAILABLE Frame {
    Type (i) = 0x3e77,
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>PATH_STATUS_BACKUP frames (type=0x3e76) are used by endpoints to inform the peer
about its preference to not use the indicated path for sending.</t>
        <t>PATH_STATUS_BACKUP frames are formatted as shown in <xref target="fig-path-backup-format"/>.</t>
        <figure anchor="fig-path-backup-format">
          <name>PATH_STATUS_BACKUP Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_BACKUP Frame {
    Type (i) = 0x3e76
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>Both PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID that the status update corresponds to.
All path IDs below the maximum path ID limit can be indicated,
even if the path is not in active use yet.</t>
          </dd>
          <dt>Path Status Sequence Number:</dt>
          <dd>
            <t>A variable-length integer specifying the per-path sequence number assigned for
this frame.</t>
          </dd>
        </dl>
        <t>The sequence number space is common to the two frame types,
and monotonically increasing values MUST be used when sending PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frames for a given path ID.</t>
        <t>Frames might be received out of order. A peer MUST ignore an incoming
PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frame if it previously received another PATH_STATUS_BACKUP frame
or PATH_STATUS_AVAILABLE frame for the same path ID with a Path Status sequence number
equal to or higher than the Path Status sequence number of the incoming frame.</t>
        <t>The requirement of monotonically increasing sequence numbers
is per path. Receivers could very well receive the
same sequence number for PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP Frames
on different paths. As such, the receiver of
the PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP frame needs to use and compare the sequence numbers
separately for each path ID.</t>
        <t>PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames are ack-eliciting. If a packet containing a
PATH_STATUS_BACKUP or PATH_STATUS_AVAILABLE frame is considered lost, the peer SHOULD resend the frame
only if it contains the last status sent for that path -- as indicated
by the sequence number.</t>
        <t>A PATH_STATUS_BACKUP or a PATH_STATUS_AVAILABLE frame MAY be bundled with a PATH_NEW_CONNECTION_ID frame or
a PATH_RESPONSE frame in order to indicate the preferred path usage
before or during path initiation.</t>
      </section>
      <section anchor="mp-new-conn-id-frame">
        <name>PATH_NEW_CONNECTION_ID frame</name>
        <t>The PATH_NEW_CONNECTION_ID frame (type=0x3e78)
is an extension of the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>.
It is used to provide its peer with alternative connection IDs for 1-RTT packets
for a specific path. The peer can then use a different connection ID on the same path
to break linkability when migrating on that path; see also <xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>PATH_NEW_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-connection-id-frame-format">
          <name>PATH_NEW_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_NEW_CONNECTION_ID Frame {
  Type (i) = 0x3e78,
  Path Identifier (i),
  Sequence Number (i),
  Retire Prior To (i),
  Length (8),
  Connection ID (8..160),
  Stateless Reset Token (128),
}
]]></artwork>
        </figure>
        <t>Compared to the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID. This
means the provided connection ID can only be used on the corresponding path.</t>
          </dd>
        </dl>
        <t>Note that, other than for the NEW_CONNECTION_ID frame of <xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>,
the sequence number applies on a per-path context.
This means different connection IDs on different paths might have the same
sequence number value.</t>
        <t>The Retire Prior To field indicates which connection IDs
should be retired among those that share the path ID in the Path Identifier field.
Connection IDs associated with different path IDs are not affected.</t>
        <t>Note that the NEW_CONNECTION_ID frame can only be used to issue or retire
connection IDs for the initial path with path ID 0.</t>
        <t>The last paragraph of <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies how to
verify the Retire Prior To field of an incoming NEW_CONNECTION_ID frame.
The same rule
applies for PATH_NEW_CONNECTION_ID frames, but it applies per path. If the
multipath extension is used, the rule
for NEW_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="mp-retire-conn-id-frame">
        <name>PATH_RETIRE_CONNECTION_ID frame</name>
        <t>The PATH_RETIRE_CONNECTION_ID frame (type=0x3e79)
is an extension of the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is used
to indicate that an endpoint will no longer use a connection ID for a specific path ID
that was issued by its peer. To retire the connection ID used
during the handshake on the initial path, path ID 0 is used.
Sending a PATH_RETIRE_CONNECTION_ID frame also serves as a request to the peer
to send additional connection IDs for this path (see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless the path specified by the path ID has been abandoned. New path-specific connection IDs can be
delivered to a peer using the PATH_NEW_CONNECTION_ID frame (see <xref target="mp-new-conn-id-frame"/>).</t>
        <t>PATH_RETIRE_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-retire-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-retire-connection-id-frame-format">
          <name>PATH_RETIRE_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_RETIRE_CONNECTION_ID Frame {
  Type (i) = 0x3e79,
  Path Identifier (i),
  Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>Compared to the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID to retire.</t>
          </dd>
        </dl>
        <t>Note that the RETIRE_CONNECTION_ID frame can only be used to retire
connection IDs for the initial path with path ID 0.</t>
        <t>As the PATH_NEW_CONNECTION_ID frames applies the sequence number per path,
the sequence number in the PATH_RETIRE_CONNECTION_ID frame is also per
path. The PATH_RETIRE_CONNECTION_ID frame retires the Connection ID with
the specified path ID and sequence number.</t>
        <t>The processing of an incoming RETIRE_CONNECTION_ID frame
is described in <xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. The same processing
applies for PATH_RETIRE_CONNECTION_ID frames per path, while with use of
the multipath extension the
processing of a RETIRE_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="max-paths-frame">
        <name>MAX_PATH_ID frame</name>
        <t>A MAX_PATH_ID frame (type=0x3e7a) informs the peer of the maximum path ID
it is permitted to use.</t>
        <t>MAX_PATH_ID frames are formatted as shown in <xref target="fig-max-paths-frame-format"/>.</t>
        <figure anchor="fig-max-paths-frame-format">
          <name>MAX_PATH_ID Frame Format</name>
          <artwork><![CDATA[
MAX_PATH_ID Frame {
  Type (i) = 0x3e7a,
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>MAX_PATH_ID frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>The maximum path ID that the sending endpoint is willing to accept.
This value MUST NOT exceed 2<sup>32</sup>-1, which is the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).
The Maximum Path Identifier value MUST NOT be lower than the value
advertised in the initial_max_path_id transport parameter.</t>
          </dd>
        </dl>
        <t>Receipt of an invalid Maximum Path Identifier value MUST be treated as a
connection error of type PROTOCOL_VIOLATION.</t>
        <t>Loss or reordering can cause an endpoint to receive a MAX_PATH_ID frame with
a smaller Maximum Path Identifier value than was previously received.
MAX_PATH_ID frames that do not increase the path limit MUST be ignored.</t>
        <t>MAX_PATH_ID frames are ack-eliciting and SHOULD be retransmitted when lost
and no more recent MAX_PATH_ID frame has been sent in the meantime.</t>
      </section>
      <section anchor="paths-and-cids-blocked-frame">
        <name>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames</name>
        <t>A sender can send a PATHS_BLOCKED frame (type=0x3e7b) when
it wishes to open a path but is unable to do so due to the maximum path ID
limit set by its peer.</t>
        <t>A sender can send a PATH_CIDS_BLOCKED frame (type=0x3e7c) when
it wishes to open a path with a valid path ID or change the connection ID on an established path
but is unable to do so because there are no unused connection IDs available
for the corresponding path ID.</t>
        <t>Note that PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are informational.
Sending a PATHS_BLOCKED or a PATH_CIDS_BLOCKED frame does not imply a particular action from the peer
like sending a MAX_PATH_ID frame with a new Maximum Path Identifier value,
but informs the peer that the maximum path ID limit
or the absence of unused connection IDs prevented the creation or the usage of paths.
If the successful reception of a PATHS_BLOCKED/PATH_CIDS_BLOCKED frame was acknowledged but
no action is taken by the peer, this is likely a deliberate decision by the peer and
repeating the PATHS_BLOCKED/PATH_CIDS_BLOCKED frame will not change that.</t>
        <t>PATHS_BLOCKED frames are formatted as shown in <xref target="fig-paths-blocked-frame-format"/>.</t>
        <figure anchor="fig-paths-blocked-frame-format">
          <name>PATHS_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATHS_BLOCKED Frame {
  Type (i) = 0x3e7b,
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>PATHS_BLOCKED frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum path ID that was
allowed at the time the frame was sent. If the received value is lower than
the currently allowed maximum value, this frame can be ignored.</t>
          </dd>
        </dl>
        <t>PATH_CIDS_BLOCKED frames are formatted as shown in <xref target="fig-path-cid-blocked-frame-format"/>.</t>
        <figure anchor="fig-path-cid-blocked-frame-format">
          <name>PATH_CIDS_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATH_CIDS_BLOCKED Frame {
  Type (i) = 0x3e7c,
  Path Identifier (i),
  Next Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>PATH_CIDS_BLOCKED frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>Identifier of the path for which unused connection IDs are not available.</t>
          </dd>
          <dt>Next Sequence Number:</dt>
          <dd>
            <t>The next sequence number that is expected to be issued for a connection ID for this path by the peer.</t>
          </dd>
        </dl>
        <t>Receipt of a value of Maximum Path Identifier or Path Identifier that is higher than
the local maximum value MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>Receipt of a value of Next Sequence Number that is higher than
the sequence number of the next expected to be issued connection ID for this path
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are ack-eliciting and MAY be retransmitted
if the path is still blocked when the loss is detected.</t>
      </section>
    </section>
    <section anchor="impl-consideration">
      <name>Implementation Considerations</name>
      <t>This section provides informational guidance for implementors.</t>
      <section anchor="migration">
        <name>Connection ID Changes, Migration, and NAT Rebindings</name>
        <t>With the multipath extension, each
path uses a separate packet number space.
This is a major difference from
<xref target="QUIC-TRANSPORT"/>, which only defines three number spaces (Initial,
Handshake and Application data packets).</t>
        <t>For any given path, connection ID rotation, NAT rebinding, or client-initiated migration
as specified in <xref target="QUIC-TRANSPORT"/> might occur, like on a single path.
These events do not change the path ID, and do not affect the packet number
space associated with the path.</t>
        <t>It is generally preferable to use multipath mechanisms such as
creating a new path and later abandoning the old path,
rather than doing migration of a single path as specified in <xref target="QUIC-TRANSPORT"/>.
This enables a smoother handover and allows a more controlled migration handling
at the server side. However, migration of a single path cannot be
avoided in case of NAT rebinding, or if the server requests migration
to a "preferred address" during the handshake.</t>
        <t><xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/> allows an endpoint to skip validation of
a peer address if that address has been seen recently. However, when the
multipath extension is used and an endpoint has multiple addresses that
could lead to switching between different paths, it should rather maintain
multiple open paths instead.</t>
        <t>Servers observing a 4-tuple change will
perform path validation (see <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>).
If path validation process succeeds, the endpoints reset
the path's congestion controller and round-trip time
estimator according to <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
      </section>
      <section anchor="same-tuple-n-paths">
        <name>Using Multiple Paths on the Same 4-tuple</name>
        <t>It is possible to create paths that
refer to the same 4-tuple. For example, endpoints might want
to create paths that use different Differentiated Service <xref target="RFC2475"/> markings.
This could be done in conjunction with scheduling algorithms
that match streams to paths, so that for example data frames for
low priority streams are sent over low priority paths.
Since these paths use different path IDs, they can be managed
independently to suit the needs of the application. (The application
would need to manage how client and server use differentiated services
on a path. This is not specified in this document.)</t>
        <t>There might be cases in which paths are created with different 4-tuples,
but end up using the same 4-tuples as a consequence of path
migrations. Consider the following example where all paths use the same
source and destination ports:</t>
        <ul spacing="normal">
          <li>
            <t>Client starts path 1 from address 192.0.2.1 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Client starts path 2 from address 192.0.2.2 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Both paths are used for a while.</t>
          </li>
          <li>
            <t>Server sends packet from address 198.51.100.1 to client address 192.0.2.1, with Connection ID indicating path ID 2.</t>
          </li>
          <li>
            <t>Client receives the packet, recognizes a path migration, updates the source address of path 2 to 192.0.2.1.</t>
          </li>
        </ul>
        <t>Such unintentional use of the same 4-tuple on different paths ought to
be rare. When they happen, the two paths would be redundant, and the
endpoint could want to close one of them.</t>
      </section>
      <section anchor="congestion-control">
        <name>Congestion Control</name>
        <t>When the QUIC multipath extension is used, senders manage per-path
congestion status as required in <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.
However, in <xref target="QUIC-TRANSPORT"/> only one active path is assumed and as such
the requirement is to reset the congestion control status on path migration.
With the multipath extension, multiple paths can be used simultaneously,
therefore separate congestion control state is maintained for each path.
This means a sender is not allowed to send more data on a given path
than congestion control for that path indicates.</t>
        <t>When a Multipath QUIC connection uses two or more paths, there is no
guarantee that these paths are fully disjoint. When two (or more paths)
share the same bottleneck, using a standard congestion control scheme
could result in an unfair distribution of the bandwidth with
the multipath connection getting more bandwidth than competing single
paths connections. Multipath TCP uses the linked increases algorithm (LIA)
congestion control scheme
specified in <xref target="RFC6356"/> to solve this problem.  This scheme can
immediately be adapted to Multipath QUIC. Other coupled congestion
control schemes have been proposed for Multipath TCP such as <xref target="OLIA"/>.
Designers of congestion control algorithms specialized for Multipath QUIC
are advised to follow BCP 133; see <xref section="7.10" sectionFormat="of" target="RFC9743"/>.</t>
        <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. As such, a change of the Connection
ID without any change in the address does not indicate a path change and
the endpoint can keep the same congestion control and RTT measurement state.</t>
      </section>
      <section anchor="compute-rtt">
        <name>Computing Path RTT</name>
        <t>PATH_ACK frames indicate which path the acknowledged packets were sent on,
but they could be received through any open path. If successive acknowledgments are received
on different paths, the measured RTT samples can fluctuate widely,
which could result in poor performance depending on, for example, the congestion control
algorithm.</t>
        <t>Congestion control state as defined in <xref target="QUIC-RECOVERY"/> is kept
per path ID. However, depending on which path acknowledgments are
sent, the actual RTT of a path cannot be calculated or might not be
the right value to be used.</t>
        <t>Instead of using the real RTT of a path, it is recommended to consider
the sum of two one-way delays: the delay
on the packet sending path and the delay on the return path chosen
for the acknowledgments.  When different paths have different
characteristics, the delays can vary
widely. Consider for example a multipath transmission using both a
terrestrial path, with a latency of 50ms in each direction, and a
geostationary satellite path, with a latency of 300ms in each
direction.  The sum of the two one-way delays will depend on the combination
of paths used for the packet transmission and the acknowledgment transmission,
as shown in <xref target="fig-example-ack-delay"/>.</t>
        <table anchor="fig-example-ack-delay">
          <name>Example of ACK delays using multiple paths</name>
          <thead>
            <tr>
              <th align="left">ACK Path \ Data path</th>
              <th align="left">Terrestrial</th>
              <th align="left">Satellite</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Terrestrial</td>
              <td align="left">100ms</td>
              <td align="left">350ms</td>
            </tr>
            <tr>
              <td align="left">Satellite</td>
              <td align="left">350ms</td>
              <td align="left">600ms</td>
            </tr>
          </tbody>
        </table>
        <t>The computed values reflect both the state of the network path and the
scheduling decisions of the acknowledgment sender. If we
assume that the PATH_ACK will be sent over the terrestrial
link, because this decision provides the best response time, the
computed RTT value for the satellite path will be about 350ms. This is
lower than the 600ms that would be measured if the PATH_ACK came over
the satellite channel, but it is still the right value for computing
for example the PTO timeout: if a PATH_ACK is not received after more
than 350ms, either the packet or its PATH_ACK were probably lost.</t>
        <t>The simplest implementation is to use the delays measured when receiving new packet acknowledgments
to compute smoothed_rtt and rttvar per
<xref section="5.3" sectionFormat="of" target="QUIC-RECOVERY"/> regardless of the path through which PATH_ACK frames are
received. This approach will provide good results
as long as acknowledgments are sent consistently over one path.
If at any time the acknowledgment sender revisits its sending preferences,
this can also change the paths that are used to send acknowledgments.
However, this is not very
different from route changes on a single path.
The RTT, RTT variance and PTO estimates will rapidly converge to
reflect the new conditions.
There is one exception: the minimum RTT, which is also
a known challenge when route changes occurs on a single path.
An acknowledgment receiver
can, however, remember the path over which the PATH_ACK that produced
the minimum RTT was received, and restart the minimum RTT computation
if that acknowledgment path changes or is abandoned.
If acknowledgments are not sent consistently over one path, the
acknowledgment receiver can monitor over which path acknowledgments
are received and only use samples for acknowledgments received on the same
path on which the data was sent, if any.</t>
        <t>Further, congestion control functions that rely on delay estimates needs
to consider cases where acknowledgments are sent over multiple paths
with different delays explicitly.</t>
      </section>
      <section anchor="packet-scheduling">
        <name>Packet Scheduling</name>
        <t>The transmission of packets containing data is limited
by the arrival of data from the application and by congestion control.
Generally, QUIC packets that increase the number of bytes in flight can only be sent
when the congestion window for the selected path allows it.</t>
        <t>Most frames, including control frames (PATH_CHALLENGE and PATH_RESPONSE being the notable
exceptions), can be sent and received on any open path.
As such, a packet scheduler is needed to decide which path to use
for sending the next packet, among those paths with an open congestion window.
If multiple paths are used to send data frames belonging to the same stream,
data delivery will experience the maximum delay of all used paths due to in-order delivery.
The scheduling is a local decision, based on the preferences of the application and the
implementation.</t>
        <t>This implies that an endpoint might send and receive PATH_ACK
frames on a path different from the one that carried the acknowledged
packets. As noted in <xref target="compute-rtt"/>, RTT estimates computed using
the standard algorithm reflect both the characteristics of the
path and the scheduling algorithm of PATH_ACK frames. The estimates will converge
faster if the scheduling strategy of PATH_ACK frames is stable.
Implementations can choose different strategies such as, for instance, sending
PATH_ACK frames either simply on the path where the acknowledged packets was received,
or alternatively the shortest path, which results in shorter control loops
and potentially better performance.</t>
        <t>Since packets that only carry PATH_ACK frames
are not congestion controlled (see <xref section="7" sectionFormat="of" target="QUIC-RECOVERY"/>),
senders should carefully consider the load induced
by these packets, especially if the capacity is unknown on that path,
e.g., when that path is not used for sending data frames.</t>
      </section>
      <section anchor="retransmissions">
        <name>Retransmissions</name>
        <t>Simultaneous use of multiple paths enables different
retransmission strategies to cope with losses such as:
a) retransmitting lost frames over the
same path, b) retransmitting lost frames on a different or
dedicated path, and c) duplicate lost frames on several paths (not
recommended for general purpose use due to the network
overhead). While this document does not preclude a specific
strategy, more detailed specification is out of scope.</t>
        <t>As noted in <xref section="2.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, STREAM frame boundaries are not
expected to be preserved when data is retransmitted. Especially when STREAM
frames have to be retransmitted over a different path with a smaller MTU limit,
smaller STREAM frames might need to be sent instead.</t>
      </section>
      <section anchor="pto-expiration">
        <name>PTO Expiration</name>
        <t>An implementation should follow the mechanism specified in <xref target="QUIC-RECOVERY"/>
for detecting packet loss on each individual path. A special case happens when
the PTO timer expires. According to <xref target="QUIC-RECOVERY"/>, no packet will be declared
lost until either the packet sender receives a new acknowledgment for this path,
or the path itself is finally declared broken. This cautious process minimizes
the risk of spurious retransmissions, but it might cause significant delivery delay
for the frames contained in these "lost packets".</t>
        <t>Endpoints could take advantage of the multipath extension, and retransmit the content
of the delayed packets on other available paths if the congestion control window on these
paths allows.</t>
      </section>
      <section anchor="paths-having-different-pmtu-sizes">
        <name>Paths Having Different PMTU Sizes</name>
        <t>An implementation should take care to handle different PMTU sizes across
multiple paths. As specified in <xref section="14.3" sectionFormat="of" target="QUIC-TRANSPORT"/> the
DPLPMTUD Maximum Packet Size (MPS) is maintained for each combination of local and remote IP addresses.
Note that with the multipath extension multiple paths could use the same 4-tuple
but might have different MPS due to other factors (see <xref target="same-tuple-n-paths"/>).</t>
        <t>One simple option, if the PMTUs are similar, is to apply the minimum PMTU of all paths to
each path, which could also help to simplify retransmission processing.</t>
      </section>
      <section anchor="idle-time-close">
        <name>Idle Timeout and Keep-Alives</name>
        <t><xref target="QUIC-TRANSPORT"/> defines an idle timeout for closing the connection
which applies in case of multipath usage
if no packet is received on any path for the duration of the idle timeout.</t>
        <t>This document does not specify per-path idle timeouts. An endpoint
can decide to close a path at any time, whether the path is in active
use or not. For example, an endpoint might wait to send
the initial PATH_ABANDON frame until it anyway sends another frame.
Note that the receiver of an initial PATH_ABANDON frame is, however,
required to immediately reply (see <xref target="path-close"/>).</t>
        <t>If a path is not actively used for a while, it might not be usable anymore,
e.g., due to middlebox timeouts. To avoid such path breakage, endpoints
can send ack-eliciting packets such as packets containing PING frames
(<xref section="19.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) on that path to keep it alive.
However, this specification does not recommend sending keep-alives as it can
create unnecessary overhead, especially if there are other, actively used paths.</t>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TRANSPORT"/> defines an optional keep-alive process.
This process can be applied to each path separately depending on application needs.
Some applications could decide to not keep any not-actively used path alive,
keep only one additional path alive, or multiple paths, e.g., for more redundancy.
As discussed in <xref section="10.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, the keep-alive interval
needs to incorporate timeouts in middleboxes on the path.</t>
        <t>If a path was not actively used for a while and no keep-alives have been sent,
an endpoint can probe it before switching to active use if there are still other paths
that are currently usable.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>Note to IANA: the values marked below as "suggested" are the values
that we would like to see assigned.</t>
      <t>This document defines a new transport parameter to
enable simultaneous use of multiple paths within one QUIC connection.
Further, it specifies new frame types for path management and new error codes
when a path is abandoned.</t>
      <t>The current draft defines provisional values for experiments,
but, if the draft is approved, IANA is requested to allocate short values
as permanent with "IETF" as change controller and
the QUIC WG as contact to the respective registries under
<eref target="https://www.iana.org/assignments/quic/quic.xhtml">https://www.iana.org/assignments/quic/quic.xhtml</eref>.</t>
      <t>The following entry in <xref target="transport-parameters"/> should be added to
the "QUIC Transport Parameters" registry.</t>
      <table anchor="transport-parameters">
        <name>Addition to QUIC Transport Parameters Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Parameter Name.</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e (suggested)</td>
            <td align="left">initial_max_path_id</td>
            <td align="left">
              <xref target="nego"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following frame types defined in <xref target="frame-types"/> should be added to
the "QUIC Frame Types" registry.</t>
      <table anchor="frame-types">
        <name>Addition to QUIC Frame Types Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Frame Type Name</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e - 0x3f (suggested)</td>
            <td align="left">PATH_ACK</td>
            <td align="left">
              <xref target="mp-ack-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e75 (suggested)</td>
            <td align="left">PATH_ABANDON</td>
            <td align="left">
              <xref target="path-abandon-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e76 (suggested)</td>
            <td align="left">PATH_STATUS_BACKUP</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e77 (suggested)</td>
            <td align="left">PATH_STATUS_AVAILABLE</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e78 (suggested)</td>
            <td align="left">PATH_NEW_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-new-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e79 (suggested)</td>
            <td align="left">PATH_RETIRE_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-retire-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7a (suggested)</td>
            <td align="left">MAX_PATH_ID</td>
            <td align="left">
              <xref target="max-paths-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7b (suggested)</td>
            <td align="left">PATHS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7c (suggested)</td>
            <td align="left">PATH_CIDS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following transport error code defined in <xref target="tab-error-code"/> are to
be added to the "QUIC Transport Error Codes" registry.</t>
      <table anchor="tab-error-code">
        <name>Error Codes for Multipath QUIC</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Code</th>
            <th align="left">Description</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e (suggested)</td>
            <td align="left">APPLICATION_ABANDON_PATH</td>
            <td align="left">Path abandoned at the application's request</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e75 (suggested)</td>
            <td align="left">PATH_RESOURCE_LIMIT_REACHED</td>
            <td align="left">Path abandoned due to resource limitations in the transport</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e76 (suggested)</td>
            <td align="left">PATH_UNSTABLE_OR_POOR</td>
            <td align="left">Path abandoned due to unstable interfaces or poor performance</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e77 (suggested)</td>
            <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
            <td align="left">Path abandoned due to no available connection IDs for the path</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
        </tbody>
      </table>
      <section anchor="removing-provisional-registrations">
        <name>Removing Provisional Registrations</name>
        <t>RFC Editor's Note: Please remove this section prior to publication of
a final version of this document.</t>
        <t>The values noted here were provisionally registered during the development
of this draft. The provisonal registrations should be deleted when the
final version of this document.</t>
        <t>The following entries were provisionally registered in the registry of QUIC
transport parameters:</t>
        <table anchor="transport-parameters-exp">
          <name>Provisional QUIC transport parameters</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Parameter Name.</th>
              <th align="left">Registered for</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0f739bbc1b666d0d</td>
              <td align="left">initial_max_path_id</td>
              <td align="left">draft 15</td>
            </tr>
            <tr>
              <td align="left">0x0f739bbc1b666d05</td>
              <td align="left">enable_multipath</td>
              <td align="left">draft-05</td>
            </tr>
            <tr>
              <td align="left">0x0f739bbc1b666d06</td>
              <td align="left">enable_multipath</td>
              <td align="left">draft-06</td>
            </tr>
          </tbody>
        </table>
        <t>The following entries were provisionally registered in the registry of QUIC
Frame Types:</t>
        <table anchor="frame-types-exp">
          <name>Provisional QUIC frame types</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Frame Type Name</th>
              <th align="left">Registered for</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x15228c00-0x15228c01</td>
              <td align="left">PATH_ACK</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c05</td>
              <td align="left">PATH_ABANDON</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c06</td>
              <td align="left">PATH_STATUS</td>
              <td align="left">draft-05</td>
            </tr>
            <tr>
              <td align="left">0x15228c07</td>
              <td align="left">PATH_STATUS_BACKUP</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c08</td>
              <td align="left">PATH_STATUS_AVAILABLE</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c09</td>
              <td align="left">PATH_NEW_CONNECTION_ID</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c0a</td>
              <td align="left">PATH_RETIRE_CONNECTION_ID</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c0c</td>
              <td align="left">MAX_PATH_ID</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c0d</td>
              <td align="left">PATHS_BLOCKED</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x15228c0e</td>
              <td align="left">PATH_CIDS_BLOCKED</td>
              <td align="left">draft-15</td>
            </tr>
          </tbody>
        </table>
        <t>The following entries were provisionally registered in the registry of QUIC
Transport Error Codes:</t>
        <table anchor="error-codes-exp">
          <name>Provisional QUIC transport error codes</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Transport Error Code</th>
              <th align="left">Registered for</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x004150504142414e</td>
              <td align="left">APPLICATION_ABANDON_PATH</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x004e4f5f4349445f</td>
              <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x0052534c494d4954</td>
              <td align="left">PATH_RESOURCE_LIMIT_REACHED</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x00554e5f494e5446</td>
              <td align="left">APPLICATION_ABANDON_PATH</td>
              <td align="left">draft-15</td>
            </tr>
            <tr>
              <td align="left">0x1001d76d3ded42f3</td>
              <td align="left">MP_PROTOCOL_VIOLATION</td>
              <td align="left">draft-05</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The multipath extension retains all security properties of <xref target="QUIC-TRANSPORT"/> and <xref target="QUIC-TLS"/>
but requires some additional consideration regarding:</t>
      <ul spacing="normal">
        <li>
          <t>potential additional resource usage for per-path connection IDs and multiple concurrent path contexts;</t>
        </li>
        <li>
          <t>a potentially increased amplification risk for denial-of-service attacks if multiple paths are used simultaneously;</t>
        </li>
        <li>
          <t>changes to the nonce calculation due to the use of multiple packet number spaces.</t>
        </li>
      </ul>
      <section anchor="memory-allocation-for-per-path-resources">
        <name>Memory Allocation for Per-Path Resources</name>
        <t>The maximum path ID limit in initial_max_path_id or MAX_PATH_ID frame
limits the number of paths an endpoint is willing
to maintain and thereby also limits the associated path resources.
Furthermore, as connection IDs have to be issued by both endpoints for the
same path ID before an endpoint can open a path, each endpoint could also
control the per-path resource usage by only
issuing connection IDs for a limited number of paths. However, using
the maximum path ID limit in initial_max_path_id or the MAX_PATH_ID frame is preferred.</t>
        <t>To avoid unnecessary resource usage that could be exploited
in a resource exhaustion attack, endpoints SHOULD allocate additional path resources,
such as e.g., for packet number handling, only after path validation has successfully completed.</t>
      </section>
      <section anchor="denial-of-service-with-multiple-paths">
        <name>Denial of Service with Multiple Paths</name>
        <t>Path validation as specified in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>
for migration is used
unchanged for path initiation in this extension.
Further, the multipath extension allows for the creation of multiple paths, which means
that in addition to the security considerations
on source address spoofing outlined in <xref section="21.5.4" sectionFormat="of" target="QUIC-TRANSPORT"/>,
there is a risk of amplified DoS attacks through simultaneous opening
or migration of multiple paths. For example, an attacker could set or spoof the
4-tuples used in multiple paths so that packets sent by the server would
travel through common network paths in an attempt to overwhelm a target.</t>
        <t><xref target="QUIC-TRANSPORT"/> only allows the use of one path
and the number of concurrent path validation attempts is
limited by number of issued connection IDs.
This extension allows for multiple open paths that could in theory be migrated
all at the same time, still limited by number of issued connection IDs for each path.
Further, multiple paths could be initialized simultaneously, limited by the maximum
number of allowed paths.</t>
        <t>Therefore, endpoints are advised to keep the maximum number of paths small
and might consider
additional measures to limit the number of concurrent path validation processes
e.g., by pacing them out or limiting the number of path initiation attempts
over a certain time period.</t>
        <t>However, the use of multipath does not change the
anti-amplification limits as specified in <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>.
The attacker would need to send a separate challenge on each path
used in the attack, and the amplification limits would apply to the
amount of data sent by the server on that path. The attacker could get the same effect
by opening many QUIC connections and conducting the attack on each of them,
without negotiating the multipath option.</t>
      </section>
      <section anchor="cryptographic-handshake-and-aead-nonce">
        <name>Cryptographic Handshake and AEAD Nonce</name>
        <t>The multipath extension as specified in this document is only enabled after a
successful handshake when both endpoints indicate support for this extension.
All new frames defined in this extension are only used in 1-RTT packets.</t>
        <t>As the handshake is not changed by this extension, the transport security mechanisms
as specified in <xref target="QUIC-TLS"/>, such as encryption key exchange and peer authentication,
remain unchanged. As such, the security considerations in <xref target="QUIC-TLS"/> apply unaltered.</t>
        <t>The limits as discussed on <xref section="B" sectionFormat="of" target="QUIC-TLS"/>
apply to the total number of packets sent on all paths,
not each path separately.</t>
        <t>This specification changes the AEAD nonce calculation by including the path ID
as part of the calculation (see <xref target="nonce"/>). To ensure unique nonces, path IDs
are limited to 32 bits and cannot be reused for another path of the same connection.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is a collaboration of authors that combines work from
three proposals. Further authors of one of the original proposals are Qing An and Zhenyu Li.</t>
      <t>Thanks to Marten Seemann, Kazuho Oku, Martin Thomson, Magnus Westerlund, Mike Bishop,
Lucas Pardue, Michael Eriksson, Yu Zhu, Gorry Fairhurst, Tilmann Zäschke, and Tommy Pauly
for their thorough reviews and valuable contributions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="QUIC-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6356">
          <front>
            <title>Coupled Congestion Control for Multipath Transport Protocols</title>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="D. Wischik" initials="D." surname="Wischik"/>
            <date month="October" year="2011"/>
            <abstract>
              <t>Often endpoints are connected by multiple paths, but communications are usually restricted to a single path per connection. Resource usage within the network would be more efficient were it possible for these multiple paths to be used concurrently. Multipath TCP is a proposal to achieve multipath transport in TCP.</t>
              <t>New congestion control algorithms are needed for multipath transport protocols such as Multipath TCP, as single path algorithms have a series of issues in the multipath context. One of the prominent problems is that running existing algorithms such as standard TCP independently on each path would give the multipath flow more than its fair share at a bottleneck link traversed by more than one of its subflows. Further, it is desirable that a source with multiple paths available will transfer more traffic using the least congested of the paths, achieving a property called "resource pooling" where a bundle of links effectively behaves like one shared link with bigger capacity. This would increase the overall efficiency of the network and also its robustness to failure.</t>
              <t>This document presents a congestion control algorithm that couples the congestion control algorithms running on different subflows by linking their increase functions, and dynamically controls the overall aggressiveness of the multipath flow. The result is a practical algorithm that is fair to TCP at bottlenecks while moving traffic away from congested links. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6356"/>
          <seriesInfo name="DOI" value="10.17487/RFC6356"/>
        </reference>
        <reference anchor="RFC9312">
          <front>
            <title>Manageability of the QUIC Transport Protocol</title>
            <author fullname="M. Kühlewind" initials="M." surname="Kühlewind"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <date month="September" year="2022"/>
            <abstract>
              <t>This document discusses manageability of the QUIC transport protocol and focuses on the implications of QUIC's design and wire image on network operations involving QUIC traffic. It is intended as a "user's manual" for the wire image to provide guidance for network operators and equipment vendors who rely on the use of transport-aware network functions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9312"/>
          <seriesInfo name="DOI" value="10.17487/RFC9312"/>
        </reference>
        <reference anchor="OLIA">
          <front>
            <title>MPTCP is not pareto-optimal: performance issues and a possible solution</title>
            <author initials="R." surname="Khalili">
              <organization/>
            </author>
            <author initials="N." surname="Gast">
              <organization/>
            </author>
            <author initials="M." surname="Popovic">
              <organization/>
            </author>
            <author initials="U." surname="Upadhyay">
              <organization/>
            </author>
            <author initials="J." surname="Le Boudec">
              <organization/>
            </author>
            <date year="2012"/>
          </front>
          <seriesInfo name="Proceedings of the 8th international conference on Emerging networking experiments and technologies, ACM" value=""/>
        </reference>
        <reference anchor="RFC2475">
          <front>
            <title>An Architecture for Differentiated Services</title>
            <author fullname="S. Blake" initials="S." surname="Blake"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <author fullname="M. Carlson" initials="M." surname="Carlson"/>
            <author fullname="E. Davies" initials="E." surname="Davies"/>
            <author fullname="Z. Wang" initials="Z." surname="Wang"/>
            <author fullname="W. Weiss" initials="W." surname="Weiss"/>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines an architecture for implementing scalable service differentiation in the Internet. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2475"/>
          <seriesInfo name="DOI" value="10.17487/RFC2475"/>
        </reference>
        <reference anchor="RFC9743">
          <front>
            <title>Specifying New Congestion Control Algorithms</title>
            <author fullname="M. Duke" initials="M." role="editor" surname="Duke"/>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst"/>
            <date month="March" year="2025"/>
            <abstract>
              <t>RFC 5033 discusses the principles and guidelines for standardizing new congestion control algorithms. This document obsoletes RFC 5033 to reflect changes in the congestion control landscape by providing a framework for the development and assessment of congestion control mechanisms, promoting stability across diverse network paths. This document seeks to ensure that proposed congestion control algorithms operate efficiently and without harm when used in the global Internet. It emphasizes the need for comprehensive testing and validation to prevent adverse interactions with existing flows.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="133"/>
          <seriesInfo name="RFC" value="9743"/>
          <seriesInfo name="DOI" value="10.17487/RFC9743"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA829y24kSZY2trencDEXTf6KiCKZl6rM6R41i8mqojovHJJZ
PTU9jWyPCCfpnRHhMe4eyWRn1ewECNppIUArLSRBgAA9gQCt9CaCfgH/W+hc
zY6ZuweZPT3An0B3ZUaEm9vl2Ll+55zxeOzasl0UL7LX+Sq/LlfX2XKzaMv1
osjWeXvTZFdVneXZP7w7Pc5m1WpVzNqyWrl8Oq2Lj/CU/vjM/xh/6ubVbJUv
Ydh5nV+147Jor8b/silnYx4dfjw+3HfzvIWffH55dHnyi5vBP66r+u5F1rRz
17R1kS9fZKcnl985V67rF1lbb5r2cH//+f6hy+HbF9llna+adVW37raqP1zX
1Wb9gqf6e/g3LuZ7/Mx9KO7gB3MYbdUW9apoxy9xWg7ekq/m7/NFtYJ53BWN
W5cvsj+01WyUNTBsXVw18Le7Jf7lj87lm/amql+4scuyq81iQUuEv+OfFy+y
nf/43/6P//H/+t/+v//5v9mRD/NmVsKIOz/lq2VRZq/KDX5TV7jhxbxsqxr+
WdXXL7KjRTnNpznMcDaBz4plXi5eZMsyr/5cThZ3y9/m/INxCT+YVUuaQzoJ
nMN/+t//j//3//zv/9P/8j/JHPwUNqsrmMLrnD6nd76bFnV2WcxuVtWiui6L
Rt+ur7+jZybL/Lcb+Gl4bblqYJ8n2csiO65WMKMP+Ckf+D9silVbrpLvkiXL
+1flx6JuyvYuq66y19WqyXbfvX775mLPzOFfeLzJvJjxcL/dLOGXk3w2mRZm
Om8n2bfVKv8Iv97URZjP20X5sYR1Jl/yBI5fVZuPOcwWyCD7/cmr81Pz5oqf
nEzDk7/dzBb8RPzy40n2w6Zs4cHw4uObumzaMl/Zr+i1Z3X5EYg9eztrq/Wm
s+s3/PPfyn8nQK/mVa8n2e82xc2iuC1X8/C212X95zz5pnfTT+py1jRwhTND
ZfDs5IN/9reF/IZO3LlVVS/zFs4KyQyv1/jy/OjNxdnb88sXWX01e76/v++/
eXWhnx3oZ+cnx29/PDn/Sb84hAu9urKDnn93/Ozx02fy1+ePDw7xr29fnR4x
ZQuP2nl9dnl8lpVNtqpa4E910Vbjat2WyxyWsS5qGnQ1K+AnzQboGY7V5dm6
appyCkyqqRYbZF98NZj77BzuHxzyBw2su2hwavDxWV3NCti71XWD1NneFNk3
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

-->

</rfc>
