<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http2-04" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title abbrev="WebTransport-H2">WebTransport using HTTP/2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-04"/>
    <author initials="A." surname="Frindell" fullname="Alan Frindell">
      <organization>Facebook Inc.</organization>
      <address>
        <email>afrind@fb.com</email>
      </address>
    </author>
    <author initials="E." surname="Kinnear" fullname="Eric Kinnear">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>ekinnear@apple.com</email>
      </address>
    </author>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <author initials="V." surname="Vasiliev" fullname="Victor Vasiliev">
      <organization>Google</organization>
      <address>
        <email>vasilvv@google.com</email>
      </address>
    </author>
    <author initials="G." surname="Xie" fullname="Guowu Xie">
      <organization>Facebook Inc.</organization>
      <address>
        <email>woo@fb.com</email>
      </address>
    </author>
    <date/>
    <area>art</area>
    <workgroup>webtrans</workgroup>
    <keyword>Internet-Draft</keyword>
    <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>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the WebTransport mailing list
(<eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref>), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=webtransport"/>.</t>
      <t>The repository tracking the issues for this draft can be found at
<eref target="https://github.com/ietf-wg-webtrans/draft-webtransport-http2"/>. The web API
draft corresponding to this document can be found at
<eref target="https://w3c.github.io/webtransport/"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>WebTransport <xref target="OVERVIEW"/> is designed to provide generic communication
capabilities to Web clients that use HTTP/3 <xref target="HTTP3"/>.  The
HTTP/3 WebTransport protocol <xref target="WEBTRANSPORT-H3"/> allows Web clients to use QUIC
<xref target="QUIC"/> features such as streams or datagrams
<xref target="DATAGRAM"/>.  However, there are some environments
where QUIC cannot be deployed.</t>
      <t>This document defines a protocol that provides all of the core functions of
WebTransport using HTTP semantics. This includes unidirectional streams,
bidirectional streams, and datagrams.</t>
      <t>By relying only on generic HTTP semantics, this protocol might allow deployment
using any HTTP version.  However, this document only defines negotiation for
HTTP/2 <xref target="H2"/> as the current most common TCP-based
fallback to HTTP/3.</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 <xref section="1.2" sectionFormat="of" target="OVERVIEW"/>. Note
that this document distinguishes between a WebTransport server and an HTTP/2
server. An HTTP/2 server is the server that terminates HTTP/2 connections; a
WebTransport server is an application that accepts WebTransport sessions, which
can be accessed using HTTP/2 and this protocol.</t>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>WebTransport servers are identified by an HTTPS URI as defined in <xref section="4.2.2" sectionFormat="of" target="HTTP"/>.</t>
      <t>When an HTTP/2 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/2.</t>
      <t>A client initiates a WebTransport session by sending an extended CONNECT request
<xref target="RFC8441"/>. If the server accepts the request, a WebTransport session is
established. The stream that carries the CONNECT request is used to exchange
bidirectional data for the session. This stream will be referred to as a
<em>CONNECT stream</em>.  The stream ID of a CONNECT stream, which will be referred to
as a <em>Session ID</em>, is used to uniquely identify a given WebTransport session
within the connection.</t>
      <t>After the session is established, endpoints exchange <em>WebTransport frames</em> using
the bidirectional CONNECT stream. Within this stream, <em>WebTransport streams</em> and
<em>WebTransport datagrams</em> are multiplexed.  In HTTP/2, WebTransport frames are
carried in HTTP/2 DATA frames.  Multiple independent WebTransport sessions can
share a connection if the HTTP version supports that, as HTTP/2 does.</t>
      <t>WebTransport frames closely mirror a subset of QUIC frames and provide the
essential WebTransport features.  Within a WebTransport session, endpoints can</t>
      <ul spacing="normal">
        <li>create and use bidirectional or unidirectional streams with no additional
round trips using <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames</li>
      </ul>
      <t>Stream creation and data flow on streams uses flow control mechanisms modeled on
those in QUIC. Flow control is managed using the WebTransport frames:
<xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref><iref item="WT_MAX_DATA"/>, <xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref><iref item="WT_MAX_STREAM_DATA"/>, <xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref><iref item="WT_MAX_STREAMS"/>, <xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref><iref item="WT_DATA_BLOCKED"/>,
<xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref><iref item="WT_STREAM_DATA_BLOCKED"/>, and <xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref><iref item="WT_STREAMS_BLOCKED"/>. Flow control for the CONNECT
stream as a whole, as provided by the HTTP version in use, applies in addition
to any WebTransport-session-level flow control.</t>
      <t>WebTransport streams can be aborted using a <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/> frame and a receiver
