<?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.6.39 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-masque-quic-proxy-00" category="exp" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.5 -->
  <front>
    <title abbrev="QUIC Proxy">QUIC-Aware Proxying Using HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-masque-quic-proxy-00"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="E." surname="Rosenberg" fullname="Eric Rosenberg">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>eric_rosenberg@apple.com</email>
      </address>
    </author>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View, California 94043</city>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2023" month="August" day="17"/>
    <workgroup>MASQUE</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 42?>

<t>This document defines an extension to UDP Proxying over HTTP
that adds specific optimizations for proxied QUIC connections. This extension
allows a proxy to reuse UDP 4-tuples for multiple connections. It also defines a
mode of proxying in which QUIC short header packets can be forwarded using an
HTTP/3 proxy rather than being re-encapsulated and re-encrypted.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/tfpauly/quic-proxy">https://github.com/tfpauly/quic-proxy</eref>.</t>
    </note>
  </front>
  <middle>
    <?line 50?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>UDP Proxying over HTTP <xref target="CONNECT-UDP"/>
defines a way to send datagrams through an HTTP proxy, where UDP is used to communicate
between the proxy and a target server. This can be used to proxy QUIC
connections <xref target="QUIC"/>, since QUIC runs over UDP datagrams.</t>
      <t>This document uses the term "target" to refer to the server that a client is
accessing via a proxy. This target may be an origin hosting content, or another
proxy.</t>
      <t>This document extends the UDP proxying protocol to add signalling about QUIC
Connection IDs. QUIC Connection IDs are used to identify QUIC connections in
scenarios where there is not a strict bidirectional mapping between one QUIC
connection and one UDP 4-tuple (pairs of IP addresses and ports). A proxy that
is aware of Connection IDs can reuse UDP 4-tuples between itself and a target
for multiple proxied QUIC connections.</t>
      <t>Awareness of Connection IDs also allows a proxy to avoid re-encapsulation and
re-encryption of proxied QUIC packets once a connection has been established.
When this functionality is present, the proxy can support two modes for handling
QUIC packets:</t>
      <ol spacing="normal" type="1"><li>Tunnelled, in which client &lt;-&gt; target QUIC packets are encapsulated inside
client &lt;-&gt; proxy QUIC packets. These packets use multiple layers of encryption
and congestion control. QUIC long header packets MUST use this mode. QUIC short
header packets MAY use this mode. This is the default mode for UDP proxying.</li>
        <li>Forwarded, in which client &lt;-&gt; target QUIC packets are sent directly over the
client &lt;-&gt; proxy UDP socket. These packets are only encrypted using the
client-target keys, and use the client-target congestion control. This mode MUST
only be used for QUIC short header packets.</li>
      </ol>
      <t>Forwarded mode is defined as an optimization to reduce CPU processing on clients and
proxies, as well as avoiding MTU overhead for packets on the wire. This makes it
suitable for deployment situations that otherwise relied on cleartext TCP
proxies, which cannot support QUIC and have inferior security and privacy
properties.</t>
      <t>The properties provided by the forwarded mode are as follows:</t>
      <ul spacing="normal">
        <li>All packets sent between the client and the target traverse through the proxy
device.</li>
        <li>The target server cannot know the IP address of the client solely based on the
proxied packets the target receives.</li>
        <li>Observers of either or both of the client &lt;-&gt; proxy link and the proxy &lt;-&gt;
target are not able to learn more about the client &lt;-&gt; target communication than
if no proxy was used.</li>
      </ul>
      <t>It is not a goal of forwarded mode to prevent correlation between client &lt;-&gt;
proxy and the proxy &lt;-&gt; target packets from an entity that can observe both
links. See <xref target="security"/> for further discussion.</t>
      <t>Both clients and proxies can unilaterally choose to disable forwarded mode for
any client &lt;-&gt; target connection.</t>
      <t>The forwarded mode of this extension is only defined for HTTP/3
<xref target="HTTP3"/> and not any earlier versions of HTTP.</t>
      <t>QUIC proxies only need to understand the Header Form bit, and the connection ID
fields from packets in client &lt;-&gt; target QUIC connections. Since these fields
are all in the QUIC invariants header <xref target="INVARIANTS"/>,
QUIC proxies can proxy all versions of QUIC.</t>
      <section anchor="conventions">
        <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>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This document uses the following terms:</t>
        <ul spacing="normal">
          <li>Client: the client of all QUIC connections discussed in this document.</li>
          <li>Proxy: the endpoint that responds to the UDP proxying request.</li>
          <li>Target: the server that a client is accessing via a proxy.</li>
          <li>Client &lt;-&gt; Proxy HTTP stream: a single HTTP stream established from
the client to the proxy.</li>
          <li>Socket: a UDP 4-tuple (local IP address, local UDP port, remote IP address,
remote UDP port). In some implementations, this is referred to as a "connected"
socket.</li>
          <li>Client-facing socket: the socket used to communicate between the client and
the proxy.</li>
          <li>Target-facing socket: the socket used to communicate between the proxy and
the target.</li>
          <li>Client Connection ID: a QUIC Connection ID that is chosen by the client, and
is used in the Destination Connection ID field of packets from the target to
the client.</li>
          <li>Target Connection ID: a QUIC Connection ID that is chosen by the target, and
is used in the Destination Connection ID field of packets from the client to
the target.</li>
          <li>Virtual Client Connection ID: a fake QUIC Connection ID that is chosen by the
client that the proxy MUST use when sending QUIC packets in forwarded mode.</li>
          <li>Virtual Target Connection ID: a fake QUIC Connection ID that is chosen by the
proxy that the client MUST use when sending QUIC packets in forwarded mode.</li>
        </ul>
      </section>
      <section anchor="virtual-connection-ids">
        <name>Virtual Connection IDs</name>
        <t>QUIC allows each endpoint of a connection to choose the connection IDs it
receives with. Servers receiving QUIC packets can employ load balancing
strategies such as those described in <xref target="QUIC-LB"/>
that encode routing information in
the connection ID. When operating in forwarded mode, clients send QUIC packets
destined for the Target directly to the Proxy. Since these packets are generated
using the Target Connection ID, load balancers would not be able to route packets
to the correct Proxy if the packets were sent with the Target Connection ID.
The Virtual Target Connection ID is a connection ID chosen
by the Proxy that the Client uses when sending forwarded mode packets. The Proxy
replaces the Virtual Target Connection ID with the Target Connection ID prior to
forwarding the packet to the Target.</t>
        <t>Similarly, QUIC requires that connection IDs aren't reused over multiple network
