<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.30 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http3-15" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="WebTransport-H3">WebTransport over HTTP/3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http3-15"/>
    <author initials="A." surname="Frindell" fullname="Alan Frindell">
      <organization>Facebook</organization>
      <address>
        <email>afrind@fb.com</email>
      </address>
    </author>
    <author initials="E." surname="Kinnear" fullname="Eric Kinnear">
      <organization>Apple Inc.</organization>
      <address>
        <email>ekinnear@apple.com</email>
      </address>
    </author>
    <author initials="V." surname="Vasiliev" fullname="Victor Vasiliev">
      <organization>Google</organization>
      <address>
        <email>vasilvv@google.com</email>
      </address>
    </author>
    <date year="2026" month="March" day="02"/>
    <area>Web and Internet Transport</area>
    <workgroup>WEBTRANS</workgroup>
    <keyword>webtransport</keyword>
    <abstract>
      <?line 42?>

<t>WebTransport <xref target="OVERVIEW"/> is a protocol framework
that enables application clients constrained by the Web security model to
communicate with a remote application server using a secure multiplexed
transport.  This document describes a WebTransport protocol that is based on
HTTP/3 <xref target="HTTP3"/> and provides support for unidirectional streams,
bidirectional streams, and datagrams, all multiplexed within the same HTTP/3
connection.</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-webtrans.github.io/draft-ietf-webtrans-http3/#go.draft-ietf-webtrans-http3.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-webtrans-http3/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        WebTransport Working Group mailing list (<eref target="mailto:webtransport@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/webtransport/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/webtransport/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-webtrans/draft-ietf-webtrans-http3"/>.</t>
    </note>
  </front>
  <middle>
    <?line 52?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP/3 <xref target="HTTP3"/> is a protocol defined on top of QUIC <xref target="RFC9000"/> that can
multiplex HTTP requests over a QUIC connection.  This document defines a
mechanism for multiplexing non-HTTP data with HTTP/3 in a manner that conforms
with the WebTransport protocol requirements and semantics <xref target="OVERVIEW"/>.  Using the
mechanism described here, multiple WebTransport instances, or sessions, can be
multiplexed simultaneously with regular HTTP traffic on the same HTTP/3
connection.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
        <t>This document follows terminology defined in Section 1.2 of <xref target="OVERVIEW"/>.  Note
that this document distinguishes between a WebTransport server and an HTTP/3
server.  An HTTP/3 server is the server that terminates HTTP/3 connections; a
WebTransport server is an application that accepts WebTransport sessions, which
can be accessed via an HTTP/3 server.  An application client is user or
developer-provided code, often untrusted, that utilizes the interface offered by
the WebTransport client to communicate with an application server. The
application server uses the interface offered by the WebTransport server to
accept incoming WebTransport sessions.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <section anchor="quic-webtransport-and-http3">
        <name>QUIC, WebTransport, and HTTP/3</name>
        <t>QUIC version 1 <xref target="RFC9000"/> is a secure transport protocol with flow control and
congestion control.  QUIC supports application data exchange via streams;
reliable and ordered byte streams that can be multiplexed.  Stream independence
can mitigate head-of-line blocking.  While QUIC provides streams as a transport
service, it is unopinionated about their usage.  The applicability of streams is
described by section 4 of <xref target="RFC9308"/>.</t>
        <t>HTTP is an application-layer protocol, defined by "HTTP Semantics" <xref target="HTTP"/>.
HTTP/3 is the application mapping for QUIC, defined in <xref target="RFC9114"/>.  It
describes how QUIC streams are used to carry control data or HTTP request and
response message sequences in the form of frames and describes details of stream
and connection lifecycle management.  HTTP/3 offers two features in addition to
HTTP Semantics: QPACK header compression <xref target="RFC9208"/> and Server Push
<xref section="4.6" sectionFormat="of" target="RFC9114"/>.</t>
        <t>WebTransport session establishment involves interacting at the HTTP layer with a
resource.  For Web user agents and other WebTransport clients, this interaction
is important for security reasons, especially to ensure that the resource is
willing to use WebTransport.</t>
        <t>Although WebTransport requires HTTP for its handshake, when HTTP/3 is in use,
HTTP is not used for anything else related to an established session.  Instead,
QUIC streams begin with a sequence of header bytes that links them to the
established session.  The remainder of the stream is the body, which carries the
payload supplied by the application using WebTransport.  This process is similar
to WebSockets over HTTP/1.1 <xref target="ORIGIN"/>, where access to the underlying
byte stream is enabled after both sides have completed an initial handshake.</t>
        <t>The layering of QUIC, HTTP/3, and WebTransport is shown in
<xref target="fig-webtransport-layers"/>.  Once a WebTransport session is established,
applications have nearly direct access to QUIC.</t>
        <figure anchor="fig-webtransport-layers">
          <name>WebTransport Layering</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="208" width="280" viewBox="0 0 280 208" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,192" fill="none" stroke="black"/>
                <path d="M 144,64 L 144,160" fill="none" stroke="black"/>
                <path d="M 272,32 L 272,192" fill="none" stroke="black"/>
                <path d="M 8,32 L 272,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 272,64" fill="none" stroke="black"/>
                <path d="M 8,128 L 144,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 272,160" fill="none" stroke="black"/>
                <path d="M 8,192 L 272,192" fill="none" stroke="black"/>
                <g class="text">
                  <text x="156" y="52">WebTransport</text>
                  <text x="36" y="84">HTTP</text>
                  <text x="96" y="84">Semantics</text>
                  <text x="72" y="100">and</text>
                  <text x="48" y="116">Session</text>
                  <text x="104" y="116">Setup</text>
                  <text x="180" y="116">Nearly</text>
                  <text x="236" y="116">direct</text>
                  <text x="76" y="148">HTTP/3</text>
                  <text x="148" y="180">QUIC</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
,--------------------------------,
|            WebTransport        |
,----------------,---------------,
| HTTP Semantics |               |
|      and       |               |
| Session Setup  | Nearly direct |
,----------------,               |
|     HTTP/3     |               |
,----------------`---------------,
|               QUIC             |
`--------------------------------'
]]></artwork>
          </artset>
        </figure>
        <section anchor="minimizing-implementation-complexity">
          <name>Minimizing Implementation Complexity</name>
          <t>WebTransport has minimal interaction with HTTP and HTTP/3.  Clients and servers
can constrain their use of features to only those required to complete a
WebTransport handshake:</t>
          <ul spacing="normal">
            <li>
              <t>Generating/parsing the request method, host, path, protocol, optional Origin
header field, and perhaps some extra header fields.</t>
            </li>
            <li>
              <t>Generating/parsing the response status code and possibly some extra header
fields.</t>
            </li>
          </ul>
          <t>A WebTransport endpoint, whether a client or a server, can likely perform
several of its HTTP-level requirements using bytestring comparisons.</t>
          <t>While HTTP/3 encodes HTTP messages using QPACK, this complexity can be
minimized.  When receiving, a WebTransport endpoint can disable dynamic
decompression entirely but must always support static decompression and Huffman
decoding.  When sending, endpoints can opt to never use dynamic compression,
static compression, or Huffman encoding.</t>
        </section>
        <section anchor="capsule-based-webtransport-over-http3">
          <name>Capsule-Based WebTransport over HTTP/3</name>
          <t>WebTransport over HTTP/3 as defined in this document provides the best
performance by using native QUIC streams and datagrams. Endpoints SHOULD always
use this protocol when using WebTransport over an HTTP/3 connection.</t>
          <t>However, it is also possible to use WebTransport over a single HTTP/3 stream
using the capsule-based protocol defined in
<xref target="WEBTRANS-H2"/>.  The two protocols are distinguished
by their upgrade tokens: this document uses the "webtransport-h3" token
(<xref target="upgrade-token"/>), while <xref target="WEBTRANS-H2"/> uses the "webtransport" token.</t>
          <t>The capsule-based protocol can be useful for intermediaries that proxy
WebTransport sessions between HTTP/2 and HTTP/3 connections, as it avoids the
need to translate between the two wire formats.  It can also be useful in
deployment environments such as data centers where existing routing
infrastructure supports forwarding streams but does not support the HTTP/3
extensions required by this document.</t>
          <t>Endpoints that use the capsule-based protocol over HTTP/3 lose the benefits of
stream independence, as all WebTransport streams within a session share a single
QUIC stream and are subject to head-of-line blocking.  Datagrams sent using the
capsule-based protocol are also retransmitted by QUIC, and therefore do not
provide unreliable delivery.</t>
        </section>
      </section>
      <section anchor="protocol-overview">
        <name>Protocol Overview</name>
        <t>WebTransport servers in general are identified by a pair of authority value and
path value (defined in <xref target="RFC3986"/> Sections 3.2 and 3.3 respectively).</t>
        <t>When an HTTP/3 connection is established, the server sends a SETTINGS_WT_ENABLED
setting to indicate support for WebTransport over HTTP/3.  This process also
negotiates the use of additional HTTP/3 extensions to enable both endpoints to
open WebTransport streams.</t>
        <t>WebTransport sessions are initiated inside a given HTTP/3 connection by the