can request that a sender stop sending with a <xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref><iref item="WT_STOP_SENDING"/> frame.</t>
      <t>A WebTransport session is terminated when the CONNECT stream that created it is
closed. This implicitly closes all WebTransport streams that were
multiplexed over that CONNECT stream.</t>
    </section>
    <section anchor="session-establishment">
      <name>Session Establishment</name>
      <section anchor="establishing-a-transport-capable-http2-connection">
        <name>Establishing a Transport-Capable HTTP/2 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. Endpoints MUST NOT use any WebTransport-related functionality unless the
parameter has been negotiated.</t>
      </section>
      <section anchor="extended-connect-in-http2">
        <name>Extended CONNECT in HTTP/2</name>
        <t><xref target="RFC8441"/> defines an extended CONNECT method in <xref target="features"/>, enabled by the
SETTINGS_ENABLE_CONNECT_PROTOCOL parameter. An endpoint does not need to send
both SETTINGS_ENABLE_CONNECT_PROTOCOL and SETTINGS_ENABLE_WEBTRANSPORT; the
SETTINGS_ENABLE_WEBTRANSPORT setting implies that an endpoint supports extended
CONNECT.</t>
      </section>
      <section anchor="creating-a-new-session">
        <name>Creating a New Session</name>
        <t>As WebTransport sessions are established over HTTP, they are identified
using the <tt>https</tt> URI scheme <xref target="RFC7230"/>.</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"/>) MUST be set to
<tt>webtransport</tt> (<xref section="7.1" sectionFormat="of" target="WEBTRANSPORT-H3"/>). 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. In a Web context, the request MUST
include an <tt>Origin</tt> header field <xref target="ORIGIN"/> that includes the origin of
the site that requested the creation of the session.</t>
        <t>Upon receiving an extended CONNECT request with a <tt>:protocol</tt> field set to
<tt>webtransport</tt>, the HTTP server checks if the identified resource supports
WebTransport sessions. If the resource does not, the server SHOULD reply with status
code 404 (<xref section="6.5.4" sectionFormat="of" target="RFC7231"/>). To accept a WebTransport session the
server replies with 2xx status code. Before accepting a session, a server MUST
ensure that it authorizes use of the session by the site identified in the
<tt>Origin</tt> header.</t>
        <t>From the client's perspective, a WebTransport session is established when the
client receives a 200 response. From the server's perspective, a session is
established once it sends a 200 response. Both endpoints MUST NOT send any
WebTransport frames on a given session before that session is established.</t>
      </section>
      <section anchor="limiting-the-number-of-simultaneous-sessions">
        <name>Limiting the Number of Simultaneous Sessions</name>
        <t>From a flow control perspective, WebTransport sessions count against HTTP/2
session flow control limits 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 WebTransport sessions. 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_STREAM_REFUSED</tt> error code defined in <xref target="RFC7540"/> indicates to the
receiving HTTP/2 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"/>. Unlike the previous method, this signal is directly
propagated to the application.</li>
        </ul>
      </section>
    </section>
    <section anchor="features">
      <name>WebTransport Features</name>
      <t>WebTransport over TCP-based HTTP semantics provides the following features
described in <xref target="OVERVIEW"/>: unidirectional streams, bidirectional streams, and
datagrams, initiated by either endpoint.</t>
      <t>WebTransport streams and datagrams that belong to different WebTransport
sessions are identified by the CONNECT stream on which they are transmitted,
with one WebTransport session consuming one CONNECT stream.</t>
      <section anchor="transport-considerations">
        <name>Transport Considerations</name>
        <t>Because WebTransport over TCP-based HTTP semantics relies on the underlying
protocols to provide in order and reliable delivery, there are some notable
differences from the way in which QUIC handles application data.</t>
        <t>Endpoints MUST send stream data in order. As there is no ordering mechanism
available for the receiver to reassemble incoming data, receivers assume that
all data arriving in STREAM frames is contiguous and in order.</t>
        <t>DATAGRAM frames are delivered to the remote WebTransport endpoint reliably,
