<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.4.12 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http3-02" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.47.0 -->
  <front>
    <title abbrev="WebTransport-H3">WebTransport over HTTP/3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http3-02"/>
    <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/>
    <area>Transport</area>
    <abstract>
      <t>WebTransport <xref target="OVERVIEW" format="default"/> is a protocol framework that enables clients
constrained by the Web security model to communicate with a remote server using
a secure multiplexed transport.  This document describes a WebTransport
protocol that is based on HTTP/3 <xref target="HTTP3" format="default"/> and provides support for
unidirectional streams, bidirectional streams and datagrams, all multiplexed
within the same HTTP/3 connection.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the WebTransport mailing list
(webtransport@ietf.org), which is archived at
&lt;https://mailarchive.ietf.org/arch/search/?email_list=webtransport&gt;.</t>
      <t>The repository tracking the issues for this draft can be found at
&lt;https://github.com/ietf-wg-webtrans/draft-ietf-webtrans-http3/issues&gt;.  The
web API draft corresponding to this document can be found at
&lt;https://w3c.github.io/webtransport/&gt;.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>HTTP/3 <xref target="HTTP3" format="default"/> is a protocol defined on top of QUIC <xref target="RFC9000" format="default"/> 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" format="default"/>.  Using the mechanism described here, multiple WebTransport
instances can be multiplexed simultaneously with regular HTTP traffic on the
same HTTP/3 connection.</t>
      <section anchor="terminology" numbered="true" toc="default">
        <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" format="default"/> <xref target="RFC8174" format="default"/>
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" format="default"/>.  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.</t>
      </section>
    </section>
    <section anchor="protocol-overview" numbered="true" toc="default">
      <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" format="default"/> Sections 3.2 and 3.3 correspondingly).</t>
      <t>When an HTTP/3 connection is established, both the client and server have to
send a SETTINGS_ENABLE_WEBTRANSPORT setting in order to indicate that they
both support WebTransport over HTTP/3.</t>
      <t>WebTransport sessions are initiated inside a given HTTP/3 connection by the
client, who sends an extended CONNECT request <xref target="RFC8441" format="default"/>.  If the server
accepts the request, an 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 peers can exchange data using the
following mechanisms:</t>
      <ul spacing="normal">
        <li>A client can create a bidirectional stream using a special indefinite-length
HTTP/3 frame that transfers ownership of the stream to WebTransport.</li>
        <li>A server can create a bidirectional stream, which is possible since HTTP/3
does not define any semantics for server-initiated bidirectional streams.</li>
        <li>Both client and server can create a unidirectional stream using a special
stream type.</li>
        <li>A datagram can be sent using HTTP Datagrams
<xref target="HTTP-DATAGRAM" format="default"/>.</li>
      </ul>
      <t>An WebTransport session is terminated when the CONNECT stream that created it
is closed.</t>
    </section>
    <section anchor="session-establishment" numbered="true" toc="default">
      <name>Session Establishment</name>
      <section anchor="establishing-a-transport-capable-http3-connection" numbered="true" toc="default">
        <name>Establishing a Transport-Capable HTTP/3 Connection</name>
        <t>In order to indicate support for WebTransport, both the client and the server
MUST send a SETTINGS_ENABLE_WEBTRANSPORT value set to "1" in their SETTINGS
frame.  The SETTINGS_ENABLE_WEBTRANSPORT parameter value SHALL be either "0" or
"1", with "0" being the default; an endpoint that receives a value other
than "0" or "1" MUST close the connection with the H3_SETTINGS_ERROR error
code.</t>
        <t>The client MUST NOT send a WebTransport request until it has received the
setting indicating WebTransport support from the server.  Similarly, the server
MUST NOT process any incoming WebTransport requests until the client settings
have been received, as the client may be using a version of WebTransport
extension that is different from the one used by the server.</t>
      </section>
      <section anchor="extended-connect-in-http3" numbered="true" toc="default">
        <name>Extended CONNECT in HTTP/3</name>
        <t><xref target="RFC8441" format="default"/> defines an extended CONNECT method in Section 4, enabled by the
SETTINGS_ENABLE_CONNECT_PROTOCOL parameter.  That parameter is only defined for
HTTP/2.  This document does not create a new multi-purpose parameter to
indicate support for extended CONNECT in HTTP/3; instead, the
SETTINGS_ENABLE_WEBTRANSPORT setting implies that an endpoint supports extended
CONNECT.</t>
      </section>
      <section anchor="creating-a-new-session" numbered="true" toc="default">
        <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 target="RFC7230" format="default"/>.</t>
        <t>In order to create a new WebTransport session, a client can send an HTTP