paths to avoid linkability. The Virtual Client Connection ID is a connection ID
chosen by the Client that the Proxy uses when sending forwarded mode packets.
The Proxy replaces the Client Connection ID with the Virtual Client Connection
ID prior to forwarding the packet to the Client. Clients take advantage of this
to avoid linkability when migrating a client to proxy network path. The Virtual
Client Connection ID allows the connection ID bytes to change on the wire
without requiring the connection IDs on the client to target connection change.</t>
        <t>Clients and Proxies not implementing forwarded mode do not need to consider
Virtual Connection IDs since all Client&lt;-&gt;Target datagrams will be encapsulated
within the Client&lt;-&gt;Proxy connection.</t>
      </section>
    </section>
    <section anchor="mappings">
      <name>Required Proxy State</name>
      <t>In the methods defined in this document, the proxy is aware of the QUIC
Connection IDs being used by proxied connections, along with the sockets
used to communicate with the client and the target. Tracking Connection IDs in
this way allows the proxy to reuse target-facing sockets for multiple
connections and support the forwarded mode of proxying.</t>
      <t>QUIC packets can be either tunnelled within an HTTP proxy connection using
HTTP Datagram frames <xref target="HTTP-DGRAM"/>, or be forwarded
directly alongside an HTTP/3 proxy connection on the same set of IP addresses and UDP
ports. The use of forwarded mode requires the consent of both the client and the
proxy.</t>
      <t>In order to correctly route QUIC packets in both tunnelled and forwarded modes,
the proxy needs to maintain mappings between several items. There are three
required unidirectional mappings, described below.</t>
      <section anchor="stream-mapping">
        <name>Stream Mapping</name>
        <t>Each client &lt;-&gt; proxy HTTP stream MUST be mapped to a single target-facing socket.</t>
        <artwork><![CDATA[
(Client <-> Proxy HTTP Stream) => Target-facing socket
]]></artwork>
        <t>Multiple streams can map to the same target-facing socket, but a
single stream cannot be mapped to multiple target-facing sockets.</t>
        <t>This mapping guarantees that any HTTP Datagram using a stream sent
from the client to the proxy in tunnelled mode can be sent to the correct
target.</t>
      </section>
      <section anchor="virtual-target-connection-id-mapping">
        <name>Virtual Target Connection ID Mapping</name>
        <t>Each pair of Virtual Target Connection ID and client-facing socket MUST map to a
single target-facing socket and Target Connection ID.</t>
        <artwork><![CDATA[
(Client-facing socket + Virtual Target Connection ID)
    => (Target-facing socket + Target Connection ID)
]]></artwork>
        <t>Multiple pairs of Connection IDs and client-facing sockets can map to the
same target-facing socket.</t>
        <t>This mapping guarantees that any QUIC packet containing the Virtual Target
Connection ID sent from the client to the proxy in forwarded mode can be sent to
the correct target with the correct Target Connection ID. Thus, a proxy that
does not allow forwarded mode does not need to maintain this mapping.</t>
      </section>
      <section anchor="client-connection-id-mappings">
        <name>Client Connection ID Mappings</name>
        <t>Each pair of Client Connection ID and target-facing socket MUST map to a single
stream on a single client &lt;-&gt; proxy HTTP stream. Additionally, when supporting
forwarded mode, the pair of Client Connection ID and target-facing socket MUST
map to a single client-facing socket and Virtual Client Connection ID.</t>
        <artwork><![CDATA[
(Target-facing socket + Client Connection ID) => (Client <-> Proxy HTTP Stream)
(Target-facing socket + Client Connection ID)
    => (Client-facing socket + Virtual Client Connection ID)
]]></artwork>
        <t>Multiple pairs of Connection IDs and target-facing sockets can map to the same
HTTP stream or client-facing socket.</t>
        <t>These mappings guarantee that any QUIC packet sent from a target to the proxy
can be sent to the correct client, in either tunnelled or forwarded mode. Note
that this mapping becomes trivial if the proxy always opens a new target-facing
socket for every client request with a unique stream. The mapping is
critical for any case where target-facing sockets are shared or reused.</t>
      </section>
      <section anchor="conflicts">
        <name>Detecting Connection ID Conflicts</name>
        <t>In order to be able to route packets correctly in both tunnelled and forwarded
mode, proxies check for conflicts before creating a new mapping. If a conflict
is detected, the proxy will reject the client's request, as described in
<xref target="proxy-behavior"/>.</t>
        <t>Two sockets conflict if and only if all members of the 4-tuple (local IP
address, local UDP port, remote IP address, and remote UDP port) are identical.</t>
        <t>Two Connection IDs conflict if and only if one Connection ID is equal to or a
prefix of another. For example, a zero-length Connection ID conflicts with all
connection IDs. This definition of a conflict originates from the fact that
QUIC short headers do not carry the length of the Destination Connection ID
field, and therefore if two short headers with different Destination Connection
IDs are received on a shared socket, one being a prefix of the other prevents
the receiver from identifying which mapping this corresponds to.</t>
        <t>The proxy treats two mappings as being in conflict when a conflict is detected
for all elements on the left side of the mapping diagrams above.</t>
        <t>Since very short Connection IDs are more likely to lead to conflicts,
particularly zero-length Connection IDs, a proxy MAY choose to reject all
requests for very short Connection IDs as conflicts, in anticipation of future
conflicts.</t>
      </section>
      <section anchor="stateless-resets-for-forwarded-mode-quic-packets">
        <name>Stateless Resets for Forwarded Mode QUIC Packets</name>
        <t>While the lifecycle of forwarding rules are bound to the lifecycle of the
client&lt;-&gt;proxy HTTP stream, a peer may not be aware that the stream has
terminated. If the above mappings are lost or removed without the peer's
knowledge, they may send forwarded mode packets even though the Client
or Proxy no longer has state for that connection. To allow the Client or
Proxy to reset the client&lt;-&gt;target connection in the absence the mappings
above, a stateless reset token corresponding to the Virtual Connection ID
can be provided.</t>
        <t>Consider a proxy that initiates closure of a client&lt;-&gt;proxy QUIC connection.