however this does not require that the receiving implementation deliver that
data to the application in a reliable manner.</t>
      </section>
      <section anchor="webtransport-streams">
        <name>WebTransport Streams</name>
        <t>WebTransport streams have identifiers and states that mirror the identifiers
((<xref section="2.1" sectionFormat="of" target="RFC9000"/>)) and states (<xref section="3" sectionFormat="of" target="RFC9000"/>) of QUIC
streams as closely as possible to aid in ease of implementation.</t>
        <t>WebTransport streams are identified by a numeric value, or stream ID. Stream IDs
are only meaningful within the WebTransport session in which they were created.
They share the same semantics as QUIC stream IDs, with client initiated streams
having even-numbered stream IDs and server-initiated streams having
odd-numbered stream IDs. Similarly, they can be bidirectional or
unidirectional, indicated by the second least significant bit of the
stream ID.</t>
        <t>Because WebTransport does not provide an acknowledgement mechanism for
WebTransport frames, it relies on the underlying transport's in order delivery
to inform stream state transitions. Wherever QUIC relies on receiving an ack
for a packet to transition between stream states, WebTransport performs that
transition immediately.</t>
      </section>
    </section>
    <section anchor="webtransport-frames">
      <name>WebTransport Frames</name>
      <t>WebTransport frames mirror their QUIC counterparts as closely as possible to
enable maximal reuse of any applicable QUIC infrastructure by implementors.</t>
      <t>A WebTransport frame begins with a Frame Type and Frame Length which are
followed by zero or more fields that are type-dependent.</t>
      <figure anchor="fig-wt_frame_header">
        <name>WebTransport Frame Format</name>
        <artwork><![CDATA[
Frame {
  Frame Type (i),
  Frame Length (i),
  Type-Dependent Fields (..),
}
]]></artwork>
      </figure>
      <t>The Frame Type field indicates the type of the frame, defining what
type-dependent fields will be present.</t>
      <t>The Frame Length field indicates the length of the WebTransport frame, including
all type-dependent fields and other information. It does not include the size
of the Frame Type or Frame Length fields themselves.</t>
      <t>Both of these fields use a variable-length integer encoding (see <xref section="16" sectionFormat="of" target="RFC9000"/>), with one exception. To ensure simple and efficient
implementations of frame parsing, the frame type and length MUST use the
shortest possible encoding. For example, for the frame types defined in this
document, this means a single-byte encoding, even though it is possible to
encode these values as a two-, four-, or eight-byte variable-length integer.</t>
      <section anchor="WT_PADDING">
        <name>WT_PADDING Frames</name>
        <t>A <xref target="WT_PADDING" format="none">WT_PADDING</xref><iref item="WT_PADDING"/> frame (type=0x00) has no semantic value. PADDING frames can be used
to introduce additional data between other WebTransport frames and can also be
used to provide protection against traffic analysis or for other reasons.</t>
        <figure anchor="fig-wt_padding">
          <name>WT_PADDING Frame Format</name>
          <artwork><![CDATA[
WT_PADDING Frame {
  Type (i) = 0x00,
  Length (i),
  Padding (..),
}
]]></artwork>
        </figure>
        <t>The Padding field MUST be set to an all-zero sequence of bytes of any length as
specified by the Length field.
<!-- TODO validation and error handling -->
        </t>
      </section>
      <section anchor="WT_RESET_STREAM">
        <name>WT_RESET_STREAM Frames</name>
        <t>A WebTransport frame called <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/> is introduced for either endpoint to
abruptly terminate the sending part of a WebTransport stream.</t>
        <t>An endpoint uses a <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/> frame (type=0x04) to abruptly terminate the
sending part of a stream.</t>
        <t>After sending a <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/>, an endpoint ceases transmission of <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/>
frames on the identified stream. A receiver of <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/> can discard any
data that it already received on that stream.</t>
        <figure anchor="fig-wt_reset_stream">
          <name>WT_RESET_STREAM Frame Format</name>
          <artwork><![CDATA[
WT_RESET_STREAM Frame {
  Type (i) = 0x04,
  Length (i),
  Stream ID (i),
  Application Protocol Error Code (i),
}
]]></artwork>
        </figure>
        <t>The <xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref><iref item="WT_RESET_STREAM"/> frame defines the following fields:</t>
        <dl>
          <dt>Stream ID:</dt>
          <dd>
            <t>A variable-length integer encoding of the WebTransport stream ID
   of the stream being terminated.</t>
          </dd>
          <dt>Application Protocol Error Code:</dt>
          <dd>
            <t>A variable-length integer containing the
   application protocol error code that indicates why the stream is being
   closed.</t>
          </dd>
        </dl>
        <t>Unlike the equivalent QUIC frame, this frame does not include a Final Size