CONNECT request.  The <tt>:protocol</tt> pseudo-header field (<xref target="RFC8441" format="default"/>) MUST be
set to <tt>webtransport</tt>.  The <tt>:scheme</tt> field MUST be <tt>https</tt>.  Both the
<tt>:authority</tt> and the <tt>:path</tt> value MUST be set; those fields indicate the
desired WebTransport server.  An <tt>Origin</tt> header <xref target="RFC6454" format="default"/> MUST be provided
within the request.</t>
        <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 (Section 6.5.4, <xref target="RFC7231" format="default"/>).
If it does, it MAY accept the session by replying with a 2xx series status
code, as defined in Section 15.3 of <xref target="SEMANTICS" format="default"/>.
The WebTransport server MUST verify the <tt>Origin</tt> header to ensure that the
specified origin is allowed to access the server in question.</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.  WebTransport over HTTP/3 does not
support 0-RTT.</t>
        <t>The <tt>webtransport</tt> HTTP Upgrade Token uses the Capsule Protocol as defined in
<xref target="HTTP-DATAGRAM" format="default"/>.</t>
      </section>
      <section anchor="limiting-the-number-of-simultaneous-sessions" numbered="true" toc="default">
        <name>Limiting the Number of Simultaneous Sessions</name>
        <t>From the flow control perspective, WebTransport sessions count against the
stream flow control just like regular HTTP requests, since they are established
via an HTTP CONNECT request.  This document does not make any effort to
introduce a separate flow control mechanism for sessions, nor to separate HTTP
requests from WebTransport data streams.  If the server needs to limit the rate
of incoming requests, it has alternative mechanisms at its disposal:</t>
        <ul spacing="normal">
          <li>
            <tt>HTTP_REQUEST_REJECTED</tt> error code defined in <xref target="HTTP3" format="default"/> indicates to the
receiving HTTP/3 stack that the request was not processed in any way.</li>
          <li>HTTP status code 429 indicates that the request was rejected due to rate
limiting <xref target="RFC6585" format="default"/>.  Unlike the previous method, this signal is directly
propagated to the application.</li>
        </ul>
      </section>
    </section>
    <section anchor="webtransport-features" numbered="true" toc="default">
      <name>WebTransport Features</name>
      <t>WebTransport over HTTP/3 provides the following features described in <xref target="OVERVIEW" format="default"/>:
unidirectional streams, bidirectional streams and datagrams, initiated by
either endpoint.</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" format="default"/>.</t>
      <t>If at any point a session ID is received that cannot a valid ID for a
client-initiated bidirectional stream, the recepient MUST close the connection
with an H3_ID_ERROR error code.</t>
      <section anchor="unidirectional-streams" numbered="true" toc="default">
        <name>Unidirectional streams</name>
        <t>Once established, both endpoints can open 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" format="default"/>).</t>
        <figure anchor="fig-unidi">
          <name>Unidirectional WebTransport stream format</name>
          <sourcecode type="drawing">
  0                   1                   2                   3
  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                           0x54 (i)                          ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                        Session ID (i)                       ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                         Stream Body                         ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
</sourcecode>
        </figure>
      </section>
      <section anchor="bidirectional-streams" numbered="true" toc="default">
        <name>Bidirectional Streams</name>
        <t>WebTransport endpoints can initiate bidirectional streams by opening an HTTP/3
bidirectional stream and sending an HTTP/3 frame with type
<tt>WEBTRANSPORT_STREAM</tt> (type=0x41).  The format of the frame SHALL be the frame
type, followed by the session ID, encoded as a variable-length integer,
followed by the user-specified stream data (<xref target="fig-bidi-client" format="default"/>).  The frame
SHALL last until the end of the stream.</t>
        <figure anchor="fig-bidi-client">
          <name>WEBTRANSPORT_STREAM frame format</name>
          <sourcecode type="drawing">
  0                   1                   2                   3
  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                           0x41 (i)                          ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                        Session ID (i)                       ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                         Stream Body                         ...
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
</sourcecode>
        </figure>
        <t>HTTP/3 does not by itself define any semantics for server-initiated
bidirectional streams.  If WebTransport setting is negotiated by both
endpoints, the syntax of the server-initiated bidirectional streams SHALL be
the same as the syntax of client-initated bidirectional streams, that is, a
sequence of HTTP/3 frames.  The only frame defined by this document for use
within server-initiated bidirectional streams is WEBTRANSPORT_STREAM.</t>
        <t>TODO: move the paragraph above into a separate draft; define what happens with