client, who sends an extended CONNECT request <xref target="RFC9220"/>.  If the server
accepts the request, a WebTransport session is established.  The resulting
stream will be further referred to as a <em>CONNECT stream</em>, and its stream ID is
used to uniquely identify a given WebTransport session within the connection.
The ID of the CONNECT stream that established a given WebTransport session will
be further referred to as a <em>Session ID</em>.</t>
        <t>After the session is established, the endpoints can exchange data using the
following mechanisms:</t>
        <ul spacing="normal">
          <li>
            <t>A client can create a bidirectional stream and transfer its ownership to
WebTransport by providing a special signal in the first bytes.</t>
          </li>
          <li>
            <t>A server can create a bidirectional stream and transfer its ownership to
WebTransport by providing a special signal in the first bytes.</t>
          </li>
          <li>
            <t>Both client and server can create a unidirectional stream using a special
stream type.</t>
          </li>
          <li>
            <t>Both client and server can send datagrams using HTTP Datagrams
<xref target="HTTP-DATAGRAM"/>.</t>
          </li>
        </ul>
        <t>A WebTransport session is terminated when the CONNECT stream that created it is
closed.</t>
      </section>
    </section>
    <section anchor="session-establishment">
      <name>Session Establishment</name>
      <section anchor="establishing">
        <name>Establishing a WebTransport-Capable HTTP/3 Connection</name>
        <t>A WebTransport-Capable HTTP/3 connection requires the server to signal support
for WebTransport over HTTP/3 using a setting.  Clients also signal support by
using the "webtransport-h3" upgrade token in extended CONNECT requests when
establishing sessions (see <xref target="upgrade-token"/>).</t>
        <t>This document defines a SETTINGS_WT_ENABLED setting that WebTransport servers
use to indicate their support for WebTransport.  The default value for the
SETTINGS_WT_ENABLED setting is "0", meaning that the server does not support
WebTransport.  Clients MUST NOT attempt to establish WebTransport sessions until
they have received the setting indicating WebTransport support from the server.</t>
        <t>WebTransport over HTTP/3 uses extended CONNECT in HTTP/3 as described in
<xref target="RFC9220"/>, which defines the SETTINGS_ENABLE_CONNECT_PROTOCOL setting.</t>
        <t>WebTransport over HTTP/3 requires support for HTTP/3 datagrams and the Capsule
Protocol, and both the client and the server indicate support for HTTP/3
datagrams by sending a SETTINGS_H3_DATAGRAM setting value set to 1 in their
SETTINGS frame (see <xref section="2.1.1" sectionFormat="of" target="HTTP-DATAGRAM"/>).</t>
        <t>WebTransport over HTTP/3 also requires support for QUIC datagrams.  To indicate
support, both the client and the server send a max_datagram_frame_size transport
parameter with a value greater than 0
(see <xref section="3" sectionFormat="of" target="QUIC-DATAGRAM"/>).</t>
        <t>WebTransport over HTTP/3 relies on the RESET_STREAM_AT frame defined in
<xref target="RESET-STREAM-AT"/>.  To indicate support,
both the client and the server enable the extension by sending an empty
reset_stream_at transport parameter as described in
<xref section="3" sectionFormat="of" target="RESET-STREAM-AT"/>.</t>
        <t>In summary, servers supporting WebTransport over HTTP/3 send:</t>
        <ul spacing="normal">
          <li>
            <t>A SETTINGS_WT_ENABLED setting with a value greater than "0"</t>
          </li>
          <li>
            <t>A SETTINGS_ENABLE_CONNECT_PROTOCOL setting with a value of "1"</t>
          </li>
          <li>
            <t>A SETTINGS_H3_DATAGRAM setting with a value of 1</t>
          </li>
          <li>
            <t>A max_datagram_frame_size transport parameter with a value greater than 0</t>
          </li>
          <li>
            <t>An empty reset_stream_at transport parameter</t>
          </li>
        </ul>
        <t>Clients supporting WebTransport over HTTP/3 send:</t>
        <ul spacing="normal">
          <li>
            <t>A SETTINGS_H3_DATAGRAM setting with a value of 1</t>
          </li>
          <li>
            <t>A max_datagram_frame_size transport parameter with a value greater than 0</t>
          </li>
          <li>
            <t>An empty reset_stream_at transport parameter</t>
          </li>
        </ul>
        <t>[[RFC editor: please remove the following paragraph before publication.]]</t>
        <t>For draft versions of WebTransport only, clients MUST also send
SETTINGS_WT_ENABLED with the draft-specific codepoint to allow the server to
identify the client's supported version; see <xref target="negotiating-draft-version"/>.</t>
        <t>Servers should note that CONNECT requests to establish new WebTransport
sessions, in addition to other messages, can arrive before the client's SETTINGS
are received (see <xref target="buffering-incoming"/>).  If the server receives SETTINGS that
do not have correct values for every required setting, or transport parameters
that do not have correct values for every required transport parameter, the
server MUST treat all established and newly incoming WebTransport sessions as
malformed, as described in <xref section="4.1.2" sectionFormat="of" target="HTTP3"/>.</t>
        <t>A client MUST NOT establish WebTransport sessions if the server's SETTINGS do
not have correct values for every required setting or if the server's transport
parameters do not have correct values for every required transport parameter.
If a client does not wish to use the connection for purposes other than
WebTransport when the requirements for WebTransport are not met, the client MAY
close the HTTP/3 connection with a <tt>WT_REQUIREMENTS_NOT_MET</tt> error code to aid
in debugging.</t>
        <t>[[RFC editor: please remove the following paragraph before publication.]]</t>
        <t>For draft versions of WebTransport only, the server MUST NOT process any
incoming WebTransport requests until the client's SETTINGS have been received;
see <xref target="negotiating-draft-version"/>.</t>
      </section>
      <section anchor="creating-a-new-session">
        <name>Creating a New Session</name>
        <t>As WebTransport sessions are established over HTTP/3, they are identified using
the <tt>https</tt> URI scheme (<xref section="4.2.2" sectionFormat="of" target="HTTP"/>).</t>
        <t>In order to create a new WebTransport session, a WebTransport client sends an
HTTP extended CONNECT request.  In this request:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>:protocol</tt> pseudo-header field (<xref target="RFC8441"/>) MUST be set to
<tt>webtransport-h3</tt>.</t>
          </li>
          <li>
            <t>The <tt>:scheme</tt> field MUST be <tt>https</tt>.</t>
          </li>
          <li>
            <t>Both the <tt>:authority</tt> and the <tt>:path</tt> value MUST be set; these fields identify
the desired WebTransport server resource.</t>
          </li>
          <li>
            <t>If the WebTransport session is coming from a browser client, an <tt>Origin</tt>
header <xref target="RFC6454"/> MUST be provided within the request.  Otherwise, the
header is OPTIONAL.</t>
          </li>
        </ul>
        <t>Upon receiving an extended CONNECT request with a <tt>:protocol</tt> field set to
<tt>webtransport-h3</tt>, the HTTP/3 server can check if it has a WebTransport server
associated with the specified <tt>:authority</tt> and <tt>:path</tt> values.  If it does not,
it SHOULD reply with status code 404 (<xref section="15.5.5" sectionFormat="of" target="HTTP"/>).
When the request contains the <tt>Origin</tt> header, the WebTransport server MUST
verify the <tt>Origin</tt> header to ensure that the specified origin is allowed to
access the server in question.  If the verification fails, the WebTransport
server SHOULD reply with status code 403 (<xref section="15.5.4" sectionFormat="of" target="HTTP"/>).  If all
checks pass, the WebTransport server MAY accept the session by replying with a
2xx series status code, as defined in <xref section="15.3" sectionFormat="of" target="HTTP"/>.</t>
        <t>From the client's perspective, a WebTransport session is established when the
client receives a 2xx response.  From the server's perspective, a session is
established once it sends a 2xx response.</t>
        <t>The server may reply with a 3xx response, indicating a redirection
(<xref section="15.4" sectionFormat="of" target="HTTP"/>).  The WebTransport client MUST NOT automatically
follow such redirects, as it potentially could have already sent data for the
WebTransport session in question; it MAY notify the application client about
the redirect.</t>
        <t>Clients cannot initiate WebTransport in 0-RTT packets, as the CONNECT method is
not considered safe (see <xref section="10.9" sectionFormat="of" target="HTTP3"/>).  However,
WebTransport-related SETTINGS parameters may be retained from the previous
session as described in <xref section="7.2.4.2" sectionFormat="of" target="HTTP3"/>.  If the server accepts
0-RTT, the server MUST NOT reduce the limit of maximum open WebTransport
sessions, or other initial flow control values, from the values negotiated
during the previous session; such change would be deemed incompatible, and MUST
result in a H3_SETTINGS_ERROR connection error.</t>
        <t>The "webtransport-h3" HTTP Upgrade Token uses the Capsule Protocol as defined in
<xref target="HTTP-DATAGRAM"/>.  The Capsule Protocol is negotiated when the server sends a
2xx response.  The <tt>capsule-protocol</tt> header field
<xref section="3.4" sectionFormat="of" target="HTTP-DATAGRAM"/> is not required by WebTransport and can safely
be ignored by WebTransport endpoints.</t>
      </section>
      <section anchor="protocol-negotiation">
        <name>Application Protocol Negotiation</name>
        <t>WebTransport over HTTP/3 offers a protocol negotiation mechanism, similar to the
