<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http3-14" 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-14"/>
    <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="2025" month="October" day="20"/>
    <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="RFC9110"/>.
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>
      <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 correspondingly).</t>
        <t>When an HTTP/3 connection is established, both the client and the server send a
SETTINGS_WT_MAX_SESSIONS 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 client and server to both
signal support for WebTransport over HTTP/3 using a setting.</t>
        <t>This document defines a SETTINGS_WT_MAX_SESSIONS setting for indicating the
number of WebTransport sessions a connection supports.  The default value for
the SETTINGS_WT_MAX_SESSIONS setting is "0", meaning that the endpoint is not
willing to receive any WebTransport sessions.  Both clients and servers
supporting WebTransport over HTTP/3 MUST send the SETTINGS_WT_MAX_SESSIONS
setting with a value greater than "0".  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.
Clients also signal support for WebTransport by using the "webtransport" upgrade
token in extended CONNECT requests when establishing sessions (see
<xref target="upgrade-token"/>).</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_MAX_SESSIONS 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_WT_MAX_SESSIONS setting with a value greater than "0"</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>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.</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 settings have been received, as
the client might be using a version of the WebTransport extension that is
different from the one used by the server.</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</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</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 <tt>webtransport</tt> 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 TLS
Application-Layer Protocol Negotiation Extension (ALPN) <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.  No semantics are defined for parameters on either field;
parameters MUST be ignored.</t>
        <t>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.  Otherwise, the <tt>WT-Protocol</tt>
field MUST be ignored.</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>If at any point a session ID is received that cannot be a valid ID for a
client-initiated bidirectional stream, the recipient MUST close the connection
with an H3_ID_ERROR error code.</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 can
use the SETTINGS_WT_MAX_SESSIONS setting to indicate if pooling is supported on
a particular HTTP/3 connection (<xref target="establishing"/>).</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.</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, even if SETTINGS_WT_MAX_SESSIONS is sent with a value of "1".
Endpoints declare their intent to use flow control by taking any of the
following actions:</t>
        <ul spacing="normal">
          <li>
            <t>Sending SETTINGS_WT_MAX_SESSIONS with a value greater than "1".</t>
          </li>
          <li>
            <t>Sending <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> with any value other than "0".</t>
          </li>
          <li>
            <t>Sending <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref> with any value other than "0".</t>
          </li>
          <li>
            <t>Sending <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref> 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>The inclusion of the flow control SETTINGS in these criteria allows endpoints to
agree to explicitly enable flow control, even if only a single WebTransport
session is supported.</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>This document defines a SETTINGS_WT_MAX_SESSIONS setting that allows
the server to limit the maximum number of concurrent WebTransport sessions on a
single HTTP/3 connection.  The client MUST NOT open more simultaneous sessions
than indicated in the server SETTINGS parameter.  The server MUST NOT close
the connection if the client opens sessions exceeding this limit, as the client
and the server do not have a consistent view of how many sessions are open due
to the asynchronous nature of the protocol; instead, it MUST reset all of the
CONNECT streams it is not willing to process with the <tt>H3_REQUEST_REJECTED</tt>
status defined in <xref section="8.1" sectionFormat="of" target="HTTP3"/>.</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 the SETTINGS_WT_MAX_SESSIONS
setting and QUIC flow control's stream limits.</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 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
(<xref section="XX" sectionFormat="of" 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 <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref></t>
          </li>
          <li>
            <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> via <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref></t>
          </li>
        </ul>
      </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>
        <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.</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>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 by resetting the connect stream with the
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 <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref>.</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
STREAMS_BLOCKED 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.</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>All data sent in WT_STREAM capsules counts toward this limit. The sum of the
lengths of Stream Data fields in WT_STREAM capsules MUST NOT exceed the value
advertised by a receiver.</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 by resetting the connect stream with the 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 <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref>.</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.  <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.</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_MAX_SESSIONS
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-the-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_MAX_SESSIONS setting.  Because of that, any
WebTransport endpoint MUST wait for the peer's SETTINGS frame before sending or
processing any WebTransport traffic.  When multiple versions are supported by
both of the peers, the most recent version supported by both is selected.</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, the
WebTransport client SHOULD limit the number of outgoing sessions it will open.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <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" label identifies HTTP/3 used as a protocol for WebTransport:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>webtransport</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport over HTTP/3</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document and <xref target="I-D.ietf-webtrans-http2"/></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>
        <t>The <tt>SETTINGS_WT_MAX_SESSIONS</tt> setting indicates that the specified HTTP/3
endpoint is WebTransport-capable and the number of concurrent sessions it is
willing to receive.  The default value for the SETTINGS_WT_MAX_SESSIONS setting
is "0", meaning that the endpoint is not willing to receive any WebTransport
sessions.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t>WT_MAX_SESSIONS</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x14e9cd29</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> 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
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> 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>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b64</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref> 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
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref> 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>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b65</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_DATA">The <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref> 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 <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref>
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>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b61</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</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>Code:</dt>
          <dd>
            <t>0x41</t>
          </dd>
          <dt>Frame Type:</dt>
          <dd>
            <t>WT_STREAM</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="stream-type-registration">
        <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>Code:</dt>
          <dd>
            <t>0x54</t>
          </dd>
          <dt>Stream Type:</dt>
          <dd>
            <t>WebTransport stream</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Sender:</dt>
          <dd>
            <t>Both</t>
          </dd>
        </dl>
      </section>
      <section anchor="http3-error-code-registration">
        <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>Specification:</dt>
          <dd>
            <t>This document.</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>Specification:</dt>
          <dd>
            <t>This document.</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>Specification:</dt>
          <dd>
            <t>This document.</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>Specification:</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>Specification:</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>Specification:</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>Specification:</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>Specification:</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>Specification:</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="RFC9110">
          <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="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>
      </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="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-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="7" month="July" 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-12"/>
        </reference>
      </references>
    </references>
    <?line 1529?>

<section anchor="changelog">
      <name>Changelog</name>
      <section anchor="changes-between-draft-versions-02-and-07">
        <name>Changes between draft versions 02 and 07</name>
        <t>The following changes make the draft-02 and draft-07 versions of this protocol
incompatible:</t>
        <ul spacing="normal">
          <li>
            <t>draft-07 requires SETTINGS_WEBTRANSPORT_MAX_SESSIONS (#86) and uses it for
version negotiation (#129)</t>
          </li>
          <li>
            <t>draft-07 explicitly requires SETTINGS_ENABLE_CONNECT_PROTOCOL to be enabled
(#93)</t>
          </li>
          <li>
            <t>draft-07 explicitly requires SETTINGS_H3_DATAGRAM to be enabled (#106)</t>
          </li>
          <li>
            <t>draft-07 only allows WEBTRANSPORT_STREAM at the beginning of the stream</t>
          </li>
        </ul>
        <t>The following changes that are present in draft-07 can be also implemented by a
draft-02 implementation safely:</t>
        <ul spacing="normal">
          <li>
            <t>Expanding stream reset error code space from 8 to 32 bits (#115)</t>
          </li>
          <li>
            <t>WEBTRANSPORT_SESSION_GONE error code (#75)</t>
          </li>
          <li>
            <t>Handling for HTTP GOAWAY (#76)</t>
          </li>
          <li>
            <t>DRAIN_WEBTRANSPORT_SESSION capsule (#79)</t>
          </li>
          <li>
            <t>Disallowing following redirects automatically (#113)</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
xGXoAAA=

-->

</rfc>