already existing HTTP/3 frames on server-initiated bidirectional streams.</t>
      </section>
      <section anchor="resetting-data-streams" numbered="true" toc="default">
        <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 SHALL 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 8-bit integer,
assuming values between 0x00 and 0xff.  WebTransport implementations SHALL
remap those error codes into an error range where 0x00 corresponds to
0x52e4a40fa8db, and 0xff corresponds to 0x52e4a40fa9e2.  Note that there are
code points inside that range of form "0x1f * N + 0x21" that are reserved by
<xref section="8.1" sectionFormat="of" target="HTTP3" format="default"/>; those have to be accounted for when mapping the error
codes by skipping them (i.e. the two HTTP/3 error codepoints adjacent to a
GREASE codepoint would map to two adjacent WebTransport application error
codepoints).  An example pseudocode can be seen in
<xref target="fig-remap-errors" format="default"/>.</t>
        <figure anchor="fig-remap-errors">
          <name>Pseudocode for converting between WebTransport application errors and HTTP/3 error codes; here, `//` is integer division</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    first = 0x52e4a40fa8db
    last = 0x52e4a40fa9e2

    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 - shifted // 0x1f
]]></artwork>
        </figure>
        <t>WebTransport data streams are associated with sessions through a header at the
beginning of the stream; resetting a stream may result in that data being
discarded.  Because of that, WebTransport application error codes are best
effort, as the WebTransport stack is not always capable of associating the
reset code with a session.  The only exception is the situation where there is
only one session on a given HTTP/3 connection, and no intermediaries between
the client and the server.</t>
        <t>WebTransport implementations SHALL forward the error code for a stream
associated with a known session to the application that owns that session;
similarly, the intermediaries SHALL reset the streams with corresponding error
code when receiving a reset from the peer.  If a WebTransport implementation
intentionally allows only one session over a given HTTP/3 connection, it SHALL
forward the error codes within WebTransport application error code range to the
application that owns the only session on that connection.</t>
      </section>
      <section anchor="datagrams" numbered="true" toc="default">
        <name>Datagrams</name>
        <t>Datagrams can be sent using HTTP Datagrams, using the WEB_TRANSPORT HTTP
Datagram Format Type (see value in <xref target="iana-format-type" format="default"/>). When using the
WEB_TRANSPORT HTTP Datagram Format Type, the WebTransport datagram payload is
sent unmodified in the "HTTP Datagram Payload" field of an HTTP Datagram. When
sending a registration capsule using the "Datagram Format Type" set to
WEB_TRANSPORT, the "Datagram Format Additional Data" field SHALL be empty.</t>
        <t>In QUIC, a datagram frame can span at most one packet.  Because of that, the
applications have to know the maximum size of the datagram they can send.
However, when proxying the datagrams, the hop-by-hop MTUs can vary.
TODO: Describe how the path MTU can be computed, specifically propagation across
HTTP proxies.</t>
      </section>
      <section anchor="buffering-incoming-streams-and-datagrams" numbered="true" toc="default">
        <name>Buffering Incoming Streams and Datagrams</name>
        <t>In WebTransport over HTTP/3, the client MAY send its SETTINGS frame, as well as
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 those can be associated with an established session.  To avoid resource
exhaustion, the 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>H3_WEBTRANSPORT_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>
    <section anchor="session-termination" numbered="true" toc="default">
      <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>the CONNECT stream is closed, either cleanly or abruptly, on either side; or</li>
        <li>a CLOSE_WEBTRANSPORT_SESSION capsule is either sent or received.</li>
      </ul>
      <t>Upon learning that the session has been terminated, the endpoint MUST reset all
of the streams associated with the session; 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 send
an HTTP capsule <xref target="HTTP-DATAGRAM" format="default"/> of type CLOSE_WEBTRANSPORT_SESSION (0x2843).
The format of the capsule SHALL be as follows:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
CLOSE_WEBTRANSPORT_SESSION Capsule {
  Type (i) = CLOSE_WEBTRANSPORT_SESSION,
  Length (i),
  Application Error Code (32),
  Application Error Message (..8192),
}
]]></artwork>
      <t>CLOSE_WEBTRANSPORT_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 connection.</t>
        </dd>
        <dt>
Application Error Message:  </dt>
        <dd>
          <t>A UTF-8 encoded error message string provided by the application closing the