field. In-order delivery of <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames ensures that the amount of
session-level flow control consumed by a stream is always known by both
endpoints.</t>
      </section>
      <section anchor="WT_STOP_SENDING">
        <name>WT_STOP_SENDING Frames</name>
        <t>A WebTransport frame called <xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref><iref item="WT_STOP_SENDING"/> is introduced to communicate that
incoming data is being discarded on receipt per application request.
<xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref><iref item="WT_STOP_SENDING"/> requests that a peer cease transmission on a stream.</t>
        <figure anchor="fig-wt_stop_sending">
          <name>WT_STOP_SENDING Frame Format</name>
          <artwork><![CDATA[
WT_STOP_SENDING Frame {
  Type (i) = 0x05,
  Length (i),
  Stream ID (i),
  Application Protocol Error Code (i),
}
]]></artwork>
        </figure>
        <t>The <xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref><iref item="WT_STOP_SENDING"/> frame defines the following fields:</t>
        <dl>
          <dt>Stream ID:</dt>
          <dd>
            <t>A variable-length integer carrying the WebTransport stream ID of
   the stream being ignored.</t>
          </dd>
          <dt>Application Protocol Error Code:</dt>
          <dd>
            <t>A variable-length integer containing the
   application-specified reason the sender is ignoring the stream.</t>
          </dd>
        </dl>
      </section>
      <section anchor="WT_STREAM">
        <name>WT_STREAM Frames</name>
        <t><xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames implicitly create a stream and carry stream data.</t>
        <t>The Type field in the <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frame is either 0x0a or 0x0b.  This uses the
same frame types as a QUIC STREAM frame with the OFF bit clear and the LEN bit
set.  The FIN bit (0x01) in the frame type indicates that the frame marks the
end of the stream in one direction.  Stream data consists of any number of 0x0a
frames followed by a terminal 0x0b frame.</t>
        <figure anchor="fig-wt_stream">
          <name>WT_STREAM Frame Format</name>
          <artwork><![CDATA[
WT_STREAM Frame {
  Type (i) = 0x0a..0x0b,
  Length (i),
  Stream ID (i),
  Stream Data (..),
}
]]></artwork>
        </figure>
        <t><xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames contain the following fields:</t>
        <dl>
          <dt>Stream ID:</dt>
          <dd>
            <t>The stream ID for the stream.</t>
          </dd>
          <dt>Stream Data:</dt>
          <dd>
            <t>Zero or more bytes of data for the stream.  Empty <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames MUST NOT be
used unless they open or close a stream; an endpoint MAY treat an empty
<xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frame that neither starts nor ends a stream as a session error.</t>
          </dd>
        </dl>
      </section>
      <section anchor="WT_MAX_DATA">
        <name>WT_MAX_DATA Frames</name>
        <t>A WebTransport frame called <xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref><iref item="WT_MAX_DATA"/> is introduced to inform the peer of the