If the client is temporarily unresponsive or unreachable, the proxy might have
considered the connection closed and removed all connection state (including
the stream mappings used for forwarding). If the client never learned about the closure, it
might send forwarded mode packets to the proxy, assuming the stream mappings
and client&lt;-&gt;proxy connection are still intact. The proxy will receive these
forwarded mode packets, but won't have any state corresponding to the
destination connection ID in the packet. If the proxy has provided a stateless
reset token for the Virtual Target Connection ID, it can send a stateless reset
packet to quickly notify the client that the client&lt;-&gt;target connection is
broken.</t>
      </section>
      <section anchor="stateless-resets-from-the-target">
        <name>Stateless Resets from the Target</name>
        <t>Reuse of target-facing sockets is only possible because QUIC connection IDs
allow distinguishing packets for multiple QUIC connections received with the
same 5-tuple. One exception to this is Stateless Reset packets, in which the
connection ID is not used, but rather populated with unpredictable bits followed
by a Stateless Reset token, to make it indistinguishable from a regular packet
with a short header. In order for the proxy to correctly recognize Stateless
Reset packets, the client SHOULD share the Stateless Reset token for each
registered Target Connection ID. When the proxy receives a Stateless Reset packet,
it can send the packet to the client as a tunnelled datagram. Although Stateless Reset packets
look like short header packets, they are not technically short header packets and do not contain
negotiated connection IDs, and thus are not eligible for forwarded mode.</t>
      </section>
    </section>
    <section anchor="connection-id-capsule-types">
      <name>Connection ID Capsule Types</name>
      <t>Proxy awareness of QUIC Connection IDs relies on using capsules (<xref target="HTTP-DGRAM"/>)
to signal the addition and removal of Client and Target Connection IDs.</t>
      <t>Note that these capsules do not register contexts. QUIC packets are encoded
using HTTP Datagrams with the context ID set to zero as defined in
<xref target="CONNECT-UDP"/>.</t>
      <t>The capsules used for QUIC-aware proxying allow a client to register connection
IDs with the proxy, and for the proxy to acknowledge or reject the connection
ID mappings.</t>
      <t>The REGISTER_CLIENT_CID and REGISTER_TARGET_CID capsule types (see
<xref target="iana-capsule-types"/> for the capsule type values) allow a client to inform
the proxy about a new Client Connection ID or a new Target Connection ID,
respectively. These capsule types MUST only be sent by a client.</t>
      <t>The ACK_CLIENT_CID and ACK_TARGET_CID capsule types (see <xref target="iana-capsule-types"/>
for the capsule type values) are sent by the proxy to the client to indicate
that a mapping was successfully created for a registered connection ID as well
as provide the Virtual Target Connection ID that may be used in forwarded mode.
These capsule types MUST only be sent by a proxy.</t>
      <t>The CLOSE_CLIENT_CID and CLOSE_TARGET_CID capsule types (see
<xref target="iana-capsule-types"/> for the capsule type values) allow either a client
or a proxy to remove a mapping for a connection ID. These capsule types
MAY be sent by either a client or the proxy. If a proxy sends a
CLOSE_CLIENT_CID without having sent an ACK_CLIENT_CID, or if a proxy
sends a CLOSE_TARGET_CID without having sent an ACK_TARGET_CID,
it is rejecting a Connection ID registration.</t>
      <t>ACK_CLIENT_CID, CLOSE_CLIENT_CID, and CLOSE_TARGET_CID capsule types are
formatted as follows:</t>
      <figure anchor="fig-capsule-cid">
        <name>Connection ID Capsule Format</name>
        <artwork><![CDATA[
Connection ID Capsule {
  Type (i) = 0xffe402, 0xffe404, 0xffe405
  Length (i),
  Connection ID (0..2040),
}
]]></artwork>
      </figure>
      <dl>
        <dt>Connection ID:</dt>
        <dd>
          <t>A connection ID being acknowledged, which is between 0 and 255 bytes in
length. The length of the connection ID is implied by the length of the
capsule. Note that in QUICv1, the length of the Connection ID is limited
to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
        </dd>
      </dl>
      <t>The REGISTER_TARGET_CID capsule includes the target-provided connection ID
and Stateless Reset Token.</t>
      <figure anchor="fig-capsule-register-target-cid">
        <name>Register Target Connection ID Capsule Format</name>
        <artwork><![CDATA[
Register Target Connection ID Capsule {
  Type (i) = 0xffe401
  Length (i),
  Connection ID Length (i)
  Connection ID (0..2040),
  Stateless Reset Token Length (i),
  Stateless Reset Token (..),
}
]]></artwork>
      </figure>
      <dl>
        <dt>Connection ID Length</dt>
        <dd>
          <t>The length of the connection ID being registered, which is between 0 and
255. Note that in QUICv1, the length of the Connection ID is limited to 20
bytes, but QUIC invariants allow up to 255 bytes.</t>
        </dd>
        <dt>Connection ID</dt>
        <dd>
          <t>A connection ID being registered whose length is equal to Connection ID
Length. This is the real Target or Client Connection ID.</t>
        </dd>
        <dt>Stateless Reset Token Length</dt>
        <dd>
          <t>The length of the target-provided Stateless Reset Token.</t>
        </dd>
        <dt>Stateless Reset Token</dt>
        <dd>
          <t>The target-provided Stateless Reset token allowing the proxy to correctly
recognize Stateless Reset packets to be tunneled to the client.</t>
        </dd>
      </dl>
      <t>The REGISTER_CLIENT_CID and ACK_TARGET_CID capsule types include a Virtual
Connection ID and Stateless Reset Token.</t>
      <figure anchor="fig-capsule-virtual-cid">
        <name>Virtual Connection ID Capsule Format</name>
        <artwork><![CDATA[
Virtual Connection ID Capsule {
  Type (i) = 0xffe400, 0xffe403
  Length (i)
  Connection ID Length (i)
  Connection ID (0..2040),
  Virtual Connection ID Length (i)
  Virtual Connection ID (0..2040),
  Stateless Reset Token Length (i),
  Stateless Reset Token (..),
}
]]></artwork>
      </figure>
      <dl>
        <dt>Connection ID Length</dt>
        <dd>
          <t>The length of the connection ID being registered or acknowledged, which