TLS Application-Layer Protocol Negotiation (ALPN) extension <xref target="RFC7301"/>; the
intent is to simplify porting existing protocols that use QUIC and rely on this
functionality.</t>
        <t>The client MAY include a <tt>WT-Available-Protocols</tt> header field in the CONNECT
request.  The <tt>WT-Available-Protocols</tt> field enumerates the possible protocols
in preference order, with the most preferred protocol listed first.  If the
server receives such a header, it MAY include a <tt>WT-Protocol</tt> field in a
successful (2xx) response.  If it does, the server MUST include a single choice
from the client's list in that field.  Servers MAY reject the request if the
client did not include a suitable protocol.</t>
        <t>Both <tt>WT-Available-Protocols</tt> and <tt>WT-Protocol</tt> are Structured Fields
<xref target="FIELDS"/>.  <tt>WT-Available-Protocols</tt> is a List.  <tt>WT-Protocol</tt> is
defined as an Item.  In both cases, the only valid value type is a String.  Any
value type other than String MUST be treated as an error that causes the entire
field to be ignored as recommended in <xref target="FIELDS"/>, allowing application protocol
negotiation to remain optional.  No semantics are defined for parameters on
either field; parameters MUST be ignored.</t>
        <t>A server that requires application protocol negotiation MAY reject the session
if the <tt>WT-Available-Protocols</tt> header field is absent or if it is malformed and
therefore ignored.</t>
        <t>A client that requires application protocol negotiation MUST close the
WebTransport session with a <tt>WT_ALPN_ERROR</tt> error code if the server does not
include a <tt>WT-Protocol</tt> header field, or if it is malformed and therefore
ignored, in a successful response.</t>
        <t>If the client sends a <tt>WT-Available-Protocols</tt> header field and the server
responds with a <tt>WT-Protocol</tt> header field, the value in the <tt>WT-Protocol</tt>
response header field MUST be one of the values listed in
<tt>WT-Available-Protocols</tt> of the request.  If the client receives a <tt>WT-Protocol</tt>
value that was not included in its <tt>WT-Available-Protocols</tt> list, the client
MUST close the WebTransport session with a <tt>WT_ALPN_ERROR</tt> error code.</t>
        <t>The semantics of individual values used in <tt>WT-Available-Protocols</tt> and
<tt>WT-Protocol</tt> are determined by the WebTransport resource in question and are
not required to be registered in IANA's "ALPN Protocol IDs" registry.</t>
      </section>
      <section anchor="prioritization">
        <name>Prioritization</name>
        <t>WebTransport sessions are initiated using extended CONNECT.
While <xref section="11" sectionFormat="of" target="RFC9218"/> describes how extensible priorities can be
applied to data sent on a CONNECT stream, WebTransport extends the types of data
that are exchanged in relation to the request and response, which requires
additional considerations.</t>
        <t>WebTransport CONNECT requests and responses MAY contain the Priority header
field (<xref section="5" sectionFormat="of" target="RFC9218"/>); clients MAY reprioritize by sending
PRIORITY_UPDATE frames (<xref section="7" sectionFormat="of" target="RFC9218"/>).  In extension to <xref target="RFC9218"/>,
it is RECOMMENDED that clients and servers apply the scheduling guidance in both
<xref section="9" sectionFormat="of" target="RFC9218"/> and <xref section="10" sectionFormat="of" target="RFC9218"/> for all data that they
send in the enclosing WebTransport session, including Capsules, WebTransport
streams and datagrams.  WebTransport does not provide any priority signaling
mechanism for streams and datagrams within a WebTransport session; such
mechanisms can be defined by application protocols using WebTransport.  It is
RECOMMENDED that such mechanisms only affect scheduling within a session and not
scheduling of other data on the same HTTP/3 connection.</t>
        <t>The client/server priority merging guidance in <xref section="8" sectionFormat="of" target="RFC9218"/> also
applies to WebTransport sessions.  For example, a client that receives a
response Priority header field could alter its view of a WebTransport session
priority and alter the scheduling of outgoing data as a result.</t>
        <t>Endpoints that prioritize WebTransport sessions need to consider how they
interact with other sessions or requests on the same HTTP/3 connection.</t>
      </section>
    </section>
    <section anchor="webtransport-features">
      <name>WebTransport Features</name>
      <t>WebTransport over HTTP/3 provides the following features described in
<xref target="OVERVIEW"/>: unidirectional streams, bidirectional streams, and datagrams, all of
which can be initiated by either endpoint.  Protocols designed for use with
WebTransport over HTTP/3 are constrained to these features.  The Capsule
Protocol is an implementation detail of WebTransport over HTTP/3 and is not a
WebTransport feature.</t>
      <t>Session IDs are used to demultiplex streams and datagrams belonging to different
WebTransport sessions.  On the wire, session IDs are encoded using the QUIC
variable length integer scheme described in <xref target="RFC9000"/>.</t>
      <t>The client MAY optimistically open unidirectional and bidirectional streams, as
well as send datagrams, on a session for which it has sent the CONNECT request,
even if it has not yet received the server's response to the request. On the
server side, opening streams and sending datagrams is possible as soon as the
CONNECT request has been received.</t>
      <t>Session IDs are derived from the stream ID of the CONNECT stream that
established the session and therefore MUST always correspond to a
client-initiated bidirectional stream, as defined in <xref section="2.1" sectionFormat="of" target="RFC9000"/>.
If an endpoint receives a session ID on a unidirectional stream, bidirectional
stream, or datagram that does not correspond to a client-initiated bidirectional
stream ID, the endpoint MUST close the connection with an H3_ID_ERROR error
code.  Session IDs that correspond to closed sessions are not considered invalid
for the purposes of this check; endpoints handle data for closed sessions as
described in <xref target="session-termination"/>.</t>
      <section anchor="transport-properties">
        <name>Transport Properties</name>
        <t>The WebTransport framework <xref target="OVERVIEW"/> defines a set of optional transport
properties that clients can use to determine the presence of features which
might allow additional optimizations beyond the common set of properties
available via all WebTransport protocols.</t>
        <t>Below are details about support in WebTransport over HTTP/3 for the properties
defined by the WebTransport framework.</t>
        <dl>
          <dt>Unreliable Delivery:</dt>
          <dd>
            <t>WebTransport over HTTP/3 supports unreliable delivery.  Resetting a stream
results in lost stream data no longer being retransmitted.  WebTransport over
HTTP/3 also supports datagrams, which are not retransmitted.</t>
          </dd>
          <dt>Pooling:</dt>
          <dd>
            <t>WebTransport over HTTP/3 provides optional support for pooling.  Endpoints
that do not support pooling can reply to CONNECT requests with a header
indicating a rate limit policy with a quota of "1"
(<xref target="I-D.ietf-httpapi-ratelimit-headers"/>).</t>
          </dd>
        </dl>
      </section>
      <section anchor="unidirectional-streams">
        <name>Unidirectional streams</name>
        <t>WebTransport endpoints can initiate unidirectional streams.  The HTTP/3