connection.  The message takes up the remainer of the capsule, and its
length MUST NOT exceed 1024 bytes.</t>
        </dd>
      </dl>
      <t>A CLOSE_WEBTRANSPORT_SESSION capsule MUST be followed by a FIN on the sender
side.  If any additional stream data is received on the CONNECT stream after
CLOSE_WEBTRANSPORT_SESSION, the stream MUST be reset with code
H3_MESSAGE_ERROR.  The recipient MUST close the stream upon receiving a FIN.
If the sender of CLOSE_WEBTRANSPORT_SESSION does not receive a FIN after some
time, it SHOULD send STOP_SENDING on the CONNECT stream.</t>
      <t>Cleanly terminating a CONNECT stream without a CLOSE_WEBTRANSPORT_SESSION
capsule SHALL be semantically equivalent to terminating it with a
CLOSE_WEBTRANSPORT_SESSION capsule that has an error code of 0 and an empty
error string.</t>
    </section>
    <section anchor="negotiating-the-draft-version" numbered="true" toc="default">
      <name>Negotiating the Draft Version</name>
      <t>[[RFC editor: please remove this section before publication.]]</t>
      <t>WebTransport over HTTP/3 uses two different mechanisms to negotiate versions
for the different parts of the draft.</t>
      <t>The hop-by-hop wire format aspects of the protocol are negotiated by changing
the codepoint used for the SETTINGS_ENABLE_WEBTRANSPORT parameter.  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>
      <t>The data exchanged over the CONNECT stream is transmitted across
intermediaries, and thus cannot be versioned using a SETTINGS parameter.  To
indicate support for different versions of the protocol defined in this draft,
the clients SHALL send a header for each version of the draft supported.  The
header corresponding to the version described in this draft is
<tt>Sec-Webtransport-Http3-Draft02</tt>; its value SHALL be <tt>1</tt>.  The server SHALL
reply with a <tt>Sec-Webtransport-Http3-Draft</tt> header indicating the selected
version; its value SHALL be <tt>draft02</tt> for the version described in this draft.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>WebTransport over HTTP/3 satisfies all of the security requirements imposed by
<xref target="OVERVIEW" format="default"/> on WebTransport protocols, thus providing a secure framework for
client-server communication in cases when the client is potentially untrusted.</t>
      <t>WebTransport over HTTP/3 requires explicit opt-in through the use of a QUIC
transport parameter; this avoids potential protocol confusion attacks by
ensuring the HTTP/3 server explicitly supports it.  It also requires the use of
the Origin header, providing the server with the ability to deny access to
Web-based clients 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 transports share both congestion
control and flow control context, a single client aggressively using up those
resources can cause other transports to stall.  The user agent thus SHOULD
implement a fairness scheme that ensures that each transport within connection
gets a reasonable share of controlled resources; this applies both to sending
data and to opening new streams.</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="upgrade-token-registration" numbered="true" toc="default">
        <name>Upgrade Token Registration</name>
        <t>The following entry is added to the "Hypertext Transfer Protocol (HTTP) Upgrade
Token Registry" registry established by <xref target="RFC7230" format="default"/>:</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" format="default"/></t>
          </dd>
        </dl>
      </section>
      <section anchor="http3-settings-parameter-registration" numbered="true" toc="default">
        <name>HTTP/3 SETTINGS Parameter Registration</name>
        <t>The following entry is added to the "HTTP/3 Settings" registry established by
<xref target="HTTP3" format="default"/>:</t>
        <t>The <tt>SETTINGS_ENABLE_WEBTRANSPORT</tt> parameter indicates that the specified
HTTP/3 connection is WebTransport-capable.</t>
        <dl>
          <dt>
Setting Name:  </dt>
          <dd>
            <t>ENABLE_WEBTRANSPORT</t>
          </dd>
          <dt>
Value:  </dt>
          <dd>
            <t>0x2b603742</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" numbered="true" toc="default">
        <name>Frame Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Frame Type" registry established by
<xref target="HTTP3" format="default"/>:</t>
        <t>The <tt>WEBTRANSPORT_STREAM</tt> frame allows HTTP/3 client-initiated bidirectional
streams to be used by WebTransport:</t>
        <dl>
          <dt>
Code:  </dt>
          <dd>
            <t>0x41</t>
          </dd>
          <dt>
Frame Type:  </dt>
          <dd>
            <t>WEBTRANSPORT_STREAM</t>
          </dd>
          <dt>
Specification:  </dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="stream-type-registration" numbered="true" toc="default">
        <name>Stream Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Stream Type" registry established by