is between 0 and 255. Note that in QUICv1, the length of the Connection ID
is limited to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
        </dd>
        <dt>Connection ID</dt>
        <dd>
          <t>A connection ID being registered or acknowledged whose length is equal to
Connection ID Length. This is the real Target or Client Connection ID.</t>
        </dd>
        <dt>Virtual Connection ID Length</dt>
        <dd>
          <t>The length of the virtual connection ID being provided. This MUST be a valid
connection ID length for the QUIC version used in the client&lt;-&gt;proxy QUIC
connection. When forwarded mode is not negotiated, the length MUST be zero.
The Virtual Connection ID Length and Connection ID Length SHOULD be equal
when possible to avoid the need to resize packets during replacement.</t>
        </dd>
        <dt>Virtual Connection ID</dt>
        <dd>
          <t>The peer-chosen connection ID that the sender of forwarded mode packets MUST
use when sending. The endpoint rewrites forwarded mode packets to contain the
correct Connection ID prior to sending them.</t>
        </dd>
        <dt>Stateless Reset Token Length</dt>
        <dd>
          <t>The length of the stateless reset token that may be sent by the client or
proxy in response to forwarded mode packets in order to reset the
Client&lt;-&gt;Target QUIC connection. When forwarded mode is not negotiated, the
length MUST be zero. Proxies or Clients choosing not to support stateless
resets MAY set the length to zero. Clients or Proxies receiving a zero-length
stateless reset token MUST ignore it.</t>
        </dd>
        <dt>Stateless Reset Token</dt>
        <dd>
          <t>A Stateless Reset Token allowing reset of the Client&lt;-&gt;Target connection in
response to Client&lt;-&gt;Target forwarded mode packets.</t>
        </dd>
      </dl>
    </section>
    <section anchor="client-behavior">
      <name>Client Behavior</name>
      <t>A client initiates UDP proxying via a CONNECT request as defined
in <xref target="CONNECT-UDP"/>. Within its request, it includes the "Proxy-QUIC-Forwarding"
header to indicate whether or not the request should support forwarding.
If this header is not included, the client MUST NOT send any connection ID
capsules.</t>
      <t>The "Proxy-QUIC-Forwarding" is an Item Structured Header <xref target="RFC8941"/>. Its
value MUST be a Boolean. Its ABNF is:</t>
      <artwork><![CDATA[
    Proxy-QUIC-Forwarding = sf-boolean
]]></artwork>
      <t>If the client wants to enable QUIC packet forwarding for this request, it sets
the value to "?1". If it doesn't want to enable forwarding, but instead only
provide information about QUIC Connection IDs for the purpose of allowing
the proxy to share a target-facing socket, it sets the value to "?0".</t>
      <t>If the proxy supports QUIC-aware proxying, it will include the
"Proxy-QUIC-Forwarding" header in successful HTTP responses. The value
indicates whether or not the proxy supports forwarding. If the client does
not receive this header in responses, the client SHALL assume that the proxy
does not support this extension.</t>
      <t>The client sends a REGISTER_CLIENT_CID capsule whenever it advertises a new
Client Connection ID to the target, and a REGISTER_TARGET_CID capsule when
it has received a new Target Connection ID for the target. In order to change
the connection ID bytes on the wire, a client can update a previously advertised Virtual Client
Connection ID by sending a new REGISTER_CLIENT_CID with the same Connection ID,
but a different Virtual Connection ID. Similarly, the client may solicit a new
Virtual Target Connection ID by sending a REGISTER_TARGET_CID capsule with
a previously registered Target Connection ID. Clients are responsible for
changing Virtual Connection IDs when the HTTP stream's network path changes to
avoid linkability across network paths. Note that initial
REGISTER_CLIENT_CID capsules MAY be sent prior to receiving an HTTP response
from the proxy.</t>
      <section anchor="new-proxied-connection-setup">
        <name>New Proxied Connection Setup</name>
        <t>To initiate QUIC-aware proxying, the client sends a REGISTER_CLIENT_CID
capsule containing the initial Client Connection ID that the client has
advertised to the target as well as a Virtual Connection ID that the proxy MUST
use when sending forwarded mode packets. If forwarded mode is not supported,
the Virtual Connection ID Length MUST be zero.</t>
        <t>If the mapping is created successfully, the client will receive a
ACK_CLIENT_CID capsule that contains the same Client Connection ID that was
requested.</t>
        <t>Since clients are always aware whether or not they are using a QUIC proxy,
clients are expected to cooperate with proxies in selecting Client Connection
IDs. A proxy detects a conflict when it is not able to create a unique mapping
using the Client Connection ID (<xref target="conflicts"/>). It can reject requests that
would cause a conflict and indicate this to the client by replying with a
CLOSE_CLIENT_CID capsule. In order to avoid conflicts, clients SHOULD select
Client Connection IDs of at least 8 bytes in length with unpredictable values.
A client also SHOULD NOT select a Client Connection ID that matches the ID used
for the QUIC connection to the proxy, as this inherently creates a conflict.</t>
        <t>If the rejection indicated a conflict due to the Client Connection ID, the
client MUST select a new Connection ID before sending a new request, and
generate a new packet. For example, if a client is sending a QUIC Initial
packet and chooses a Connection ID that conflicts with an existing mapping
to the same target server, it will need to generate a new QUIC Initial.</t>
      </section>
      <section anchor="adding-new-client-connection-ids">
        <name>Adding New Client Connection IDs</name>
        <t>Since QUIC connection IDs are chosen by the receiver, an endpoint needs to
communicate its chosen connection IDs to its peer before the peer can start
using them. In QUICv1, this is performed using the NEW_CONNECTION_ID frame.</t>
        <t>Prior to informing the target of a new chosen client connection ID, the client
MUST send a REGISTER_CLIENT_CID capsule request containing the new Client
Connection ID and Virtual Client Connection ID.</t>
        <t>The client should only inform the target of the new Client Connection ID once an
ACK_CLIENT_CID capsule is received that contains the echoed connection ID.</t>
      </section>
      <section anchor="sending-with-forwarded-mode">
        <name>Sending With Forwarded Mode</name>
        <t>Support for forwarded mode is determined by the "Proxy-QUIC-Forwarding" header,
