<?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.10 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-masque-connect-udp-13" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.8 -->
  <front>
    <title>Proxying UDP in HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-masque-connect-udp-13"/>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View</city>
          <region>CA</region>
          <code>94043</code>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2022" month="June" day="03"/>
    <area>Transport</area>
    <workgroup>MASQUE</workgroup>
    <keyword>quic</keyword>
    <keyword>http</keyword>
    <keyword>datagram</keyword>
    <keyword>udp</keyword>
    <keyword>proxy</keyword>
    <keyword>tunnels</keyword>
    <keyword>quic in quic</keyword>
    <keyword>turtles all the way down</keyword>
    <keyword>masque</keyword>
    <keyword>http-ng</keyword>
    <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>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-masque.github.io/draft-ietf-masque-connect-udp/draft-ietf-masque-connect-udp.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-masque-connect-udp/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        MASQUE Working Group mailing list (<eref target="mailto:masque@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/masque/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-masque/draft-ietf-masque-connect-udp"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>While HTTP provides the CONNECT method (see <xref section="9.3.6" sectionFormat="of" target="HTTP"/>) for creating a TCP <xref target="TCP"/> tunnel
to a proxy, prior to this specification it lacked a method for doing so for UDP
<xref target="UDP"/> traffic.</t>
      <t>This document describes a protocol for tunnelling UDP to a server acting as a
UDP-specific proxy over HTTP. UDP tunnels are commonly used to create an
end-to-end virtual connection, which can then be secured using QUIC
<xref target="QUIC"/> or another protocol running over UDP. Unlike CONNECT, the UDP
proxy itself is identified with an absolute URL containing the traffic's
destination. Clients generate those URLs using a URI Template
<xref target="TEMPLATE"/>, as described in <xref target="client-config"/>.</t>
      <t>This protocol supports all existing versions of HTTP by using HTTP Datagrams
<xref target="HTTP-DGRAM"/>. When using HTTP/2 <xref target="H2"/> or HTTP/3
<xref target="H3"/>, it uses HTTP Extended CONNECT as described in <xref target="EXT-CONNECT2"/>
and <xref target="EXT-CONNECT3"/>. When using HTTP/1.x
<xref target="H1"/>, it uses HTTP Upgrade as defined in <xref section="7.8" sectionFormat="of" target="HTTP"/>.</t>
      <section anchor="conventions">
        <name>Conventions and Definitions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>In this document, we use the term "UDP proxy" to refer to the HTTP server that
acts upon the client's UDP tunnelling request to open a UDP socket to a target
server, and generates the response to this request. If there are HTTP
intermediaries (as defined in <xref section="3.7" sectionFormat="of" target="HTTP"/>) between the client and
the UDP proxy, those are referred to as "intermediaries" in this document.</t>
        <t>Note that, when the HTTP version in use does not support multiplexing streams
(such as HTTP/1.1), any reference to "stream" in this document represents the
entire connection.</t>
      </section>
    </section>
    <section anchor="client-config">
      <name>Client Configuration</name>
      <t>HTTP clients are configured to use a UDP proxy with a URI Template
<xref target="TEMPLATE"/> that has the variables "target_host" and "target_port".
Examples are shown below:</t>
      <figure anchor="fig-template-examples">
        <name>URI Template Examples</name>
        <artwork><![CDATA[
https://masque.example.org/.well-known/masque/udp/{target_host}/{target_port}/
https://proxy.example.org:4443/masque?h={target_host}&p={target_port}
https://proxy.example.org:4443/masque{?target_host,target_port}
]]></artwork>
      </figure>
      <t>The following requirements apply to the URI Template:</t>
      <ul spacing="normal">
        <li>The URI Template <bcp14>MUST</bcp14> be a level 3 template or lower.</li>
        <li>The URI Template <bcp14>MUST</bcp14> be in absolute form, and <bcp14>MUST</bcp14> include non-empty scheme,
authority and path components.</li>
        <li>The path component of the URI Template <bcp14>MUST</bcp14> start with a slash "/".</li>
        <li>All template variables <bcp14>MUST</bcp14> be within the path or query components of the URI.</li>
        <li>The URI template <bcp14>MUST</bcp14> contain the two variables "target_host" and
"target_port" and <bcp14>MAY</bcp14> contain other variables.</li>
        <li>The URI Template <bcp14>MUST NOT</bcp14> contain any non-ASCII unicode characters and <bcp14>MUST</bcp14>
only contain ASCII characters in the range 0x21-0x7E inclusive (note that
percent-encoding is allowed).</li>
        <li>The URI Template <bcp14>MUST NOT</bcp14> use Reserved Expansion ("+" operator), Fragment
Expansion ("#" operator), Label Expansion with Dot-Prefix, Path Segment
Expansion with Slash-Prefix, nor Path-Style Parameter Expansion with
Semicolon-Prefix.</li>
      </ul>
      <t>Clients <bcp14>SHOULD</bcp14> validate the requirements above; however, clients <bcp14>MAY</bcp14> use a
general-purpose URI Template implementation that lacks this specific validation.
If a client detects that any of the requirements above are not met by a URI
Template, the client <bcp14>MUST</bcp14> reject its configuration and fail the request without
sending it to the UDP proxy.</t>
      <t>Since the original HTTP CONNECT method allowed conveying the target host and
port but not the scheme, proxy authority, path, nor query, there exist clients
with proxy configuration interfaces that only allow the user to configure the
proxy host and the proxy port. Client implementations of this specification that
are constrained by such limitations <bcp14>MAY</bcp14> attempt to access UDP proxying
capabilities using the default template, which is defined as:
"https://$PROXY_HOST:$PROXY_PORT/.well-known/masque/udp/{target_host}/{target_port}/"
where $PROXY_HOST and $PROXY_PORT are the configured host and port of the UDP
proxy respectively. UDP proxy deployments <bcp14>SHOULD</bcp14> offer service at this location
if they need to interoperate with such clients.</t>
    </section>
    <section anchor="tunnelling-udp-over-http">
      <name>Tunnelling UDP over HTTP</name>
      <t>To allow negotiation of a tunnel for UDP over HTTP, this document defines the
"connect-udp" HTTP Upgrade Token. The resulting UDP tunnels use the Capsule
Protocol (see <xref section="3.2" sectionFormat="of" target="HTTP-DGRAM"/>) with HTTP Datagram in the format
defined in <xref target="format"/>.</t>
      <t>To initiate a UDP tunnel associated with a single HTTP stream, a client issues a
request containing the "connect-udp" upgrade token. The target of the tunnel is
indicated by the client to the UDP proxy via the "target_host" and "target_port"
variables of the URI Template, see <xref target="client-config"/>. If the request is
successful, the UDP proxy commits to converting received HTTP Datagrams into UDP
packets and vice versa until the tunnel is closed.</t>
      <t>When sending its UDP proxying request, the client <bcp14>SHALL</bcp14> perform URI Template
expansion to determine the path and query of its request. target_host supports
using DNS names, IPv6 literals and IPv4 literals. Note that this URI Template
expansion requires using pct-encoding, so for example if the target_host is
"2001:db8::42", it will be encoded in the URI as "2001%3Adb8%3A%3A42".</t>
      <t>By virtue of the definition of the Capsule Protocol (see <xref target="HTTP-DGRAM"/>), UDP
proxying requests do not carry any message content. Similarly, successful
UDP proxying responses also do not carry any message content.</t>
      <section anchor="handling">
        <name>UDP Proxy Handling</name>
        <t>Upon receiving a UDP proxying request:</t>
        <ul spacing="normal">
          <li>if the recipient is configured to use another HTTP proxy, it will act as an
intermediary: it forwards the request to another HTTP server. Note that such
intermediaries may need to reencode the request if they forward it using a
version of HTTP that is different from the one used to receive it, as the
request encoding differs by version (see below).</li>
          <li>otherwise, the recipient will act as a UDP proxy: it extracts the
"target_host" and "target_port" variables from the URI it has reconstructed
from the request headers, and establishes a tunnel by directly opening a UDP
socket to the requested target.</li>
        </ul>
        <t>Unlike TCP, UDP is connection-less. The UDP proxy that opens the UDP socket has
no way of knowing whether the destination is reachable. Therefore it needs to
respond to the request without waiting for a packet from the target. However, if
the target_host is a DNS name, the UDP proxy <bcp14>MUST</bcp14> perform DNS resolution before
replying to the HTTP request. If errors occur during this process, the UDP proxy
<bcp14>MUST</bcp14> fail the request and <bcp14>SHOULD</bcp14> send details using an appropriate
"Proxy-Status" header field <xref target="PROXY-STATUS"/> (for
example, if DNS resolution returns an error, the proxy can use the dns_error
Proxy Error Type from <xref section="2.3.2" sectionFormat="of" target="PROXY-STATUS"/>).</t>
        <t>UDP proxies can use connected UDP sockets if their operating system supports
them, as that allows the UDP proxy to rely on the kernel to only send it UDP
packets that match the correct 5-tuple. If the UDP proxy uses a non-connected
socket, it <bcp14>MUST</bcp14> validate the IP source address and UDP source port on received
packets to ensure they match the client's request. Packets that do not match
<bcp14>MUST</bcp14> be discarded by the UDP proxy.</t>
        <t>The lifetime of the socket is tied to the request stream. The UDP proxy <bcp14>MUST</bcp14>
keep the socket open while the request stream is open. If a UDP proxy is
notified by its operating system that its socket is no longer usable (for
example, this can happen when an ICMP "Destination Unreachable" message is
received, see <xref section="3.1" sectionFormat="of" target="ICMP6"/>), it <bcp14>MUST</bcp14> close the request
stream. UDP proxies <bcp14>MAY</bcp14> choose to close sockets due to a period of inactivity,
but they <bcp14>MUST</bcp14> close the request stream when closing the socket. UDP proxies that
close sockets after a period of inactivity <bcp14>SHOULD NOT</bcp14> use a period lower than
two minutes, see <xref section="4.3" sectionFormat="of" target="BEHAVE"/>.</t>
        <t>A successful response (as defined in <xref target="resp1"/> and <xref target="resp23"/>) indicates that
the UDP proxy has opened a socket to the requested target and is willing to
proxy UDP payloads. Any response other than a successful response indicates that
the request has failed, and the client <bcp14>MUST</bcp14> therefore abort the request.</t>
        <t>UDP proxies <bcp14>MUST NOT</bcp14> introduce fragmentation at the IP layer when forwarding
HTTP Datagrams onto a UDP socket. In IPv4, the Don't Fragment (DF) bit <bcp14>MUST</bcp14> be
set if possible, to prevent fragmentation on the path. Future extensions <bcp14>MAY</bcp14>
remove these requirements.</t>
      </section>
      <section anchor="req1">
        <name>HTTP/1.1 Request</name>
        <t>When using HTTP/1.1 <xref target="H1"/>, a UDP proxying request will meet the following
requirements:</t>
        <ul spacing="normal">
          <li>the method <bcp14>SHALL</bcp14> be "GET".</li>
          <li>the request <bcp14>SHALL</bcp14> include a single "Host" header field containing the origin
of the UDP proxy.</li>
          <li>the request <bcp14>SHALL</bcp14> include a "Connection" header field with value "Upgrade"
(note that this requirement is case-insensitive as per <xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>the request <bcp14>SHALL</bcp14> include an "Upgrade" header field with value "connect-udp".</li>
        </ul>
        <t>For example, if the client is configured with URI Template
"https://proxy.example.org/.well-known/masque/udp/{target_host}/{target_port}/"
and wishes to open a
UDP proxying tunnel to target 192.0.2.42:443, it could send the following
request:</t>
        <figure anchor="fig-req-h1">
          <name>Example HTTP/1.1 Request</name>
          <artwork><![CDATA[
GET https://proxy.example.org/.well-known/masque/udp/192.0.2.42/443/ HTTP/1.1
Host: proxy.example.org
Connection: Upgrade
Upgrade: connect-udp
]]></artwork>
        </figure>
        <t>In HTTP/1.1, this protocol uses the GET method to mimic the design of the
WebSocket Protocol <xref target="WEBSOCKET"/>.</t>
      </section>
      <section anchor="resp1">
        <name>HTTP/1.1 Response</name>
        <t>The UDP proxy <bcp14>SHALL</bcp14> indicate a successful response by replying with the
following requirements:</t>
        <ul spacing="normal">
          <li>the HTTP status code on the response <bcp14>SHALL</bcp14> be 101 (Switching Protocols).</li>
          <li>the reponse <bcp14>SHALL</bcp14> include a single "Connection" header field with value
"Upgrade" (note that this requirement is case-insensitive as per <xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>the response <bcp14>SHALL</bcp14> include a single "Upgrade" header field with value
"connect-udp".</li>
          <li>the response <bcp14>SHALL NOT</bcp14> include any "Transfer-Encoding" or "Content-Length"
header fields.</li>
        </ul>
        <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying
attempt as failed and abort the connection.</t>
        <t>For example, the UDP proxy could respond with:</t>
        <figure anchor="fig-resp-h1">
          <name>Example HTTP/1.1 Response</name>
          <artwork><![CDATA[
HTTP/1.1 101 Switching Protocols
Connection: Upgrade
Upgrade: connect-udp
]]></artwork>
        </figure>
      </section>
      <section anchor="req23">
        <name>HTTP/2 and HTTP/3 Requests</name>
        <t>When using HTTP/2 <xref target="H2"/> or HTTP/3 <xref target="H3"/>, UDP proxying requests use Extended
CONNECT. This requires that servers send an HTTP Setting as specified in
<xref target="EXT-CONNECT2"/> and <xref target="EXT-CONNECT3"/>, and that requests use HTTP pseudo-header
fields with the following requirements:</t>
        <ul spacing="normal">
          <li>The ":method" pseudo-header field <bcp14>SHALL</bcp14> be "CONNECT".</li>
          <li>The ":protocol" pseudo-header field <bcp14>SHALL</bcp14> be "connect-udp".</li>
          <li>The ":authority" pseudo-header field <bcp14>SHALL</bcp14> contain the authority of the UDP
proxy.</li>
          <li>The ":path" and ":scheme" pseudo-header fields <bcp14>SHALL NOT</bcp14> be empty. Their
values <bcp14>SHALL</bcp14> contain the scheme and path from the URI Template after the URI
template expansion process has been completed.</li>
        </ul>
        <t>A UDP proxying request that does not conform to these restrictions is
malformed (see <xref section="8.1.1" sectionFormat="of" target="H2"/>).</t>
        <t>For example, if the client is configured with URI Template
"https://proxy.example.org/{target_host}/{target_port}/" and wishes to open a
UDP proxying tunnel to target 192.0.2.42:443, it could send the following
request:</t>
        <figure anchor="fig-req-h2">
          <name>Example HTTP/2 Request</name>
          <artwork><![CDATA[
HEADERS
:method = CONNECT
:protocol = connect-udp
:scheme = https
:path = /.well-known/masque/udp/192.0.2.42/443/
:authority = proxy.example.org
]]></artwork>
        </figure>
      </section>
      <section anchor="resp23">
        <name>HTTP/2 and HTTP/3 Responses</name>
        <t>The UDP proxy <bcp14>SHALL</bcp14> indicate a successful response by replying with any 2xx
(Successful) HTTP status code, without any "Transfer-Encoding" or
"Content-Length" header fields.</t>
        <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying
attempt as failed and abort the request.</t>
        <t>For example, the UDP proxy could respond with:</t>
        <figure anchor="fig-resp-h2">
          <name>Example HTTP/2 Response</name>
          <artwork><![CDATA[
HEADERS
:status = 200
]]></artwork>
        </figure>
      </section>
      <section anchor="note-about-draft-versions">
        <name>Note About Draft Versions</name>
        <t>[[RFC editor: please remove this section before publication.]]</t>
        <t>In order to allow implementations to support multiple draft versions of this
specification during its development, we introduce the "connect-udp-version"
header field. When sent by the client, it contains a list of draft numbers
supported by the client (e.g., "connect-udp-version: 0, 2"). When sent by the
UDP proxy, it contains a single draft number selected by the UDP proxy from the
list provided by the client (e.g., "connect-udp-version: 2"). Sending this
header field is <bcp14>RECOMMENDED</bcp14> but not required. The "connect-udp-version" header
field is a List Structured Field, see <xref section="3.1" sectionFormat="of" target="STRUCT-FIELD"/>.
Each list member <bcp14>MUST</bcp14> be an Integer.</t>
      </section>
    </section>
    <section anchor="context-id">
      <name>Context Identifiers</name>
      <t>The mechanism for proxying UDP in HTTP defined in this document allows future
extensions to exchange HTTP Datagrams which carry different semantics from UDP
payloads. Some of these extensions can augment UDP payloads with additional
data, while others can exchange data that is completely separate from UDP
payloads. In order to accomplish this, all HTTP Datagrams associated with UDP
Proxying request streams start with a context ID, see <xref target="format"/>.</t>
      <t>Context IDs are 62-bit integers (0 to 2<sup>62</sup>-1). Context IDs are encoded
as variable-length integers, see <xref section="16" sectionFormat="of" target="QUIC"/>. The context ID value of
0 is reserved for UDP payloads, while non-zero values are dynamically allocated:
non-zero even-numbered context IDs are client-allocated, and odd-numbered
context IDs are proxy-allocated. The context ID namespace is tied to a given
HTTP request: it is possible for a context ID with the same numeric value to be
simultaneously allocated in distinct requests, potentially with different
semantics. Context IDs <bcp14>MUST NOT</bcp14> be re-allocated within a given HTTP namespace
but <bcp14>MAY</bcp14> be allocated in any order. The context ID allocation restrictions to the
use of even-numbered and odd-numbered context IDs exist in order to avoid the
need for synchronisation between endpoints. However, once a context ID has been
allocated, those restrictions do not apply to the use of the context ID: it can
be used by any client or UDP proxy, independent of which endpoint initially
allocated it.</t>
      <t>Registration is the action by which an endpoint informs its peer of the
semantics and format of a given context ID. This document does not define how
registration occurs. Future extensions <bcp14>MAY</bcp14> use HTTP header fields or capsules to
register contexts. Depending on the method being used, it is possible for
datagrams to be received with Context IDs which have not yet been registered,
for instance due to reordering of the packet containing the datagram and the
packet containing the registration message during transmission.</t>
    </section>
    <section anchor="format">
      <name>HTTP Datagram Payload Format</name>
      <t>When HTTP Datagrams (see <xref target="HTTP-DGRAM"/>) are associated with UDP proxying
request streams, the HTTP Datagram Payload field has the format defined in
<xref target="dgram-format"/>. Note that when HTTP Datagrams are encoded using QUIC DATAGRAM
frames, the Context ID field defined below directly follows the Quarter Stream
ID field which is at the start of the QUIC DATAGRAM frame payload:</t>
      <figure anchor="dgram-format">
        <name>UDP Proxying HTTP Datagram Format</name>
        <artwork><![CDATA[
UDP Proxying HTTP Datagram Payload {
  Context ID (i),
  Payload (..),
}
]]></artwork>
      </figure>
      <dl spacing="compact">
        <dt>Context ID:</dt>
        <dd>
          <t>A variable-length integer (see <xref section="16" sectionFormat="of" target="QUIC"/>) that contains the value
of the Context ID. If an HTTP/3 datagram which carries an unknown Context ID is
received, the receiver <bcp14>SHALL</bcp14> either drop that datagram silently or buffer it
temporarily (on the order of a round trip) while awaiting the registration of
the corresponding Context ID.</t>
        </dd>
        <dt>Payload:</dt>
        <dd>
          <t>The payload of the datagram, whose semantics depend on value of the previous
field. Note that this field can be empty.</t>
        </dd>
      </dl>
      <t>UDP packets are encoded using HTTP Datagrams with the Context ID set to zero.
When the Context ID is set to zero, the Payload field contains the
unmodified payload of a UDP packet (referred to as "data octets" in <xref target="UDP"/>).</t>
      <t>By virtue of the definition of the UDP header <xref target="UDP"/>, it is not possible to
encode UDP payloads longer than 65527 bytes. Therefore, endpoints <bcp14>MUST NOT</bcp14> send
HTTP Datagrams with a Payload field longer than 65527 using Context ID zero. An
endpoint that receives a DATAGRAM capsule using Context ID zero whose Payload
field is longer than 65527 <bcp14>MUST</bcp14> abort the stream. If a UDP proxy knows it can
only send out UDP packets of a certain length due to its underlying link MTU, it
<bcp14>SHOULD</bcp14> discard incoming DATAGRAM capsules using Context ID zero whose Payload
field is longer than that limit without buffering the capsule contents.</t>
      <t>If a UDP proxy receives an HTTP Datagram before it has received the
corresponding request, it <bcp14>SHALL</bcp14> either drop that HTTP Datagram silently or
buffer it temporarily (on the order of a round trip) while awaiting the
corresponding request.</t>
      <t>Note that buffering datagrams (either because the request was not yet received,
or because the Context ID is not yet known) consumes resources. Receivers that
buffer datagrams <bcp14>SHOULD</bcp14> apply buffering limits in order to reduce the risk of
resource exhaustion occuring. For example, receivers can limit the total number
of buffered datagrams, or the cumulative size of buffered datagrams, on a
per-stream, per-context, or per-connection basis.</t>
      <t>A client <bcp14>MAY</bcp14> optimistically start sending UDP packets in HTTP Datagrams before
receiving the response to its UDP proxying request. However, implementors should
note that such proxied packets may not be processed by the UDP proxy if it
responds to the request with a failure, or if the proxied packets are received
by the UDP proxy before the request and the UDP proxy chooses to not buffer them.</t>
    </section>
    <section anchor="performance">
      <name>Performance Considerations</name>
      <t>Bursty traffic can often lead to temporally correlated packet losses, which in
turn can lead to suboptimal responses from congestion controllers in protocols
running over UDP. To avoid this, UDP proxies <bcp14>SHOULD</bcp14> strive to avoid increasing
burstiness of UDP traffic: they <bcp14>SHOULD NOT</bcp14> queue packets in order to increase
batching.</t>
      <t>When the protocol running over UDP that is being proxied uses congestion
control (e.g., <xref target="QUIC"/>), the proxied traffic will incur at least two nested
congestion controllers. This can reduce performance but the underlying
HTTP connection <bcp14>MUST NOT</bcp14> disable congestion control unless it has an
out-of-band way of knowing with absolute certainty that the inner traffic is
congestion-controlled.</t>
      <t>If a client or UDP proxy with a connection containing a UDP proxying request
stream disables congestion control, it <bcp14>MUST NOT</bcp14> signal Explicit Congestion
Notification (ECN) <xref target="ECN"/> support on that connection. That is, it <bcp14>MUST</bcp14>
mark all IP headers with the Not-ECT codepoint. It <bcp14>MAY</bcp14> continue to report ECN
feedback via QUIC ACK_ECN frames or the TCP "ECE" bit, as the peer may not have
disabled congestion control.</t>
      <t>When the protocol running over UDP that is being proxied uses loss recovery
(e.g., <xref target="QUIC"/>), and the underlying HTTP connection runs over TCP, the proxied
traffic will incur at least two nested loss recovery mechanisms. This can reduce
performance as both can sometimes independently retransmit the same data. To
avoid this, UDP proxying <bcp14>SHOULD</bcp14> be performed over HTTP/3 to allow leveraging the
QUIC DATAGRAM frame.</t>
      <section anchor="mtu-considerations">
        <name>MTU Considerations</name>
        <t>When using HTTP/3 with the QUIC Datagram extension <xref target="DGRAM"/>, UDP
payloads are transmitted in QUIC DATAGRAM frames. Since those cannot be
fragmented, they can only carry payloads up to a given length determined by the
QUIC connection configuration and the path MTU. If a UDP proxy is using QUIC
DATAGRAM frames and it receives a UDP payload from the target that will not fit
inside a QUIC DATAGRAM frame, the UDP proxy <bcp14>SHOULD NOT</bcp14> send the UDP payload in a
DATAGRAM capsule, as that defeats the end-to-end unreliability characteristic
that methods such as Datagram Packetization Layer Path MTU Discovery (DPLPMTUD)
depend on <xref target="DPLPMTUD"/>. In this scenario, the UDP proxy <bcp14>SHOULD</bcp14> drop the
UDP payload and send an ICMP "Packet Too Big" message to the target, see
<xref section="3.2" sectionFormat="of" target="ICMP6"/>.</t>
      </section>
      <section anchor="tunneling-of-ecn-marks">
        <name>Tunneling of ECN Marks</name>
        <t>UDP proxying does not create an IP-in-IP tunnel, so the guidance in
<xref target="ECN-TUNNEL"/> about transferring ECN marks between inner and outer IP
headers does not apply. There is no inner IP header in UDP proxying tunnels.</t>
        <t>Note that UDP proxying clients do not have the ability in this specification to
control the ECN codepoints on UDP packets the UDP proxy sends to the target, nor
can UDP proxies communicate the markings of each UDP packet from target to UDP
proxy.</t>
        <t>A UDP proxy <bcp14>MUST</bcp14> ignore ECN bits in the IP header of UDP packets received from
the target, and <bcp14>MUST</bcp14> set the ECN bits to Not-ECT on UDP packets it sends to the
target. These do not relate to the ECN markings of packets sent between client
and UDP proxy in any way.</t>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>There are significant risks in allowing arbitrary clients to establish a tunnel
to arbitrary targets, as that could allow bad actors to send traffic and have it
attributed to the UDP proxy. HTTP servers that support UDP proxying ought to
restrict its use to authenticated users.</t>
      <t>Because the CONNECT method creates a TCP connection to the target, the target
has to indicate its willingness to accept TCP connections by responding with a
TCP SYN-ACK before the CONNECT proxy can send it application data. UDP doesn't
have this property, so a UDP proxy could send more data to an unwilling target
than a CONNECT proxy. However, in practice denial of service attacks target open
TCP ports so the TCP SYN-ACK does not offer much protection in real scenarios.
While a UDP proxy could potentially limit the number of UDP packets it is
willing to forward until it has observed a response from the target, that is
unlikely to provide any protection against denial of service attacks because
such attacks target open UDP ports where the protocol running over UDP would
respond, and that would be interpreted as willingness to accept UDP by the UDP
proxy.</t>
      <t>UDP sockets for UDP proxying have a different lifetime than TCP sockets for
CONNECT, therefore implementors would be well served to follow the advice in
<xref target="handling"/> if they base their UDP proxying implementation on a preexisting
implementation of CONNECT.</t>
      <t>The security considerations described in <xref target="HTTP-DGRAM"/> also apply here.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="iana-upgrade">
        <name>HTTP Upgrade Token</name>
        <t>This document will request IANA to register "connect-udp" in the "HTTP Upgrade
Tokens" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-upgrade-tokens"/>&gt;.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>connect-udp</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>Proxying of UDP Payloads</t>
          </dd>
          <dt>Expected Version Tokens:</dt>
          <dd>
            <t>None</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-uri">
        <name>Well-Known URI</name>
        <t>This document will request IANA to register "masque" in the "Well-Known
URIs" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/well-known-uris"/>&gt;.</t>
        <dl spacing="compact">
          <dt>URI Suffix:</dt>
          <dd>
            <t>masque</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent (if this document is approved)</t>
          </dd>
          <dt>Related Information:</dt>
          <dd>
            <t>Includes all resources identified with the path prefix
"/.well-known/masque/udp/"</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="H1" to="HTTP/1.1"/>
    <displayreference target="H2" to="HTTP/2"/>
    <displayreference target="H3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="H1">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document specifies the HTTP/1.1 message syntax,
   message parsing, connection management, and related security
   concerns.

   This document obsoletes portions of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-messaging-19"/>
        </reference>
        <reference anchor="H2">
          <front>
            <title>HTTP/2</title>
            <author fullname="Martin Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Cory Benfield">
              <organization>Apple Inc.</organization>
            </author>
            <date day="24" month="January" year="2022"/>
            <abstract>
              <t>   This specification describes an optimized expression of the semantics
   of the Hypertext Transfer Protocol (HTTP), referred to as HTTP
   version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network
   resources and a reduced latency by introducing field compression and
   allowing multiple concurrent exchanges on the same connection.

   This document obsoletes RFC 7540 and RFC 8740.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-http2bis-07"/>
        </reference>
        <reference anchor="H3">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <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.

DO NOT DEPLOY THIS VERSION OF HTTP

   DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This
   version is still a work in progress.  For trial deployments, please
   use earlier versions.

Note to Readers

   Discussion of this draft takes place on the QUIC working group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/search/?email_list=quic.

   Working Group information can be found at https://github.com/quicwg;
   source code and issues list for this draft can be found at
   https://github.com/quicwg/base-drafts/labels/-http.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="TCP">
          <front>
            <title>Transmission Control Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel">
              <organization/>
            </author>
            <date month="September" year="1981"/>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="793"/>
          <seriesInfo name="DOI" value="10.17487/RFC0793"/>
        </reference>
        <reference anchor="UDP">
          <front>
            <title>User Datagram Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel">
              <organization/>
            </author>
            <date month="August" year="1980"/>
          </front>
          <seriesInfo name="STD" value="6"/>
          <seriesInfo name="RFC" value="768"/>
          <seriesInfo name="DOI" value="10.17487/RFC0768"/>
        </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">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <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="TEMPLATE">
          <front>
            <title>URI Template</title>
            <author fullname="J. Gregorio" initials="J." surname="Gregorio">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Hadley" initials="M." surname="Hadley">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="D. Orchard" initials="D." surname="Orchard">
              <organization/>
            </author>
            <date month="March" year="2012"/>
            <abstract>
              <t>A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion. This specification defines the URI Template syntax and the process for expanding a URI Template into a URI reference, along with guidelines for the use of URI Templates on the Internet.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6570"/>
          <seriesInfo name="DOI" value="10.17487/RFC6570"/>
        </reference>
        <reference anchor="HTTP-DGRAM">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="11" month="April" year="2022"/>
            <abstract>
              <t>   This document describes HTTP Datagrams, a convention for conveying
   multiplexed, potentially unreliable datagrams inside an HTTP
   connection.

   In HTTP/3, HTTP Datagrams can be conveyed natively using the QUIC
   DATAGRAM extension.  When the QUIC DATAGRAM frame is unavailable or
   undesirable, they can be sent using the Capsule Protocol, a more
   general convention for conveying data in HTTP connections.

   HTTP Datagrams and the Capsule Protocol are intended for use by HTTP
   extensions, not applications.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-masque-h3-datagram-09"/>
        </reference>
        <reference anchor="EXT-CONNECT2">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8441"/>
          <seriesInfo name="DOI" value="10.17487/RFC8441"/>
        </reference>
        <reference anchor="EXT-CONNECT3">
          <front>
            <title>Bootstrapping WebSockets with HTTP/3</title>
            <author fullname="Ryan Hamilton">
              <organization>Google</organization>
            </author>
            <date day="8" month="February" year="2022"/>
            <abstract>
              <t>   The mechanism for running the WebSocket Protocol over a single stream
   of an HTTP/2 connection is equally applicable to HTTP/3, but the HTTP
   version-specific details need to be specified.  This document
   describes how the mechanism is adapted for HTTP/3.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-h3-websockets-04"/>
        </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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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="PROXY-STATUS">
          <front>
            <title>The Proxy-Status HTTP Response Header Field</title>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Piotr Sikora">
              <organization>Google</organization>
            </author>
            <date day="13" month="October" year="2021"/>
            <abstract>
              <t>   This document defines the Proxy-Status HTTP field to convey the
   details of intermediary response handling, including generated
   errors.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-proxy-status-08"/>
        </reference>
        <reference anchor="STRUCT-FIELD">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <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="ECN">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author fullname="K. Ramakrishnan" initials="K." surname="Ramakrishnan">
              <organization/>
            </author>
            <author fullname="S. Floyd" initials="S." surname="Floyd">
              <organization/>
            </author>
            <author fullname="D. Black" initials="D." surname="Black">
              <organization/>
            </author>
            <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>
        <reference anchor="DGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9221"/>
          <seriesInfo name="DOI" value="10.17487/RFC9221"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ICMP6">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <author fullname="A. Conta" initials="A." surname="Conta">
              <organization/>
            </author>
            <author fullname="S. Deering" initials="S." surname="Deering">
              <organization/>
            </author>
            <author fullname="M. Gupta" initials="M." role="editor" surname="Gupta">
              <organization/>
            </author>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol).  ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="89"/>
          <seriesInfo name="RFC" value="4443"/>
          <seriesInfo name="DOI" value="10.17487/RFC4443"/>
        </reference>
        <reference anchor="BEHAVE">
          <front>
            <title>Network Address Translation (NAT) Behavioral Requirements for Unicast UDP</title>
            <author fullname="F. Audet" initials="F." role="editor" surname="Audet">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <date month="January" year="2007"/>
            <abstract>
              <t>This document defines basic terminology for describing different types of Network Address Translation (NAT) behavior when handling Unicast UDP and also defines a set of requirements that would allow many applications, such as multimedia communications or online gaming, to work consistently.  Developing NATs that meet this set of requirements will greatly increase the likelihood that these applications will function properly.  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="127"/>
          <seriesInfo name="RFC" value="4787"/>
          <seriesInfo name="DOI" value="10.17487/RFC4787"/>
        </reference>
        <reference anchor="WEBSOCKET">
          <front>
            <title>The WebSocket Protocol</title>
            <author fullname="I. Fette" initials="I." surname="Fette">
              <organization/>
            </author>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>The WebSocket Protocol enables two-way communication between a client running untrusted code in a controlled environment to a remote host that has opted-in to communications from that code.  The security model used for this is the origin-based security model commonly used by web browsers.  The protocol consists of an opening handshake followed by basic message framing, layered over TCP.  The goal of this technology is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections (e.g., using XMLHttpRequest or &lt;iframe&gt;s and long polling).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6455"/>
          <seriesInfo name="DOI" value="10.17487/RFC6455"/>
        </reference>
        <reference anchor="DPLPMTUD">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="T. Jones" initials="T." surname="Jones">
              <organization/>
            </author>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen">
              <organization/>
            </author>
            <author fullname="I. Rüngeler" initials="I." surname="Rüngeler">
              <organization/>
            </author>
            <author fullname="T. Völker" initials="T." surname="Völker">
              <organization/>
            </author>
            <date month="September" year="2020"/>
            <abstract>
              <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram.  This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased.  This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
              <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
              <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8899"/>
          <seriesInfo name="DOI" value="10.17487/RFC8899"/>
        </reference>
        <reference anchor="ECN-TUNNEL">
          <front>
            <title>Tunnelling of Explicit Congestion Notification</title>
            <author fullname="B. Briscoe" initials="B." surname="Briscoe">
              <organization/>
            </author>
            <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>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is a product of the MASQUE Working Group, and the author thanks
all MASQUE enthusiasts for their contibutions. This proposal was inspired
directly or indirectly by prior work from many people. In particular, the author
would like to thank Eric Rescorla for suggesting to use an HTTP method to proxy
UDP. The author is indebted to Mark Nottingham and Lucas Pardue for the many
improvements they contributed to this document. The extensibility design in this
document came out of the HTTP Datagrams Design Team, whose members were Alan
Frindell, Alex Chernyakhovsky, Ben Schwartz, Eric Rescorla, Lucas Pardue, Marcus
Ihlar, Martin Thomson, Mike Bishop, Tommy Pauly, Victor Vasiliev, and the author
of this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
NxWfjYn7ZgAA

-->

</rfc>