unidirectional stream type SHALL be 0x54.  The body of the stream SHALL be the
stream type, followed by the session ID, encoded as a variable-length integer,
followed by the user-specified stream data (<xref target="fig-unidi"/>).</t>
        <figure anchor="fig-unidi">
          <name>Unidirectional WebTransport stream format</name>
          <sourcecode type="drawing"><![CDATA[
Unidirectional Stream {
    Stream Type (i) = 0x54,
    Session ID (i),
    User-Specified Stream Data (..)
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="bidirectional-streams">
        <name>Bidirectional Streams</name>
        <t>All client-initiated bidirectional streams are reserved by HTTP/3 as request
streams, which are a sequence of HTTP/3 frames with a variety of rules (see
Sections <xref target="HTTP3" section="4.1" sectionFormat="bare"/> and <xref target="HTTP3" section="6.1" sectionFormat="bare"/> of <xref target="HTTP3"/>).</t>
        <t>WebTransport extends HTTP/3 to allow clients to declare and to use alternative
request stream rules.  Once a client receives settings indicating WebTransport
support (<xref target="establishing"/>), it MUST send a special signal value, encoded as a
variable-length integer, as the first bytes of each bidirectional WebTransport
stream it initiates to indicate how the remaining bytes on the stream are used.</t>
        <t>WebTransport extends HTTP/3 by defining rules for all server-initiated
bidirectional streams.  Once a server receives an incoming CONNECT request
establishing a WebTransport session (<xref target="establishing"/>), it can open a
bidirectional stream for use with that session and MUST send a special signal
value, encoded as a variable-length integer, as the first bytes of the stream in
order to indicate how the remaining bytes on the stream are used.</t>
        <t>Clients and servers use the signal value 0x41 to open a bidirectional
WebTransport stream.  Following this is the associated session ID, encoded as a
variable-length integer; the rest of the stream is the application payload of
the WebTransport stream (<xref target="fig-bidi-client"/>).</t>
        <figure anchor="fig-bidi-client">
          <name>Bidirectional WebTransport stream format</name>
          <sourcecode type="drawing"><![CDATA[
Bidirectional Stream {
    Signal Value (i) = 0x41,
    Session ID (i),
    Stream Body (..)
}
]]></sourcecode>
        </figure>
        <t>This document reserves the special signal value 0x41 as a WT_STREAM frame type.
While it is registered as an HTTP/3 frame type to avoid collisions, WT_STREAM
lacks length and is not a proper HTTP/3 frame; it is an extension of HTTP/3
frame syntax that MUST be supported by any peer negotiating WebTransport.
Endpoints that implement this extension are also subject to additional frame
handling requirements.  Endpoints MUST NOT send WT_STREAM as a frame type on
HTTP/3 streams other than the very first bytes of a request stream.  Receiving
this frame type in any other circumstances MUST be treated as a connection error
of type H3_FRAME_ERROR.</t>
      </section>
      <section anchor="resetting-data-streams">
        <name>Resetting Data Streams</name>
        <t>A WebTransport endpoint may send a RESET_STREAM or a STOP_SENDING frame for a
WebTransport data stream.  Those signals are propagated by the WebTransport
implementation to the application.</t>
        <t>A WebTransport application MUST provide an error code for those operations.
Since WebTransport shares the error code space with HTTP/3, WebTransport
application errors for streams are limited to an unsigned 32-bit integer,
assuming values between 0x00000000 and 0xffffffff.  WebTransport
implementations MUST remap those error codes into the error range reserved
for WT_APPLICATION_ERROR, where 0x00000000 corresponds to 0x52e4a40fa8db,
and 0xffffffff corresponds to 0x52e5ac983162.  Note that there are
codepoints inside that range of form "0x1f * N + 0x21" that are reserved
by <xref section="8.1" sectionFormat="of" target="HTTP3"/>; those have to be skipped when mapping the
error codes (i.e., the two HTTP/3 error codepoints adjacent to a reserved
codepoint would map to two adjacent WebTransport application error
codepoints). An example pseudocode can be seen in <xref target="fig-remap-errors"/>.</t>
        <figure anchor="fig-remap-errors">
          <name>Pseudocode for converting between WebTransport application errors and HTTP/3 error codes</name>
          <artwork><![CDATA[
    first = 0x52e4a40fa8db
    last = 0x52e5ac983162

    def webtransport_code_to_http_code(n):
        return first + n + floor(n / 0x1e)

    def http_code_to_webtransport_code(h):
        assert(first <= h <= last)
        assert((h - 0x21) % 0x1f != 0)
        shifted = h - first
        return shifted - floor(shifted / 0x1f)
]]></artwork>
        </figure>
        <t>WebTransport data streams are associated with sessions through a header at the
beginning of the stream; resetting a stream might result in that data being
discarded when using a RESET_STREAM frame.  To prevent this, WebTransport
implementations MUST use the RESET_STREAM_AT frame <xref target="RESET-STREAM-AT"/> with a
Reliable Size set to at least the size of the WebTransport header when resetting
a WebTransport data stream.  This ensures reliable delivery of the ID field
associating the data stream with a WebTransport session.</t>
        <t>WebTransport endpoints MUST forward the error code for a stream associated with
a known session to the application that owns that session; similarly,
intermediaries MUST reset such streams with a corresponding error code when
receiving a reset from their peer.  If a RESET_STREAM or STOP_SENDING frame is
received with an error code outside the range reserved for WT_APPLICATION_ERROR,
the stream is still considered reset, but the error code is not mapped to a
WebTransport application error code.  The WebTransport implementation SHOULD
deliver this to the application as a stream reset with no application error
code.</t>
      </section>
      <section anchor="datagrams">
        <name>Datagrams</name>
        <t>Datagrams can be sent using HTTP Datagrams.  The WebTransport datagram payload
is sent unmodified in the "HTTP Datagram Payload" field of an HTTP Datagram
(<xref section="2.1" sectionFormat="of" target="HTTP-DATAGRAM"/>).  Note that the payload field directly
follows the Quarter Stream ID field, which is at the start of the QUIC DATAGRAM
frame payload and refers to the CONNECT stream that established the WebTransport
session.</t>
      </section>
      <section anchor="buffering-incoming">
        <name>Buffering Incoming Streams and Datagrams</name>
        <t>In WebTransport over HTTP/3, the client MUST wait for receipt of the server's
SETTINGS frame before establishing any WebTransport sessions by sending CONNECT
requests using the WebTransport upgrade token (see <xref target="establishing"/>).  This
ensures that the client will always know what versions of WebTransport can be
used on a given HTTP/3 connection.</t>
        <t>Clients can, however, send a SETTINGS frame, multiple WebTransport CONNECT
requests, WebTransport data streams, and WebTransport datagrams all within a
single flight.  As those can arrive out of order, a WebTransport server could be
put into a situation where it receives a stream or a datagram without a
corresponding session.  Similarly, a client may receive a server-initiated
stream or a datagram before receiving the CONNECT response headers from the
server.</t>
        <t>To handle this case, WebTransport endpoints SHOULD buffer streams and datagrams
until they can be associated with an established session.  To avoid resource
exhaustion, endpoints MUST limit the number of buffered streams and datagrams.
When the number of buffered streams is exceeded, a stream SHALL be closed by
sending a RESET_STREAM and/or STOP_SENDING with the
<tt>WT_BUFFERED_STREAM_REJECTED</tt> error code.  When the number of buffered datagrams
is exceeded, a datagram SHALL be dropped.  It is up to an implementation to
choose what stream or datagram to discard.</t>
      </section>
      <section anchor="interaction-with-the-http3-goaway-frame">
        <name>Interaction with the HTTP/3 GOAWAY frame</name>
        <t>HTTP/3 defines a graceful shutdown mechanism (<xref section="5.2" sectionFormat="of" target="HTTP3"/>) that
allows a peer to send a GOAWAY frame indicating that it will no longer accept
any new incoming requests or pushes.</t>
        <t>A client receiving GOAWAY cannot initiate CONNECT requests for new WebTransport
sessions on that HTTP/3 connection; it must open a new HTTP/3 connection to
initiate new WebTransport sessions with the same peer.</t>
        <t>An HTTP/3 GOAWAY frame is also a signal to applications to initiate shutdown for
all WebTransport sessions.  To shut down a single WebTransport session, either
endpoint can send a WT_DRAIN_SESSION (0x78ae) capsule.</t>
        <figure anchor="fig-wt_drain_session">
          <name>WT_DRAIN_SESSION Capsule Format</name>
          <artwork><![CDATA[
WT_DRAIN_SESSION Capsule {
  Type (i) = WT_DRAIN_SESSION,
  Length (i) = 0
}
]]></artwork>
        </figure>
        <t>After sending or receiving either a WT_DRAIN_SESSION capsule or a HTTP/3 GOAWAY
frame, an endpoint MAY continue using the session and MAY open new WebTransport
streams.  The signal is intended for the application using WebTransport, which
is expected to attempt to gracefully terminate the session as soon as possible.</t>
        <t>The WT_DRAIN_SESSION capsule is useful when an end-to-end WebTransport session
passes through an intermediary.  For example, when the backend shuts down, it
sends a GOAWAY to the intermediary.  The intermediary can convert this signal to
a WT_DRAIN_SESSION capsule on the client-facing session, without impacting other
requests or sessions carried on that connection.</t>
      </section>
      <section anchor="use-of-keying-material-exporters">
        <name>Use of Keying Material Exporters</name>
        <t>WebTransport over HTTP/3 supports the use of TLS keying material exporters
<xref section="7.5" sectionFormat="of" target="RFC8446"/>.  Since the underlying QUIC connection may be shared
by multiple WebTransport sessions, WebTransport defines a mechanism for deriving
a TLS exporter that separates keying material for different sessions.  If the
application requests an exporter for a given WebTransport session with a
specified label and context, the resulting exporter SHALL be a TLS exporter as
defined in <xref section="7.5" sectionFormat="of" target="RFC8446"/> with the label set to
"EXPORTER-WebTransport" and the context set to the serialization of the
"WebTransport Exporter Context" struct as defined below.</t>
        <figure anchor="fig-wt-exporter-context">
          <name>WebTransport Exporter Context struct</name>
          <artwork><![CDATA[
WebTransport Exporter Context {
  WebTransport Session ID (64),
  WebTransport Application-Supplied Exporter Label Length (8),
  WebTransport Application-Supplied Exporter Label (8..),
  WebTransport Application-Supplied Exporter Context Length (8),
  WebTransport Application-Supplied Exporter Context (..)
}
]]></artwork>
        </figure>
        <t>A TLS exporter API might permit the context field to be omitted.  In this case,
as with TLS 1.3, the WebTransport Application-Supplied Exporter Context becomes
zero-length if omitted.</t>
      </section>
    </section>
    <section anchor="flow-control">
      <name>Flow Control</name>
      <t>Flow control governs the amount of resources that can be consumed or data that
can be sent.  When using WebTransport over HTTP/3, endpoints can limit the
number of sessions that a peer can create on a single HTTP/3 connection and the
number of streams that a peer can create within a session.  Endpoints can also
limit the amount of data that can be consumed by each session and by each stream
within a session.</t>
      <t>WebTransport over HTTP/3 provides a connection-level limit that governs the
number of sessions that can be created on an HTTP/3 connection (see
<xref target="flow-control-limit-sessions"/>).  It also provides session-level limits that
govern the number of streams that can be created in a session and limit the
amount of data that can be exchanged across all streams in each session (see
<xref target="flow-control-limit-streams"/>).</t>
      <t>The underlying QUIC connection provides connection and stream level flow
control.  The QUIC connection data limit defines the total amount of data that
can be sent across all WebTransport sessions and other non-WebTransport streams.
A QUIC stream's data limit controls the amount of data that can be sent on that
stream, WebTransport or otherwise (see <xref section="4" sectionFormat="of" target="RFC9000"/>).</t>
      <section anchor="flow-control-negotiate">
        <name>Negotiating the Use of Flow Control</name>
        <t>A WebTransport endpoint that allows a WebTransport session to share an
underlying transport connection with other WebTransport sessions MUST enable
flow control.  This prevents an application from consuming excessive resources
on a single session and starving traffic for other sessions
(see <xref target="security-considerations"/>).</t>
        <t>Flow control is enabled when both endpoints declare their intent to use flow
control by taking any of the following actions:</t>
        <ul spacing="normal">
          <li>
            <t>Sending SETTINGS_WT_INITIAL_MAX_STREAMS_UNI with any value other than "0".</t>
          </li>
          <li>
            <t>Sending SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI with any value other than "0".</t>
          </li>
          <li>
            <t>Sending SETTINGS_WT_INITIAL_MAX_DATA with any value other than "0".</t>
          </li>
        </ul>
        <t>If both endpoints take at least one of these actions, flow control is enabled,
and the limits described in the entirety of <xref target="flow-control"/> apply.</t>
        <t>Flow control can be enabled regardless of the number of WebTransport sessions a
server supports.</t>
        <t>If flow control is not enabled, clients MUST NOT attempt to establish more than
one simultaneous WebTransport session.  A server that receives more than one
session on an underlying transport connection when flow control is not enabled
MUST reset the excessive CONNECT streams with a <tt>H3_REQUEST_REJECTED</tt> status
(see <xref target="flow-control-limit-sessions"/>).</t>
        <t>Also, if flow control is not enabled, an endpoint MUST ignore receipt of any
flow control capsules (see <xref target="flow-control-capsules"/>), since the peer might not
have received SETTINGS at the time they were sent or packets might have been
reordered.</t>
      </section>
      <section anchor="flow-control-limit-sessions">
        <name>Limiting the Number of Simultaneous Sessions</name>
        <t>Servers SHOULD limit the rate of incoming WebTransport sessions on HTTP/3
connections to prevent excessive consumption of resources.  To do so, they have
multiple mechanisms available:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>H3_REQUEST_REJECTED</tt> error code defined in <xref section="8.1" sectionFormat="of" target="HTTP3"/>
indicates to the receiving HTTP/3 stack that the request was not processed in
any way.</t>
          </li>
          <li>
            <t>HTTP status code 429 indicates that the request was rejected due to rate
limiting <xref target="RFC6585"/>.  Unlike the previous method, this signal is directly
propagated to the application.</t>
          </li>
        </ul>
        <t>WebTransport servers can use rate limit header fields in responses to CONNECT
requests to signal quota policies and service limits to WebTransport clients
(see <xref target="I-D.ietf-httpapi-ratelimit-headers"/>).  This provides hints to clients
about how many sessions they can reasonably expect to be able to open.  An
endpoint that does not support pooling and flow control MUST NOT accept more
than one incoming WebTransport session at a time.</t>
      </section>
      <section anchor="flow-control-limit-streams">
        <name>Limiting the Number of Streams Within a Session</name>
        <t>The <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule (<xref target="WT_MAX_STREAMS"/>) establishes a limit on the
number of streams within a WebTransport session.  Like the QUIC MAX_STREAMS
frame (<xref section="19.11" sectionFormat="of" target="RFC9000"/>), this capsule has two types that provide
separate limits for unidirectional and bidirectional streams that a peer
initiates.</t>
        <t>Note that the CONNECT stream for the session is not included in either the
bidirectional or the unidirectional stream limits; the number of CONNECT streams
a client can open is limited by QUIC flow control's stream limits and any rate
limit that a WebTransport server enforces.</t>
        <t>The session-level stream limit applies in addition to the QUIC MAX_STREAMS
frame, which provides a connection-level stream limit.  New streams can only be
created within the session if both the stream- and the connection-level limit
permit, see <xref section="4.6" sectionFormat="of" target="RFC9000"/> for details on how QUIC stream limits
are applied.</t>
        <t>Unlike the QUIC MAX_STREAMS frame, there is no simple relationship between the
value in this frame and stream IDs in QUIC STREAM frames.  This especially
applies if there are other users of streams on the connection.</t>
        <t>The <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule (<xref target="WT_STREAMS_BLOCKED"/>) can be sent to indicate
that an endpoint was unable to create a stream due to the session-level stream
limit.</t>
        <t>Note that enforcing this limit requires reliable resets for stream headers so
that both endpoints can agree on the number of streams that are open.</t>
      </section>
      <section anchor="flow-control-limit-data">
        <name>Data Limits</name>
        <t>The <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule (<xref target="WT_MAX_DATA"/>) establishes a limit on the amount of
data that can be sent within a WebTransport session.  This limit counts all data
that is sent on streams of the corresponding type, excluding the stream header
(see <xref target="unidirectional-streams"/> and <xref target="bidirectional-streams"/>).  The stream
header is excluded from this limit so that this limit does not prevent the
sending of information that is essential in linking new streams to a specific
WebTransport session.</t>
        <t>For streams that were reset, implementing <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> requires that the QUIC
stack provide the WebTransport implementation with information about the final
size of streams; see <xref section="4.5" sectionFormat="of" target="RFC9000"/>.  This guarantees that both
endpoints agree on how much WebTransport session flow control credit was
consumed by the sender on that stream.</t>
        <t>The <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsule (<xref target="WT_DATA_BLOCKED"/>) can be sent to indicate that
an endpoint was unable to send data due to a limit set by the <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>
capsule.</t>
        <t>Because WebTransport over HTTP/3 uses a native QUIC stream for each WebTransport
stream, per-stream data limits are provided by QUIC natively
(see <xref section="4.1" sectionFormat="of" target="RFC9000"/>).  The WT_MAX_STREAM_DATA and
WT_STREAM_DATA_BLOCKED capsules
(Sections <xref target="I-D.ietf-webtrans-http2" section="6.6" sectionFormat="bare"/> and <xref target="I-D.ietf-webtrans-http2" section="6.9" sectionFormat="bare"/> of <xref target="I-D.ietf-webtrans-http2"/>) are not used and so are
prohibited.  Endpoints MUST treat receipt of a WT_MAX_STREAM_DATA or a
WT_STREAM_DATA_BLOCKED capsule as a session error.</t>
      </section>
      <section anchor="flow-control-settings">
        <name>Flow Control SETTINGS</name>
        <t>Initial flow control limits can be exchanged via HTTP/3 SETTINGS
(<xref target="http3-settings"/>) by providing non-zero values for</t>
        <ul spacing="normal">
          <li>
            <t><iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> via SETTINGS_WT_INITIAL_MAX_STREAMS_UNI and
SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</t>
          </li>
          <li>
            <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> via SETTINGS_WT_INITIAL_MAX_DATA</t>
          </li>
        </ul>
        <section anchor="settingswtinitialmaxstreamsuni">
          <name>SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</name>
          <t>The SETTINGS_WT_INITIAL_MAX_STREAMS_UNI setting indicates the initial value for
the unidirectional max stream limit, otherwise communicated by the
<iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule (see <xref target="WT_MAX_STREAMS"/>).  The default value for the
SETTINGS_WT_INITIAL_MAX_STREAMS_UNI setting is "0", indicating that the endpoint
needs to send <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules on each individual WebTransport session
before its peer is allowed to create any unidirectional streams within that
session.</t>
          <t>Note that this limit applies to all WebTransport sessions that use the HTTP/3
connection on which this SETTING is sent.</t>
        </section>
        <section anchor="settingswtinitialmaxstreamsbidi">
          <name>SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</name>
          <t>The SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI setting indicates the initial value for
the bidirectional max stream limit, otherwise communicated by the <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>
capsule (see <xref target="WT_MAX_STREAMS"/>).  The default value for the
SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI setting is "0", indicating that the
endpoint needs to send <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules on each individual WebTransport
session before its peer is allowed to create any bidirectional streams within
that session.</t>
          <t>Note that this limit applies to all WebTransport sessions that use the HTTP/3
connection on which this SETTING is sent.</t>
        </section>
        <section anchor="settingswtinitialmaxdata">
          <name>SETTINGS_WT_INITIAL_MAX_DATA</name>
          <t>The SETTINGS_WT_INITIAL_MAX_DATA setting indicates the initial value for the
session data limit, otherwise communicated by the <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule (see
<xref target="WT_MAX_DATA"/>).  The default value for the SETTINGS_WT_INITIAL_MAX_DATA
setting is "0", indicating that the endpoint needs to send a <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule
within each session before its peer is allowed to send any stream data within
that session.</t>
          <t>Note that this limit applies to all WebTransport sessions that use the HTTP/3
connection on which this SETTING is sent.</t>
        </section>
      </section>
      <section anchor="flow-control-capsules">
        <name>Flow Control Capsules</name>
        <t>WebTransport over HTTP/3 uses several capsules for flow control, and all of
these capsules define special intermediary handling as described in
<xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  These capsules, referred to as the "flow
control capsules", are <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>, <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>, <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref>, and
<iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref>.</t>
        <t>An endpoint MUST NOT wait for a <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> or <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule
before sending a <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> or <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule; doing so could result
in the sender being blocked for at least an entire round trip.  Endpoints
SHOULD send <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> and <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules as they consume data or
close streams (similar to the mechanism used in QUIC, see
<xref section="4.2" sectionFormat="of" target="RFC9000"/>).</t>
        <section anchor="flow-control-intermediaries">
          <name>Flow Control and Intermediaries</name>
          <t>Because flow control in WebTransport is hop-by-hop and does not provide an
end-to-end signal, intermediaries MUST consume flow control signals and express
their own flow control limits to the next hop.  The intermediary can send these
signals via HTTP/3 flow control messages, HTTP/2 flow control messages, or as
WebTransport flow control capsules, where appropriate.  Intermediaries are
responsible for storing any data for which they advertise flow control credit if
that data cannot be immediately forwarded to the next hop.</t>
          <t>In practice, an intermediary that translates flow control signals between
similar WebTransport protocols, such as between two HTTP/3 connections, can
often simply reexpress the same limits received on one connection directly on
the other connection.</t>
          <t>An intermediary that does not want to be responsible for storing data that
cannot be immediately sent on its translated connection can ensure that it does
not advertise a higher flow control limit on one connection than the
corresponding limit on the translated connection.</t>
        </section>
        <section anchor="WT_MAX_STREAMS">
          <name>WT_MAX_STREAMS Capsule</name>
          <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> is introduced to inform
the peer of the cumulative number of streams of a given type it is permitted to
open.  A <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule with a type of 0x190B4D3F applies to
bidirectional streams, and a <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule with a type of 0x190B4D40
applies to unidirectional streams.</t>
          <t>Note that, because Maximum Streams is a cumulative value representing the total
allowed number of streams, including previously closed streams, endpoints
repeatedly send new <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules with increasing Maximum Streams
values as streams are opened.</t>
          <figure anchor="fig-wt_max_streams">
            <name>WT_MAX_STREAMS Capsule Format</name>
            <artwork><![CDATA[
WT_MAX_STREAMS Capsule {
  Type (i) = 0x190B4D3F..0x190B4D40,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
          </figure>
          <t><iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules contain the following field:</t>
          <dl>
            <dt>Maximum Streams:</dt>
            <dd>
              <t>A count of the cumulative number of streams of the corresponding type that
can be opened over the lifetime of the session. This value cannot
exceed 2<sup>60</sup>, as it is not possible to encode stream IDs larger
than 2<sup>62</sup>-1. Receipt of a capsule with a Maximum Streams value
larger than this limit MUST be treated as an HTTP/3 error of type
H3_DATAGRAM_ERROR.</t>
            </dd>
          </dl>
          <t>An endpoint MUST NOT open more streams than permitted by the current stream
limit set by its peer.  For instance, a server that receives a unidirectional
stream limit of 3 is permitted to open streams 3, 7, and 11, but not stream 15.</t>
          <t>Note that this limit includes streams that have been closed as well as those
that are open.</t>
          <t>If an endpoint receives an incoming stream for a session that would exceed the
advertised Maximum Streams value, it MUST close the WebTransport session with a
WT_FLOW_CONTROL_ERROR error code.</t>
          <t>Unlike in QUIC, where MAX_STREAMS frames can be delivered in any order,
<iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules are sent on the WebTransport session's connect stream
and are delivered in order.  If an endpoint receives a <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule
with a Maximum Streams value less than a previously received value, it MUST
close the WebTransport session with a WT_FLOW_CONTROL_ERROR error code.</t>
          <t>The <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule defines special intermediary handling, as described
in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermediaries MUST consume <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>
capsules for flow control purposes and MUST generate and send appropriate flow
control signals for their limits.</t>
          <t>Initial values for these limits MAY be communicated by sending non-zero values
for SETTINGS_WT_INITIAL_MAX_STREAMS_UNI and
SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI.</t>
        </section>
        <section anchor="WT_STREAMS_BLOCKED">
          <name>WT_STREAMS_BLOCKED Capsule</name>
          <t>A sender SHOULD send a <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule (type=0x190B4D43 or
0x190B4D44) when it wishes to open a stream but is unable to do so due to the
maximum stream limit set by its peer.  A <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule of type
0x190B4D43 is used to indicate reaching the bidirectional stream limit, and a
<iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule of type 0x190B4D44 is used to indicate reaching the
unidirectional stream limit.</t>
          <t>A <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule does not open the stream, but informs the peer that
a new stream was needed and the stream limit prevented the creation of the
stream.  A sender is not required to send <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules, however
<iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules can be used as input to tuning of flow control
algorithms and for debugging purposes.</t>
          <figure anchor="fig-wt_streams_blocked">
            <name>WT_STREAMS_BLOCKED Capsule Format</name>
            <artwork><![CDATA[
WT_STREAMS_BLOCKED Capsule {
  Type (i) = 0x190B4D43..0x190B4D44,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
          </figure>
          <t><iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules contain the following field:</t>
          <dl>
            <dt>Maximum Streams:</dt>
            <dd>
              <t>A variable-length integer indicating the maximum number of streams allowed
at the time the capsule was sent. This value cannot exceed 2<sup>60</sup>,
as it is not possible to encode stream IDs larger than 2<sup>62</sup>-1.</t>
            </dd>
          </dl>
          <t>The <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermediaries MUST consume
<iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules for flow control purposes and MUST generate and send
appropriate flow control signals for their limits.</t>
        </section>
        <section anchor="WT_MAX_DATA">
          <name>WT_MAX_DATA Capsule</name>
          <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> (type=0x190B4D3D) is
introduced to inform the peer of the maximum amount of data that can be sent on
the WebTransport session as a whole.</t>
          <t>This limit counts all data that is sent on streams of the corresponding type,
excluding the stream header (see <xref target="unidirectional-streams"/> and
<xref target="bidirectional-streams"/>).  For streams that were reset, implementing
<iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> requires that the QUIC stack provide the WebTransport implementation
with information about the final size of streams
(see <xref section="4.5" sectionFormat="of" target="RFC9000"/>).</t>
          <figure anchor="fig-wt_max_data">
            <name>WT_MAX_DATA Capsule Format</name>
            <artwork><![CDATA[
WT_MAX_DATA Capsule {
  Type (i) = 0x190B4D3D,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
          </figure>
          <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsules contain the following field:</t>
          <dl>
            <dt>Maximum Data:</dt>
            <dd>
              <t>A variable-length integer indicating the maximum amount of data that can be
sent on the entire session, in units of bytes.</t>
            </dd>
          </dl>
          <t>The sum of the lengths of Stream Body data sent on all streams associated with
this session MUST NOT exceed the Maximum Data value advertised by a receiver.
Note that capsules sent on the CONNECT stream, and the Signal Value, Stream
Type, and Session ID fields, are not included in this limit.  If an endpoint
receives Stream Body data in excess of this limit, it MUST close the
WebTransport session with a WT_FLOW_CONTROL_ERROR error code.</t>
          <t>Unlike in QUIC, where MAX_DATA frames can be delivered in any order, <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>
capsules are sent on the WebTransport session's connect stream and are delivered
in order.  If an endpoint receives a <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule with a Maximum Data
value less than a previously received value, it MUST close the WebTransport
session with a WT_FLOW_CONTROL_ERROR error code.</t>
          <t>The <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule defines special intermediary handling, as described in
<xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermediaries MUST consume <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>
capsules for flow control purposes and MUST generate and send appropriate flow
control signals for their limits (see <xref target="flow-control-intermediaries"/>).</t>
          <t>The initial value for this limit MAY be communicated by sending a non-zero value
for SETTINGS_WT_INITIAL_MAX_DATA.</t>
        </section>
        <section anchor="WT_DATA_BLOCKED">
          <name>WT_DATA_BLOCKED Capsule</name>
          <t>A sender SHOULD send a <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsule (type=0x190B4D41) when it wishes
to send data but is unable to do so due to WebTransport session-level flow
control.  A sender is not required to send <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules, however
<iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules can be used as input to tuning of flow control
algorithms and for debugging purposes.</t>
          <figure anchor="fig-wt_data_blocked">
            <name>WT_DATA_BLOCKED Capsule Format</name>
            <artwork><![CDATA[
WT_DATA_BLOCKED Capsule {
  Type (i) = 0x190B4D41,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
          </figure>
          <t><iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules contain the following field:</t>
          <dl>
            <dt>Maximum Data:</dt>
            <dd>
              <t>A variable-length integer indicating the session-level limit at which
blocking occurred.</t>
            </dd>
          </dl>
          <t>The <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsule defines special intermediary handling, as described
in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermediaries MUST consume
<iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules for flow control purposes and MUST generate and send
appropriate flow control signals for their limits (see
<xref target="flow-control-intermediaries"/>).</t>
        </section>
      </section>
    </section>
    <section anchor="session-termination">
      <name>Session Termination</name>
      <t>A WebTransport session over HTTP/3 is considered terminated when either of the
following conditions is met:</t>
      <ul spacing="normal">
        <li>
          <t>the CONNECT stream is closed, either cleanly or abruptly, on either side; or</t>
        </li>
        <li>
          <t>a WT_CLOSE_SESSION capsule is either sent or received.</t>
        </li>
      </ul>
      <t>Upon learning that the session has been terminated, the endpoint MUST reset the
send side and abort reading on the receive side of all unidirectional and
bidirectional streams associated with the session
(see <xref section="2.4" sectionFormat="of" target="RFC9000"/>) using the WT_SESSION_GONE error code;
it MUST NOT send any new datagrams or open any new streams.</t>
      <t>To terminate a session with a detailed error message, an application MAY provide
such a message for the WebTransport endpoint to send in an HTTP capsule
<xref target="HTTP-DATAGRAM"/> of type WT_CLOSE_SESSION (0x2843). The format of the capsule
SHALL be as follows:</t>
      <figure anchor="fig-wt_close_session">
        <name>WT_CLOSE_SESSION Capsule Format</name>
        <artwork><![CDATA[
WT_CLOSE_SESSION Capsule {
  Type (i) = WT_CLOSE_SESSION,
  Length (i),
  Application Error Code (32),
  Application Error Message (..8192),
}
]]></artwork>
      </figure>
      <t>WT_CLOSE_SESSION has the following fields:</t>
      <dl>
        <dt>Application Error Code:</dt>
        <dd>
          <t>A 32-bit error code provided by the application closing the session.</t>
        </dd>
        <dt>Application Error Message:</dt>
        <dd>
          <t>A UTF-8 encoded error message string provided by the application closing the
session.  The message takes up the remainder of the capsule, and its
length MUST NOT exceed 1024 bytes.</t>
        </dd>
      </dl>
      <t>Note that the Application Error Code field does not mirror the Error Code field
in QUIC's CONNECTION_CLOSE frame (<xref section="19.19" sectionFormat="of" target="RFC9000"/>) because
WebTransport application errors use a subset of the HTTP/3 Error Code space and
need to fit within those bounds, see <xref target="resetting-data-streams"/>.</t>
      <t>An endpoint that sends a WT_CLOSE_SESSION capsule MUST immediately send a FIN on
the CONNECT Stream.  The endpoint MAY also send a STOP_SENDING with error code
WT_SESSION_GONE to indicate it is no longer reading from the CONNECT stream.
The recipient MUST either close or reset the stream in response.  If any
additional stream data is received on the CONNECT stream after receiving a
WT_CLOSE_SESSION capsule, the stream MUST be reset with code H3_MESSAGE_ERROR.</t>
      <t>Cleanly terminating a CONNECT stream without a WT_CLOSE_SESSION capsule SHALL be
semantically equivalent to terminating it with a WT_CLOSE_SESSION capsule that
has an error code of 0 and an empty error string.</t>
      <t>In some scenarios, an endpoint might want to send a WT_CLOSE_SESSION with
detailed close information and then immediately close the underlying QUIC
connection.  If the endpoint were to do both of those simultaneously, the peer
could potentially receive the CONNECTION_CLOSE before receiving the
WT_CLOSE_SESSION, thus never receiving the application error data contained in
the latter.  To avoid this, the endpoint SHOULD wait until all CONNECT streams
have been closed by the peer before sending the CONNECTION_CLOSE; this gives
WT_CLOSE_SESSION properties similar to that of the QUIC CONNECTION_CLOSE
mechanism as a best-effort mechanism of delivering application close metadata.</t>
    </section>
    <section anchor="considerations-for-future-versions">
      <name>Considerations for Future Versions</name>
      <t>Future versions of WebTransport that change the syntax of the CONNECT requests
used to establish WebTransport sessions will need to modify the upgrade token
used to identify WebTransport, allowing servers to offer multiple versions
simultaneously (see <xref target="upgrade-token"/>).</t>
      <t>Servers that support future incompatible versions of WebTransport signal that
support by changing the codepoint used for the SETTINGS_WT_ENABLED setting (see
<xref target="http3-settings"/>).  Clients can select the associated upgrade token, if
applicable, to use when establishing a new session, ensuring that servers will
always know the syntax in use for every incoming request.</t>
      <t>Changes to future stream formats require changes to the Unidirectional Stream
type (see <xref target="unidirectional-streams"/>) and Bidirectional Stream signal value
(see <xref target="bidirectional-streams"/>) to allow recipients of incoming frames to
determine the WebTransport version, and corresponding wire format, used for the
session associated with that stream.</t>
      <section anchor="negotiating-draft-version">
        <name>Negotiating the Draft Version</name>
        <t>[[RFC editor: please remove this section before publication.]]</t>
        <t>The wire format aspects of the protocol are negotiated by changing the codepoint
used for the SETTINGS_WT_ENABLED setting.  Each draft version defines a distinct
codepoint for SETTINGS_WT_ENABLED.  Both the client and the server MUST send
SETTINGS_WT_ENABLED with the codepoint corresponding to their supported draft
version.  An endpoint that supports multiple draft versions sends a
SETTINGS_WT_ENABLED value for each supported version, as each version uses a
different setting identifier.  The highest version supported by both endpoints
is selected.</t>
        <t>Because data streams can arrive at the server before the CONNECT request that
establishes the associated session, and the wire format of the stream header
depends on the negotiated version, the server needs to know the client's version
before processing any incoming WebTransport streams.  For this reason, the
server MUST NOT process any incoming WebTransport requests until the client's
SETTINGS have been received.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>WebTransport over HTTP/3 satisfies all of the security requirements imposed by
<xref target="OVERVIEW"/> on WebTransport protocols, thus providing a secure framework for
client-server communication in cases when the application is potentially
untrusted.</t>
      <t>WebTransport over HTTP/3 requires explicit opt-in through the use of an HTTP/3
setting; this avoids potential protocol confusion attacks by ensuring the HTTP/3
server explicitly supports it.  It also requires the use of the Origin header
for browser traffic, providing the server with the ability to deny access to
Web-based applications that do not originate from a trusted origin.</t>
      <t>Just like HTTP traffic going over HTTP/3, WebTransport pools traffic to
different origins within a single connection.  Different origins imply different
trust domains, meaning that the implementations have to treat each transport as
potentially hostile towards others on the same connection.  One potential attack
is a resource exhaustion attack: since all of the WebTransport sessions share
both congestion control and flow control context, a single application
aggressively using up those resources can cause other sessions to stall.  A
WebTransport endpoint MUST implement flow control mechanisms if it allows a
WebTransport session to share the transport connection with other WebTransport
sessions.  WebTransport endpoints SHOULD implement a fairness scheme that
ensures that each session that shares a transport connection gets a reasonable
share of controlled resources; this applies both to sending data and to opening
new streams.</t>
      <t>An application could attempt to exhaust resources by opening too many
WebTransport sessions at once.  In cases when the application is untrusted, a
WebTransport client SHOULD limit the number of outgoing sessions it will open.</t>
      <t>Note that the security considerations of HTTP/3 <xref target="HTTP3"/> apply to WebTransport
over HTTP/3.  In particular, the denial-of-service considerations in
<xref section="10.5" sectionFormat="of" target="HTTP3"/> are relevant.  WebTransport extends HTTP/3 with
additional features that have legitimate uses but can become a burden when they
are used unnecessarily or to excess.</t>
      <t>WebTransport introduces new interaction modes that permit either endpoint to
send streams and datagrams to its peer.  This is particularly novel for clients,
which previously had limited exposure to unsolicited server-initiated traffic
beyond server push (see <xref section="4.6" sectionFormat="of" target="HTTP3"/>).  An endpoint that does not
monitor use of these features exposes itself to a risk of denial-of-service
attack.  Implementations SHOULD track the use of WebTransport features, such as
the number of incoming streams and datagrams, and set limits on their use.  An
endpoint MAY treat activity that is suspicious as a connection error of type
H3_EXCESSIVE_LOAD.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document registers an upgrade token (<xref target="upgrade-token"/>), HTTP/3
settings (<xref target="http3-settings"/>), an HTTP/3 stream type
(<xref target="iana-stream-type"/>), an HTTP/3 error code (<xref target="iana-error-code"/>),
and an HTTP header field (<xref target="iana-http"/>).</t>
      <section anchor="upgrade-token">
        <name>Upgrade Token Registration</name>
        <t>The following entry is added to the "Hypertext Transfer Protocol (HTTP) Upgrade
Token Registry" registry established by Section 16.7 of <xref target="HTTP"/>.</t>
        <t>The "webtransport-h3" label identifies HTTP/3 used as a protocol for
WebTransport:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>webtransport-h3</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport over HTTP/3</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="http3-settings">
        <name>HTTP/3 SETTINGS Parameter Registration</name>
        <t>The following entry is added to the "HTTP/3 Settings" registry established by
<xref target="HTTP3"/>:</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t>SETTINGS_WT_ENABLED</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2c7cf000</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Setting Name:</dt>
          <dd>
            <t>SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b64</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Setting Name:</dt>
          <dd>
            <t>SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b65</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Setting Name:</dt>
          <dd>
            <t>SETTINGS_WT_INITIAL_MAX_DATA</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b61</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
        </dl>
      </section>
      <section anchor="frame-type-registration">
        <name>Frame Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Frame Type" registry established by
<xref target="HTTP3"/>:</t>
        <t>The <tt>WT_STREAM</tt> frame is reserved for the purpose of avoiding
collision with WebTransport HTTP/3 extensions:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>0x41</t>
          </dd>
          <dt>Frame Type:</dt>
          <dd>
            <t>WT_STREAM</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-stream-type">
        <name>Stream Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Stream Type" registry established by
<xref target="HTTP3"/>:</t>
        <t>The "WebTransport stream" type allows unidirectional streams to be used by
WebTransport:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>0x54</t>
          </dd>
          <dt>Stream Type:</dt>
          <dd>
            <t>WebTransport stream</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Sender:</dt>
          <dd>
            <t>Both</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-error-code">
        <name>HTTP/3 Error Code Registration</name>
        <t>The following entries are added to the "HTTP/3 Error Code" registry established
by <xref target="HTTP3"/>:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>WT_BUFFERED_STREAM_REJECTED</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x3994bd84</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport data stream rejected due to lack of associated session.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WT_SESSION_GONE</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x170d7b68</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport data stream aborted because the associated WebTransport session
has been closed.  Also used to indicate that the endpoint is no longer
reading from the CONNECT stream.</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WT_FLOW_CONTROL_ERROR</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x045d4487</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport session aborted because a flow control error was encountered.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WT_ALPN_ERROR</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x0817b3dd</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport session aborted because application protocol negotiation failed.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WT_REQUIREMENTS_NOT_MET</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x212c0d48</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>HTTP/3 connection closed because the features required for WebTransport are
not supported.  Either the client or server is missing required SETTINGS or
transport parameters needed for WebTransport.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
        </dl>
        <t>In addition, the following range of entries is registered:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>WT_APPLICATION_ERROR</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x52e4a40fa8db to 0x52e5ac983162 inclusive, with the exception of
the codepoints of form 0x1f * N + 0x21.</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport application error codes.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-types">
        <name>Capsule Types</name>
        <t>The following entries are added to the "HTTP Capsule Types" registry established
by <xref target="HTTP-DATAGRAM"/>:</t>
        <t>The <tt>WT_CLOSE_SESSION</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x2843</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t>WT_CLOSE_SESSION</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_DRAIN_SESSION</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x78ae</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t>WT_DRAIN_SESSION</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>provisional (when this document is approved this will become permanent)</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_MAX_STREAMS</tt> capsule:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D3F..0x190B4D40</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_STREAMS_BLOCKED</tt> capsule:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D43..0x190B4D44</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_MAX_DATA</tt> capsule:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D3D</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_DATA_BLOCKED</tt> capsule:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D41</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-http">
        <name>Protocol Negotiation HTTP Header Fields</name>
        <t>The following HTTP header fields are used for negotiating a protocol
(<xref target="protocol-negotiation"/>).  These are added to the "HTTP Field Name" registry
established in <xref section="18.4" sectionFormat="of" target="HTTP"/>:</t>
        <t>The <tt>WT-Available-Protocols</tt> field:</t>
        <dl spacing="compact">
          <dt>Field Name:</dt>
          <dd>
            <t>WT-Available-Protocols</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Structured Type:</dt>
          <dd>
            <t>List</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="protocol-negotiation"/></t>
          </dd>
          <dt>Comments:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT-Protocol</tt> field:</t>
        <dl spacing="compact">
          <dt>Field Name:</dt>
          <dd>
            <t>WT-Protocol</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Structured Type:</dt>
          <dd>
            <t>Item</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="protocol-negotiation"/></t>
          </dd>
          <dt>Comments:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="OVERVIEW">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   The WebTransport Protocol Framework enables clients constrained by
   the Web security model to communicate with a remote server using a
   secure multiplexed transport.  It consists of a set of individual
   protocols that are safe to expose to untrusted applications, combined
   with an abstract model that allows them to be used interchangeably.

   This document defines the overall requirements on the protocols used
   in WebTransport, as well as the common features of the protocols,
   support for some of which may be optional.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-11"/>
        </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="RFC9000">
          <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="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="RFC9114">
          <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="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC9220">
          <front>
            <title>Bootstrapping WebSockets with HTTP/3</title>
            <author fullname="R. Hamilton" initials="R." surname="Hamilton"/>
            <date month="June" 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="RFC" value="9220"/>
          <seriesInfo name="DOI" value="10.17487/RFC9220"/>
        </reference>
        <reference anchor="HTTP-DATAGRAM">
          <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="QUIC-DATAGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <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>
        <reference anchor="RESET-STREAM-AT">
          <front>
            <title>QUIC Stream Resets with Partial Delivery</title>
            <author fullname="Marten Seemann" initials="M." surname="Seemann">
         </author>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <date day="14" month="June" year="2025"/>
            <abstract>
              <t>   QUIC defines a RESET_STREAM frame to abort sending on a stream.  When
   a sender resets a stream, it also stops retransmitting STREAM frames
   for this stream in the event of packet loss.  On the receiving side,
   there is no guarantee that any data sent on that stream is delivered.

   This document defines a new QUIC frame, the RESET_STREAM_AT frame,
   that allows resetting a stream, while guaranteeing delivery of stream
   data up to a certain byte offset.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-reliable-stream-reset-07"/>
        </reference>
        <reference anchor="RFC8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <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="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <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.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="FIELDS">
          <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="September" year="2024"/>
            <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.</t>
              <t>This document obsoletes RFC 8941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9651"/>
          <seriesInfo name="DOI" value="10.17487/RFC9651"/>
        </reference>
        <reference anchor="RFC9218">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="K. Oku" initials="K." surname="Oku"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes a scheme that allows an HTTP client to communicate its preferences for how the upstream server prioritizes responses to its requests, and also allows a server to hint to a downstream intermediary how its responses should be prioritized when they are forwarded. This document defines the Priority header field for communicating the initial priority in an HTTP version-independent manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing responses. These share a common format structure that is designed to provide future extensibility.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9218"/>
          <seriesInfo name="DOI" value="10.17487/RFC9218"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9308">
          <front>
            <title>Applicability of the QUIC Transport Protocol</title>
            <author fullname="M. Kühlewind" initials="M." surname="Kühlewind"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <date month="September" year="2022"/>
            <abstract>
              <t>This document discusses the applicability of the QUIC transport protocol, focusing on caveats impacting application protocol development and deployment over QUIC. Its intended audience is designers of application protocol mappings to QUIC and implementors of these application protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9308"/>
          <seriesInfo name="DOI" value="10.17487/RFC9308"/>
        </reference>
        <reference anchor="RFC9208">
          <front>
            <title>IMAP QUOTA Extension</title>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines a QUOTA extension of the Internet Message Access Protocol (IMAP) (see RFCs 3501 and 9051) that permits administrative limits on resource usage (quotas) to be manipulated through the IMAP protocol.</t>
              <t>This document obsoletes RFC 2087 but attempts to remain backwards compatible whenever possible.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9208"/>
          <seriesInfo name="DOI" value="10.17487/RFC9208"/>
        </reference>
        <reference anchor="ORIGIN">
          <front>
            <title>The WebSocket Protocol</title>
            <author fullname="I. Fette" initials="I." surname="Fette"/>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <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 s and long polling). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6455"/>
          <seriesInfo name="DOI" value="10.17487/RFC6455"/>
        </reference>
        <reference anchor="WEBTRANS-H2">
          <front>
            <title>WebTransport over HTTP/2</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook Inc.</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <author fullname="Guowu Xie" initials="G." surname="Xie">
              <organization>Facebook Inc.</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   WebTransport defines a set of low-level communications features
   designed for client-server interactions that are initiated by Web
   clients.  This document describes a protocol that can provide many of
   the capabilities of WebTransport over HTTP/2.  This protocol enables
   the use of WebTransport when a UDP-based protocol is not available.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-13"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="I-D.ietf-httpapi-ratelimit-headers">
          <front>
            <title>RateLimit header fields for HTTP</title>
            <author fullname="Roberto Polli" initials="R." surname="Polli">
              <organization>Team Digitale, Italian Government</organization>
            </author>
            <author fullname="Alex Martínez Ruiz" initials="A. M." surname="Ruiz">
              <organization>Red Hat</organization>
            </author>
            <author fullname="Darrel Miller" initials="D." surname="Miller">
              <organization>Microsoft</organization>
            </author>
            <date day="27" month="September" year="2025"/>
            <abstract>
              <t>   This document defines the RateLimit-Policy and RateLimit HTTP header
   fields for servers to advertise their quota policies and the current
   service limits, thereby allowing clients to avoid being throttled.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-ratelimit-headers-10"/>
        </reference>
        <reference anchor="I-D.ietf-webtrans-http2">
          <front>
            <title>WebTransport over HTTP/2</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook Inc.</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <author fullname="Guowu Xie" initials="G." surname="Xie">
              <organization>Facebook Inc.</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   WebTransport defines a set of low-level communications features
   designed for client-server interactions that are initiated by Web
   clients.  This document describes a protocol that can provide many of
   the capabilities of WebTransport over HTTP/2.  This protocol enables
   the use of WebTransport when a UDP-based protocol is not available.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-13"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