see <xref target="proxy-behavior"/>.</t>
        <t>Once the client has learned the target server's Connection ID, such as in the
response to a QUIC Initial packet, it can send a REGISTER_TARGET_CID capsule
containing the Target Connection ID to request the ability to forward packets.</t>
        <t>The client MUST wait for an ACK_TARGET_CID capsule that contains the echoed
connection ID and Virtual Target Connection ID before using forwarded mode.</t>
        <t>Prior to receiving the proxy server response, the client MUST send short header
packets tunnelled in HTTP Datagram frames. The client MAY also choose to tunnel
some short header packets even after receiving the successful response.</t>
        <t>If the Target Connection ID registration is rejected, for example with a
CLOSE_TARGET_CID capsule, it MUST NOT forward packets to the requested Target
Connection ID, but only use tunnelled mode. The request might also be rejected
if the proxy does not support forwarded mode or has it disabled by policy.</t>
        <t>QUIC long header packets MUST NOT be forwarded. These packets can only be
tunnelled within HTTP Datagram frames to avoid exposing unnecessary connection
metadata.</t>
        <t>When forwarding, the client sends a QUIC packet with the Virtual Target
Connection ID in the QUIC short header, using the same socket between client and
proxy that was used for the main QUIC connection between client and proxy.</t>
        <t>When forwarding, the proxy sends a QUIC packet with the Virtual Client Target
Connection ID in the QUIC short header, using the same socket between client
and proxy that was used for the main QUIC connection between client and proxy.</t>
        <t>Prior to sending a forwarded mode packet, the sender MUST replace the Connection
ID with the Virtual Connection ID. If the Virtual Connection ID is larger than
the Connection ID, the sender MUST extend the length of the packet by the
difference between the two lengths, to include the entire Virtual Connection ID.
If the Virtual Connection ID is smaller than the Connection ID, the sender MUST
shrink the length of the packet by the difference between the two lengths.</t>
        <t>Clients and proxies supporting forwarded mode MUST be able to handle Virtual
Connection IDs of different lengths than the corresponding Connection IDs.</t>
      </section>
      <section anchor="receiving-with-forwarded-mode">
        <name>Receiving With Forwarded Mode</name>
        <t>If the client has indicated support for forwarded mode with the "Proxy-QUIC-Forwarding"
header, the proxy MAY use forwarded mode for any Client Connection ID for which
it has a valid mapping.</t>
        <t>Once a client has sent "Proxy-QUIC-Forwarding" with a value of "?1", it MUST be
prepared to receive forwarded short header packets on the socket between itself
and the proxy for any Virtual Client Connection ID that it has registered with a
REGISTER_CLIENT_CID capsule. The client uses the Destination Connection ID field
of the received packet to determine if the packet was originated by the proxy,
or merely forwarded from the target. The client replaces the Virtual Client
Connection ID with the real Client Connection ID before processing the packet further.</t>
      </section>
      <section anchor="connection-maintenance-in-forwarded-mode">
        <name>Connection Maintenance in Forwarded Mode</name>
        <t>When a client and proxy are using forwarded mode, it is possible that there can be
long periods of time in which no ack-eliciting packets (see <xref section="2" sectionFormat="of" target="QUIC-RETRANSMISSION"/>) are exchanged
between the client and proxy. If these periods extend beyond the effective idle
timeout for the client-to-proxy QUIC connection (see <xref section="10.1" sectionFormat="of" target="QUIC"/>),
the QUIC connection might be closed by the proxy if the proxy does not use
forwarded packets as an explicit liveness signal. To avoid this, clients SHOULD
send keepalive packets to the proxy before the idle timeouts would be reached,
which can be done using a PING frame or another ack-eliciting frame as described
in <xref section="10.1.1" sectionFormat="of" target="QUIC"/>.</t>
      </section>
    </section>
    <section anchor="proxy-behavior">
      <name>Proxy Behavior</name>
      <t>Upon receipt of a CONNECT request that includes the "Proxy-QUIC-Forwarding"
header, the proxy indicates to the client that it supports QUIC-aware proxying
by including a "Proxy-QUIC-Forwarding" header in a successful response.
If it supports QUIC packet forwarding, it sets the value to "?1"; otherwise,
it sets it to "?0".</t>
      <t>Upon receipt of a REGISTER_CLIENT_CID or REGISTER_TARGET_CID capsule,
the proxy validates the registration, tries to establish the appropriate
mappings as described in <xref target="mappings"/>.</t>
      <t>The proxy MUST reply to each REGISTER_CLIENT_CID capsule with either
an ACK_CLIENT_CID or CLOSE_CLIENT_CID capsule containing the
Connection ID that was in the registration capsule.</t>
      <t>Similarly, the proxy MUST reply to each REGISTER_TARGET_CID capsule with
either an ACK_TARGET_CID or CLOSE_TARGET_CID capsule containing the
Connection ID that was in the registration capsule.</t>
      <t>The proxy then determines the target-facing socket to associate with the
client's request. This will generally involve performing a DNS lookup for
the target hostname in the CONNECT request, or finding an existing target-facing
socket to the authority. The target-facing socket might already be open due to a
previous request from this client, or another. If the socket is not already
created, the proxy creates a new one. Proxies can choose to reuse target-facing
sockets across multiple UDP proxying requests, or have a unique target-facing socket
for every UDP proxying request.</t>
      <t>If a proxy reuses target-facing sockets, it SHOULD store which authorities
(which could be a domain name or IP address literal) are being accessed over a
particular target-facing socket so it can avoid performing a new DNS query and
potentially choosing a different target server IP address which could map to a
different target server.</t>
      <t>Target-facing sockets MUST NOT be reused across QUIC and non-QUIC UDP proxy
requests, since it might not be possible to correctly demultiplex or direct
the traffic. Any packets received on a target-facing socket used for proxying
QUIC that does not correspond to a known Connection ID MUST be dropped.</t>
      <t>When the proxy recieves a REGISTER_CLIENT_CID capsule, it is receiving a