maximum amount of data that can be sent on the WebTransport session as a
whole.</t>
        <figure anchor="fig-wt_max_data">
          <name>WT_MAX_DATA Frame Format</name>
          <artwork><![CDATA[
WT_MAX_DATA Frame {
  Type (i) = 0x10,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref><iref item="WT_MAX_DATA"/> frames 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 connection, in units of bytes.</t>
          </dd>
        </dl>
        <t>All data sent in <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames counts toward this limit. The sum of the
lengths of Stream Data fields in <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames MUST NOT exceed the value
advertised by a receiver.</t>
      </section>
      <section anchor="WT_MAX_STREAM_DATA">
        <name>WT_MAX_STREAM_DATA Frames</name>
        <t>A WebTransport frame called <xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref><iref item="WT_MAX_STREAM_DATA"/> is introduced to inform a peer of
the maximum amount of data that can be sent on a stream.</t>
        <figure anchor="fig-wt_max_stream_data">
          <name>WT_MAX_STREAM_DATA Frame Format</name>
          <artwork><![CDATA[
WT_MAX_STREAM_DATA Frame {
  Type (i) = 0x11,
  Length (i),
  Stream ID (i),
  Maximum Stream Data (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref><iref item="WT_MAX_STREAM_DATA"/> frames contain the following fields:</t>
        <dl>
          <dt>Stream ID:</dt>
          <dd>
            <t>The stream ID of the affected WebTransport stream, encoded as a
   variable-length integer.</t>
          </dd>
          <dt>Maximum Stream Data:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum amount
   of data that can be sent on the identified stream, in units of bytes.</t>
          </dd>
        </dl>
        <t>All data sent in <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames for the identified stream counts toward this
limit. The sum of the lengths of Stream Data fields in <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frames on the
identified stream MUST NOT exceed the value advertised by a receiver.</t>
      </section>
      <section anchor="WT_MAX_STREAMS">
        <name>WT_MAX_STREAMS Frames</name>
        <t>A WebTransport frame called <xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref><iref item="WT_MAX_STREAMS"/> is introduced to inform the peer of
the cumulative number of streams of a given type it is permitted to open. A
<xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref><iref item="WT_MAX_STREAMS"/> frame with a type of 0x12 applies to bidirectional streams, and
a <xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref><iref item="WT_MAX_STREAMS"/> frame with a type of 0x13 applies to unidirectional streams.</t>
        <figure anchor="fig-wt_max_streams">
          <name>WT_MAX_STREAMS Frame Format</name>
          <artwork><![CDATA[
WT_MAX_STREAMS Frame {
  Type (i) = 0x12..0x13,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref><iref item="WT_MAX_STREAMS"/> frames 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 connection.
   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>
      </section>
      <section anchor="WT_DATA_BLOCKED">
        <name>WT_DATA_BLOCKED Frames</name>
        <t>A sender SHOULD send a <xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref><iref item="WT_DATA_BLOCKED"/> frame (type=0x14) when it wishes to send
data but is unable to do so due to WebTransport session-level flow control.
<xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref><iref item="WT_DATA_BLOCKED"/> frames can be used as input to tuning of flow control
algorithms.</t>
        <figure anchor="fig-wt_data_blocked">
          <name>WT_DATA_BLOCKED Frame Format</name>
          <artwork><![CDATA[
WT_DATA_BLOCKED Frame {
  Type (i) = 0x14,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref><iref item="WT_DATA_BLOCKED"/> frames 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>
      </section>
      <section anchor="WT_STREAM_DATA_BLOCKED">
        <name>WT_STREAM_DATA_BLOCKED Frames</name>
        <t>A sender SHOULD send a <xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref><iref item="WT_STREAM_DATA_BLOCKED"/> frame (type=0x15) when it wishes
to send data but is unable to do so due to stream-level flow control. This
frame is analogous to <xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref><iref item="WT_DATA_BLOCKED"/>.</t>
        <figure anchor="fig-wt_stream_data_blocked">
          <name>WT_STREAM_DATA_BLOCKED Frame Format</name>
          <artwork><![CDATA[
WT_STREAM_DATA_BLOCKED Frame {
  Type (i) = 0x15,
  Length (i),
  Stream ID (i),
  Maximum Stream Data (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref><iref item="WT_STREAM_DATA_BLOCKED"/> frames contain the following fields:</t>
        <dl>
          <dt>Stream ID:</dt>
          <dd>
            <t>A variable-length integer indicating the WebTransport stream that
   is blocked due to flow control.</t>
          </dd>
          <dt>Maximum Stream Data:</dt>
          <dd>
            <t>A variable-length integer indicating the offset of the
   stream at which the blocking occurred.</t>
          </dd>
        </dl>
      </section>
      <section anchor="WT_STREAMS_BLOCKED">
        <name>WT_STREAMS_BLOCKED Frames</name>
        <t>A sender SHOULD send a <xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref><iref item="WT_STREAMS_BLOCKED"/> frame (type=0x16 or 0x17) when it
wishes to open a stream but is unable to do so due to the maximum stream limit
set by its peer. A <xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref><iref item="WT_STREAMS_BLOCKED"/> frame of type 0x16 is used to indicate
reaching the bidirectional stream limit, and a STREAMS_BLOCKED frame of type
0x17 is used to indicate reaching the unidirectional stream limit.</t>
        <t>A <xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref><iref item="WT_STREAMS_BLOCKED"/> frame 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 Frame Format</name>
          <artwork><![CDATA[
WT_STREAMS_BLOCKED Frame {
  Type (i) = 0x16..0x17,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
        </figure>
        <t><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref><iref item="WT_STREAMS_BLOCKED"/> frames 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 frame 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>
      </section>
      <section anchor="WT_DATAGRAM">
        <name>WT_DATAGRAM Frames</name>
        <t>The <xref target="WT_DATAGRAM" format="none">WT_DATAGRAM</xref><iref item="WT_DATAGRAM"/> frame type (0x31) is used to carry datagram traffic. Frame type
0x30 is also reserved to maintain parity with QUIC, but unused, as all
WebTransport frames MUST contain a length field.</t>
        <figure anchor="fig-wt_datagram">
          <name>WT_DATAGRAM Frame Format</name>
          <artwork><![CDATA[
WT_DATAGRAM Frame {
  Type (i) = 0x31,
  Length (i),
  Datagram Data (..),
}
]]></artwork>
        </figure>
        <t><xref target="WT_DATAGRAM" format="none">WT_DATAGRAM</xref><iref item="WT_DATAGRAM"/> frames contain the following fields:</t>
        <dl>
          <dt>Datagram Data:</dt>
          <dd>
            <t>The content of the datagram to be delivered.</t>
          </dd>
        </dl>
        <t>The data in <xref target="WT_DATAGRAM" format="none">WT_DATAGRAM</xref><iref item="WT_DATAGRAM"/> frames is not subject to flow control. The receiver MAY
discard this data if it does not have sufficient space to buffer it.</t>
        <t>An intermediary could forward the data in a <xref target="WT_DATAGRAM" format="none">WT_DATAGRAM</xref><iref item="WT_DATAGRAM"/> frame over another
protocol, such as WebTransport over HTTP/3. 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.</t>
      </section>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>An example of negotiating a WebTransport Stream on an HTTP/2 connection follows.
This example is intended to closely follow the example in <xref section="5.1" sectionFormat="of" target="RFC8441"/> to help illustrate the differences defined in this document.</t>
      <artwork><![CDATA[
[[ From Client ]]                   [[ From Server ]]

SETTINGS
SETTINGS_ENABLE_WEBTRANSPORT = 1

                                    SETTINGS
                                    SETTINGS_ENABLE_WEBTRANSPORT = 1

HEADERS + END_HEADERS
Stream ID = 3
:method = CONNECT
:protocol = webtransport
:scheme = https
:path = /
:authority = server.example.com
origin: server.example.com

                                    HEADERS + END_HEADERS
                                    Stream ID = 3
                                    :status = 200

WT_STREAM
Stream ID = 5
WebTransport Data

                                    WT_STREAM + FIN
                                    Stream ID = 5
                                    WebTransport Data

WT_STREAM + FIN
Stream ID = 5
WebTransport Data
]]></artwork>
      <t>An example of the server initiating a WebTransport Stream follows. The only
difference here is the endpoint that sends the first <xref target="WT_STREAM" format="none">WT_STREAM</xref><iref item="WT_STREAM"/> frame.</t>
      <artwork><![CDATA[
[[ From Client ]]                   [[ From Server ]]

SETTINGS
SETTINGS_ENABLE_WEBTRANSPORT = 1

                                    SETTINGS
                                    SETTINGS_ENABLE_WEBTRANSPORT = 1

HEADERS + END_HEADERS
Stream ID = 3
:method = CONNECT
:protocol = webtransport
:scheme = https
:path = /
:authority = server.example.com
origin: server.example.com
                                    HEADERS + END_HEADERS
                                    Stream ID = 3
                                    :status = 200

                                    WT_STREAM
                                    Stream ID = 2
                                    WebTransport Data

WT_STREAM + FIN
Stream ID = 2
WebTransport Data

                                    WT_STREAM + FIN
                                    Stream ID = 2
                                    WebTransport Data
]]></artwork>
    </section>
    <section anchor="session-termination">
      <name>Session Termination</name>
      <t>An WebTransport session over HTTP/2 is terminated when either endpoint closes
the stream associated with the CONNECT request that initiated the session.
Upon learning about the session being terminated, the endpoint MUST stop
sending new datagrams and reset all of the streams associated with the session.</t>
    </section>
    <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. Below are details about support in
Http2Transport for those properties.</t>
      <dl>
        <dt>Stream Independence:</dt>
        <dd>
          <t>Http2Transport does not support stream independence, as HTTP/2 inherently has
  head of line blocking.</t>
        </dd>
        <dt>Partial Reliability:</dt>
        <dd>
          <t>Http2Transport does not support partial reliability, as HTTP/2 retransmits any
lost data. This means that any datagrams sent via Http2Transport will be
retransmitted regardless of the preference of the application. The receiver
is permitted to drop them, however, if it is unable to buffer them.</t>
        </dd>
        <dt>Pooling Support:</dt>
        <dd>
          <t>Http2Transport supports pooling, as multiple transports using Http2Transport
  may share the same underlying HTTP/2 connection and therefore share a
  congestion controller and other transport context.</t>
        </dd>
        <dt>Connection Mobility:</dt>
        <dd>
          <t>Http2Transport does not support connection mobility, unless an underlying
  transport protocol that supports multipath or migration, such as MPTCP
  <xref target="MPTCP"/>, is used underneath HTTP/2 and TLS. Without such support,
  Http2Transport connections cannot survive network transitions.</t>
        </dd>
      </dl>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>WebTransport over HTTP/2 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 client is potentially untrusted.</t>
      <t>WebTransport over HTTP/2 requires explicit opt-in through the use of HTTP
SETTINGS; this avoids potential protocol confusion attacks by ensuring the
HTTP/2 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/2, 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">
      <name>IANA Considerations</name>
      <section anchor="http2-settings-parameter-registration">
        <name>HTTP/2 SETTINGS Parameter Registration</name>
        <t>The following entry is added to the "HTTP/2 Settings" registry established by
<xref target="RFC7540"/>:</t>
        <t>The <tt>SETTINGS_ENABLE_WEBTRANSPORT</tt> parameter indicates that the specified
HTTP/2 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>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="OVERVIEW">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <author fullname="Victor Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <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 a 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-04"/>
        </reference>
        <reference anchor="WEBTRANSPORT-H3">
          <front>
            <title>WebTransport over HTTP/3</title>
            <author fullname="Alan Frindell">
              <organization>Facebook</organization>
            </author>
            <author fullname="Eric Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <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/3 [HTTP3] and provides
   support for unidirectional streams, bidirectional streams and
   datagrams, all multiplexed within the same HTTP/3 connection.

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

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

 This document obsoletes RFCs 7540 and 8740.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-http2bis-07"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8441"/>
          <seriesInfo name="DOI" value="10.17487/RFC8441"/>
        </reference>
        <reference anchor="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <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>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="ORIGIN">
          <front>
            <title>The Web Origin Concept</title>
            <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>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC7231">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <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>
          <seriesInfo name="RFC" value="7231"/>
          <seriesInfo name="DOI" value="10.17487/RFC7231"/>
        </reference>
        <reference anchor="RFC7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <author fullname="M. Belshe" initials="M." surname="Belshe">
              <organization/>
            </author>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7540"/>
          <seriesInfo name="DOI" value="10.17487/RFC7540"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <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>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </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">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="DATAGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Eric Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <date day="4" month="February" 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="Internet-Draft" value="draft-ietf-quic-datagram-10"/>
        </reference>
        <reference anchor="MPTCP">
          <front>
            <title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
            <author fullname="A. Ford" initials="A." surname="Ford">
              <organization/>
            </author>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu">
              <organization/>
            </author>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <author fullname="O. Bonaventure" initials="O." surname="Bonaventure">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>TCP/IP communication is currently restricted to a single path per connection, yet multiple paths often exist between peers.  The simultaneous use of these multiple paths for a TCP/IP session would improve resource usage within the network and, thus, improve user experience through higher throughput and improved resilience to network failure.</t>
              <t>Multipath TCP provides the ability to simultaneously use multiple paths between peers.  This document presents a set of extensions to traditional TCP to support multipath operation.  The protocol offers the same type of service to applications as TCP (i.e., reliable bytestream), and it provides the components necessary to establish and use multiple TCP flows across potentially disjoint paths.  This  document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6824"/>
          <seriesInfo name="DOI" value="10.17487/RFC6824"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Anthony Chivetta, Joshua Otto, and Valentin Pistol for their
contributions in the design and implementation of this work.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
/eYMarOB+G8AX2PCuGwAAA==

-->

</rfc>