<xref target="HTTP3" format="default"/>:</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" numbered="true" toc="default">
        <name>HTTP/3 Error Code Registration</name>
        <t>The following entry is added to the "HTTP/3 Error Code" registry established by
<xref target="HTTP3" format="default"/>:</t>
        <dl>
          <dt>
Name:  </dt>
          <dd>
            <t>H3_WEBTRANSPORT_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>
        </dl>
        <t>In addition, the following range of entries is registered:</t>
        <dl>
          <dt>
Name:  </dt>
          <dd>
            <t>H3_WEBTRANSPORT_APPLICATION_00 ... H3_WEBTRANSPORT_APPLICATION_FF</t>
          </dd>
          <dt>
Value:  </dt>
          <dd>
            <t>0x52e4a40fa8db to 0x52e4a40fa9e2 inclusive, with the exception of
0x52e4a40fa8f9, 0x52e4a40fa918, 0x52e4a40fa937, 0x52e4a40fa956,
0x52e4a40fa975, 0x52e4a40fa994, 0x52e4a40fa9b3, and 0x52e4a40fa9d2.</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="iana-format-type" numbered="true" toc="default">
        <name>Datagram Format Type</name>
        <t>This document will request IANA to register WEB_TRANSPORT in the "HTTP Datagram
Format Types" registry established by <xref target="HTTP-DATAGRAM" format="default"/>.</t>
        <table anchor="iana-format-type-table" align="center">
          <name>Registered Datagram Format Type</name>
          <thead>
            <tr>
              <th align="left">Type</th>
              <th align="left">Value</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">WEB_TRANSPORT</td>
              <td align="left">0xff7c00</td>
              <td align="left">This Document</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="HTTP3">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http"/>
            <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
              <organization>Akamai</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="OVERVIEW">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-latest"/>
            <author initials="V." surname="Vasiliev" fullname="Victor Vasiliev">
              <organization>Google</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <seriesInfo name="DOI" value="10.17487/RFC9000"/>
            <seriesInfo name="RFC" value="9000"/>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <seriesInfo name="DOI" value="10.17487/RFC3986"/>
            <seriesInfo name="RFC" value="3986"/>
            <seriesInfo name="STD" value="66"/>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="RFC8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <seriesInfo name="DOI" value="10.17487/RFC8441"/>
            <seriesInfo name="RFC" value="8441"/>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP-DATAGRAM">
          <front>
            <title>Using Datagrams with HTTP</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-masque-h3-datagram-05"/>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="25" month="October" year="2021"/>
            <abstract>
              <t>   The QUIC DATAGRAM extension provides application protocols running
   over QUIC with a mechanism to send unreliable data while leveraging
   the security and congestion-control properties of QUIC.  However,
   QUIC DATAGRAM frames do not provide a means to demultiplex
   application contexts.  This document describes how to use QUIC
   DATAGRAM frames when the application protocol running over QUIC is
   HTTP/3.  It associates datagrams with client-initiated bidirectional
   streams and defines an optional additional demultiplexing layer.
   Additionally, this document defines how to convey datagrams over
   prior versions of HTTP.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <seriesInfo name="DOI" value="10.17487/RFC7230"/>
            <seriesInfo name="RFC" value="7230"/>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <seriesInfo name="DOI" value="10.17487/RFC6454"/>
            <seriesInfo name="RFC" value="6454"/>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="RFC7231">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <seriesInfo name="DOI" value="10.17487/RFC7231"/>
            <seriesInfo name="RFC" value="7231"/>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="SEMANTICS">
          <front>
            <title>HTTP Semantics</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

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

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <seriesInfo name="DOI" value="10.17487/RFC6585"/>
            <seriesInfo name="RFC" value="6585"/>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.ietf-webtrans-http2">
          <front>
            <title>WebTransport using HTTP/2</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-01"/>
            <author fullname="Alan Frindell">
              <organization>Facebook Inc.</organization>
            </author>
            <author fullname="Eric Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev">
              <organization>Google</organization>
            </author>
            <author fullname="Guowu Xie">
              <organization>Facebook Inc.</organization>
            </author>
            <date day="30" month="July" year="2021"/>
            <abstract>
              <t>   WebTransport [OVERVIEW] is a protocol framework that enables clients
   constrained by the Web security model to communicate with a remote
   server using a secure multiplexed transport.  This document describes
   a WebTransport protocol that is based on HTTP/2 [RFC7540] and
   provides support for unidirectional streams, bidirectional streams
   and datagrams, all multiplexed within the same HTTP/2 connection.

              </t>
            </abstract>
          </front>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