request to be able to route traffic matching the Client Connection ID back to
the client using the Virtual Client Connection ID. If the pair of this Client
Connection ID and the selected target-facing socket does not create a conflict,
the proxy creates the mapping and responds with a ACK_CLIENT_CID capsule. After
this point, any packets received by the proxy from the target-facing socket that
match the Client Connection ID can to be sent to the client after the proxy has
replaced the Connection ID with the Virtual Client Connection ID. The proxy MUST
use tunnelled mode (HTTP Datagram frames) for any long header packets. The proxy
SHOULD forward directly to the client for any matching short header packets if
forwarding is supported by the client, but the proxy MAY tunnel these packets in
HTTP Datagram frames instead. If the mapping would create a conflict, the proxy
responds with a CLOSE_CLIENT_CID capsule.</t>
      <t>When the proxy recieves a REGISTER_TARGET_CID capsule, it is receiving a
request to allow the client to forward packets to the target. The proxy
generates a Virtual Target Connection ID for the client to use when sending
packets in forwarded mode. If forwarded mode is not supported, the proxy MUST
NOT send a Virtual Target Connection ID by setting the length to zero. If
forwarded mode is supported, the proxy MUST use a Virtual Target Connection ID
that does not introduce a conflict with any other Connection ID on the
client-facing socket. The proxy creates the mapping and responds with an
ACK_TARGET_CID capsule. Once the successful response is sent, the proxy will
forward any short header packets received on the client-facing socket that use
the Virtual Target Connection ID using the correct target-facing socket after
first rewriting the Virtual Target Connection ID to be the correct Target
Connection ID.</t>
      <t>A proxy that supports forwarded mode but chooses not to support rewriting the
Virtual Target Connection ID to the Target Connection ID may opt to simply let
them be equal. If the proxy does wish to choose a Virtual Target Connection ID,
it MUST be able to replace the Virtual Target Connection ID with the Target
Connection ID and correctly handle length differences between the two.
Regardless of whether or not the proxy chooses to support rewriting of the
Virtual Target Connection ID, it MUST be able to support rewriting the Client
Connection ID to the Virtual Client Connection ID.</t>
      <t>If the proxy does not support forwarded mode, or does not allow forwarded mode
for a particular client or authority by policy, it can reject all REGISTER_TARGET_CID
requests with CLOSE_TARGET_CID capsule.</t>
      <t>The proxy MUST only forward non-tunnelled packets from the client that are QUIC
short header packets (based on the Header Form bit) and have mapped Virtual Target
Connection IDs. Packets sent by the client that are forwarded SHOULD be
considered as activity for restarting QUIC's Idle Timeout <xref target="QUIC"/>.</t>
      <section anchor="removing-mapping-state">
        <name>Removing Mapping State</name>
        <t>For any registration capsule for which the proxy has sent an acknowledgement, any
mappings last until either endpoint sends a close capsule or the either side of the
HTTP stream closes.</t>
        <t>A client that no longer wants a given Connection ID to be forwarded by the
proxy sends a CLOSE_CLIENT_CID or CLOSE_TARGET_CID capsule.</t>
        <t>If a client's connection to the proxy is terminated for any reason, all
mappings associated with all requests are removed.</t>
        <t>A proxy can close its target-facing socket once all UDP proxying requests mapped to
that socket have been removed.</t>
      </section>
      <section anchor="handling-connection-migration">
        <name>Handling Connection Migration</name>
        <t>If a proxy supports QUIC connection migration, it needs to ensure that a migration
event does not end up sending too many tunnelled or proxied packets on a new
path prior to path validation.</t>
        <t>Specifically, the proxy MUST limit the number of packets that it will proxy
to an unvalidated client address to the size of an initial congestion window.
Proxies additionally SHOULD pace the rate at which packets are sent over a new
path to avoid creating unintentional congestion on the new path.</t>
        <t>When operating in forwarded mode, the proxy reconfigures or removes forwarding
rules as the network path between the client and proxy changes. In the event of
passive migration, the proxy automatically reconfigures forwarding rules to use
the latest active and validated network path for the HTTP stream. In the event of
active migration, the proxy removes forwarding rules in order to not send
packets with the same connection ID bytes over multiple network paths. After
initiating active migration, clients are no longer able to send forwarded mode
packets since the proxy will have removed forwarding rules. Clients can proceed with
tunnelled mode or can request new forwarding rules via REGISTER_CLIENT_CID and
REGISTER_TARGET_CID capsules. Each of these capsules will contain new virtual
connection IDs to prevent packets with the same connection ID bytes being used
over multiple network paths. Note that the Client Connection ID and Target
Connection ID can stay the same while the Virtual Target Connection ID and
Virtual Client Connection ID change.</t>
      </section>
      <section anchor="handling-ecn-marking">
        <name>Handling ECN Marking</name>
        <t>Explicit Congestion Notification marking <xref target="ECN"/> uses two bits in the IP
header to signal congestion from a network to endpoints. When using forwarded mode,
the proxy replaces IP headers for packets exchanged between the client and target;
these headers can include ECN markings. Proxies SHOULD preserve ECN markings on
forwarded packets in both directions, to allow ECN to function end-to-end. If the proxy does not
preserve ECN markings, it MUST set ECN marks to zero on the IP headers it genrates.</t>
        <t>Forwarded mode does not create an IP-in-IP tunnel, so the guidance in
<xref target="ECN-TUNNEL"/> about transferring ECN markings between inner and outer IP
headers does not apply.</t>
        <t>A proxy MAY additionally add ECN markings to signal congestion being experienced
on the proxy itself.</t>
      </section>
    </section>
    <section anchor="example">
      <name>Example</name>
      <t>Consider a client that is establishing a new QUIC connection through the proxy.
It has selected a Client Connection ID of 0x31323334. In order to inform a proxy
of the new QUIC Client Connection ID, the client also sends a
REGISTER_CLIENT_CID capsule.</t>
      <t>The client will also send the initial QUIC packet with the Long Header form in
an HTTP datagram.</t>
      <artwork><![CDATA[
Client                                             Server

STREAM(44): HEADERS             -------->
  :method = CONNECT
  :protocol = connect-udp
  :scheme = https
  :path = /target.example.com/443/
  :authority = proxy.example.org
  proxy-quic-forwarding = ?1
  capsule-protocol = ?1

STREAM(44): DATA                -------->
  Capsule Type = REGISTER_CLIENT_CID
  Connection ID = 0x31323334
  Virtual CID = 0x62646668
  Stateless Reset Token = Token

DATAGRAM                        -------->
  Quarter Stream ID = 11
  Context ID = 0
  Payload = Encapsulated QUIC initial

           <--------  STREAM(44): HEADERS
                        :status = 200
                        proxy-quic-forwarding = ?1
                        capsule-protocol = ?1

           <--------  STREAM(44): DATA
                        Capsule Type = ACK_CLIENT_CID
                        Connection ID = 0x31323334

/* Wait for target server to respond to UDP packet. */

           <--------  DATAGRAM
                        Quarter Stream ID = 11
                        Context ID = 0
                        Payload = Encapsulated QUIC initial

/* All Client -> Target QUIC packets must still be encapsulated  */

DATAGRAM                        -------->
  Quarter Stream ID = 11
  Context ID = 0
  Payload = Encapsulated QUIC packet

/* Forwarded mode packets possible in Target -> Client direction  */

           <--------  UDP Datagram
                        Payload = Forwarded QUIC SH packet

]]></artwork>
      <t>Immediately after sending the REGISTER_CLIENT_CID capsule, the client may
receive forwarded mode packets from the proxy with a Virtual Client
Connection ID of 0x62646668 which it will replace with the real Client
Connection ID of 0x31323334. All forwarded mode packets sent by the proxy
will have been modified to contain the Virtual Client Connection ID instead
of the Client Connection ID.</t>
      <t>Once the client learns which Connection ID has been selected by the target
server, it can send a new request to the proxy to establish a mapping for
forwarding. In this case, that ID is 0x61626364. The client sends the
following capsule:</t>
      <artwork><![CDATA[
STREAM(44): DATA                -------->
  Capsule Type = REGISTER_TARGET_CID
  Connection ID = 0x61626364

           <--------  STREAM(44): DATA
                        Capsule Type = ACK_TARGET_CID
                        Connection ID = 0x61626364
                        Virtual Target Connection ID = 0x123412341234
                        Stateless Reset Token = Token

/* Client -> Target QUIC short header packets may use forwarding mode */

UDP Datagram                     -------->
  Payload = Forwarded QUIC SH packet

]]></artwork>
      <t>Upon receiving an ACK_TARGET_CID capsule, the client starts sending Short Header
packets with a Destination Connection ID of 0x123412341234 directly to the proxy
(not tunnelled), and these are rewritten by the proxy to have the Destination
Connection ID 0x61626364 prior to being forwarded directly to the target. In the
reverse direction, Short Header packets from the target with a Destination
Connection ID of 0x31323334 are modified to replace the Destination Connection
ID with the Virtual Client Connection ID of 0x62646668 and forwarded directly to
the client.</t>
    </section>
    <section anchor="packet-size-considerations">
      <name>Packet Size Considerations</name>
      <t>Since Initial QUIC packets must be at least 1200 bytes in length, the HTTP
Datagram frames that are used for a QUIC-aware proxy MUST be able to carry at least
1200 bytes.</t>
      <t>Additionally, clients that connect to a proxy for purpose of proxying QUIC
SHOULD start their connection with a larger packet size than 1200 bytes, to
account for the overhead of tunnelling an Initial QUIC packet within an
HTTP Datagram frame. If the client does not begin with a larger packet size than
1200 bytes, it will need to perform Path MTU (Maximum Transmission Unit)
discovery to discover a larger path size prior to sending any tunnelled Initial
QUIC packets.</t>
      <t>Once a proxied QUIC connections moves into forwarded mode, the client SHOULD
initiate Path MTU discovery to increase its end-to-end MTU.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>Proxies that support this extension SHOULD provide protections to rate-limit
or restrict clients from opening an excessive number of proxied connections, so
as to limit abuse or use of proxies to launch Denial-of-Service attacks.</t>
      <t>Sending QUIC packets by forwarding through a proxy without tunnelling exposes
some QUIC header metadata to onlookers, and can be used to correlate packet
flows if an attacker is able to see traffic on both sides of the proxy.
Tunnelled packets have similar inference problems. An attacker on both sides
of the proxy can use the size of ingress and egress packets to correlate packets
belonging to the same connection. (Absent client-side padding, tunnelled packets
will typically have a fixed amount of overhead that is removed before their
HTTP Datagram contents are written to the target.)</t>
      <t>Since proxies that forward QUIC packets do not perform any cryptographic
integrity check, it is possible that these packets are either malformed,
replays, or otherwise malicious. This may result in proxy targets rate limiting
or decreasing the reputation of a given proxy.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="iana-header">
        <name>HTTP Header</name>
        <t>This document registers the "Proxy-QUIC-Forwarding" header in the "Permanent Message
Header Field Names" &lt;<eref target="https://www.iana.org/assignments/message-headers"/>&gt;.</t>
        <figure anchor="iana-header-type-table">
          <name>Registered HTTP Header</name>
          <artwork><![CDATA[
    +-----------------------+----------+--------+---------------+
    | Header Field Name     | Protocol | Status |   Reference   |
    +-----------------------+----------+--------+---------------+
    | Proxy-QUIC-Forwarding |   http   |  exp   | This document |
    +-----------------------+----------+--------+---------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="iana-capsule-types">
        <name>Capsule Types</name>
        <t>This document registers six new values in the "HTTP Capsule Types"
registry established by <xref target="HTTP-DGRAM"/>.</t>
        <table anchor="iana-capsule-type-table">
          <name>Registered Capsule Types</name>
          <thead>
            <tr>
              <th align="left">Capule Type</th>
              <th align="left">Value</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">REGISTER_CLIENT_CID</td>
              <td align="left">0xffe400</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">REGISTER_TARGET_CID</td>
              <td align="left">0xffe401</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">ACK_CLIENT_CID</td>
              <td align="left">0xffe402</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">ACK_TARGET_CID</td>
              <td align="left">0xffe403</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">CLOSE_CLIENT_CID</td>
              <td align="left">0xffe404</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">CLOSE_TARGET_CID</td>
              <td align="left">0xffe405</td>
              <td align="left">This Document</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="CONNECT-UDP">
          <front>
            <title>Proxying UDP in HTTP</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes how to proxy UDP in HTTP, similar to how the HTTP CONNECT method allows proxying TCP in HTTP. More specifically, this document defines a protocol that allows an HTTP client to create a tunnel for UDP communications through an HTTP server that acts as a proxy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9298"/>
          <seriesInfo name="DOI" value="10.17487/RFC9298"/>
        </reference>
        <reference anchor="QUIC">
          <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="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment. This document describes a mapping of HTTP semantics over QUIC. This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="HTTP-DGRAM">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
              <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
              <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9297"/>
          <seriesInfo name="DOI" value="10.17487/RFC9297"/>
        </reference>
        <reference anchor="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="QUIC-RETRANSMISSION">
          <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="ECN">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author fullname="K. Ramakrishnan" initials="K." surname="Ramakrishnan"/>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <date month="September" year="2001"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3168"/>
          <seriesInfo name="DOI" value="10.17487/RFC3168"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="QUIC-LB">
          <front>
            <title>QUIC-LB: Generating Routable QUIC Connection IDs</title>
            <author fullname="Martin Duke" initials="M." surname="Duke">
              <organization>Google</organization>
            </author>
            <author fullname="Nick Banks" initials="N." surname="Banks">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Christian Huitema" initials="C." surname="Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <date day="15" month="August" year="2023"/>
            <abstract>
              <t>   QUIC address migration allows clients to change their IP address
   while maintaining connection state.  To reduce the ability of an
   observer to link two IP addresses, clients and servers use new
   connection IDs when they communicate via different client addresses.
   This poses a problem for traditional "layer-4" load balancers that
   route packets via the IP address and port 4-tuple.  This
   specification provides a standardized means of securely encoding
   routing information in the server's connection IDs so that a properly
   configured load balancer can route packets with migrated addresses
   correctly.  As it proposes a structured connection ID format, it also
   provides a means of connection IDs self-encoding their length to aid
   some hardware offloads.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-load-balancers-17"/>
        </reference>
        <reference anchor="ECN-TUNNEL">
          <front>
            <title>Tunnelling of Explicit Congestion Notification</title>
            <author fullname="B. Briscoe" initials="B." surname="Briscoe"/>
            <date month="November" year="2010"/>
            <abstract>
              <t>This document redefines how the explicit congestion notification (ECN) field of the IP header should be constructed on entry to and exit from any IP-in-IP tunnel. On encapsulation, it updates RFC 3168 to bring all IP-in-IP tunnels (v4 or v6) into line with RFC 4301 IPsec ECN processing. On decapsulation, it updates both RFC 3168 and RFC 4301 to add new behaviours for previously unused combinations of inner and outer headers. The new rules ensure the ECN field is correctly propagated across a tunnel whether it is used to signal one or two severity levels of congestion; whereas before, only one severity level was supported. Tunnel endpoints can be updated in any order without affecting pre-existing uses of the ECN field, thus ensuring backward compatibility. Nonetheless, operators wanting to support two severity levels (e.g., for pre-congestion notification -- PCN) can require compliance with this new specification. A thorough analysis of the reasoning for these changes and the implications is included. In the unlikely event that the new rules do not meet a specific need, RFC 4774 gives guidance on designing alternate ECN semantics, and this document extends that to include tunnelling issues. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6040"/>
          <seriesInfo name="DOI" value="10.17487/RFC6040"/>
        </reference>
      </references>
    </references>
    <?line 911?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Lucas Pardue, Ryan Hamilton, and Mirja Kühlewind for their inputs
on this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA819a3Mbx5Xo9/4Vc6kPljYARUq01+ZGydIUHbNWohiRimsr
lXINMA1iImAGmQcphGZ+2X67f+yeVz+nB5QdZ+uqdmMQmOk+ffr0eZ/T0+lU
dWW30sfZHz+cn05P7vJGZ5dN/WlbVjfZhxb/9/vr60uVz2aNvuXH+AFV1PMq
X8OrRZMvummpu8V0nbd/6/X0b305n27wqenBgZrnnb6pm+1xpj9t1N3Ncfb2
5OqPH86UKjfNcdY1fdu9ODj45uCF+qi3d3VTHGfnVaebSnfT1zi4Um2XV8WP
+aquYMKtbtWmPM7+3NXzSdbWTdfoRQuftmv88Bel8r5b1s2xyqYqg39l1R5n
1/vZZd6vtvQNQ35dr9db79u6AeBONpuVBgDm+/RdC4Pr7jh7V2n56TJvPmY/
5PzKvOxgYaf9RjddWdWT7DRflYu6qco8++bLg8Mjfqruqw4x8KEqO11kVx3g
pM3qRXay1k05z+kpvc7LFSBkgwD9Z46T7c/rtQqWcbafva9bXc10c+Mt5QxG
iX74/2M1+MWPjQFsbFV7r/ezq/myrPK/l3vesvZe57dlEf0EC8ur8u95V9YV
PPKHur6Bhbx5c7oXrHHv8KuDAwBpsyy7pc67hhd7l2/3vMXuvcXV5GWV/anU
d+GKjw6OXu6FS94bW/Oev+iiFYD38Vj85w1+y4ueTqdZPgMQ8zmQ9fWybDM4
SP1aV11W6EVZwaB5BSel01UL68u6Ovvw+tIdyvpWN3wmu2XeZXlRtFm70fNy
AQRQb7pyLZhpM1hGhqewBHjp4M7rqtJz+nE/o7ntPCpfreo7mJve2OK0je5b
TZMfTbseto1HXPerrkTKCUY7B1BWbe3WoNZ1oRE/GwM5oPhuWc6XDEsLB7TL
YF8KWM8mn3/UXZvNYekzjdMAJyoA7J5YUF4pXPHzlwJck8OGNhkgAB/HJxo9
1dU837T9KsftAW4h3zXbDXyxz5hfl0Wx0ko9QQbT1EVP4Gf3T0rvzwel0hjP
7u//z+m7i4uz0+spPPHq/Xen37z45uuHB2VXnQF1Ie6A3IusyLv8psnXLUDa
1P3NEneWBqJlTAAdumEMw1YAsgt8Fchk3Vclck01092d1kAESy1Lx4XlWZc3
N7qDWRqATbZScGeG4ccR1crbKFwCfkewHxwcPDwA2yyrueZNaXp4hNaLQFn4
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
Hnnvq/8HxP+91EqpAAA=

-->

</rfc>
