<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http2-12" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title abbrev="WebTransport-H2">WebTransport over HTTP/2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-12"/>
    <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>
      <?line 65?>

<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>
      <?line 73?>

<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>
    <?line 84?>

<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="HTTP2"/> 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, the server sends a
SETTINGS_WT_MAX_SESSIONS setting with a value greater than "0" to indicate that
it supports WebTransport over HTTP/2. The value of the setting is the number of
concurrent sessions the server is willing to receive. Note that the client does
not need to send any value to indicate support for WebTransport; clients
indicate support for WebTransport by using the "webtransport" upgrade token in
CONNECT requests establishing WebTransport sessions (<xref section="9.1" sectionFormat="of" target="WEBTRANSPORT-H3"/>).</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.  WebTransport using HTTP/2 uses extended CONNECT with
the same <tt>webtransport</tt> HTTP Upgrade Token as <xref target="WEBTRANSPORT-H3"/>.  This
Upgrade Token uses the Capsule Protocol as defined in <xref target="HTTP-DATAGRAM"/>.</t>
      <t>After the session is established, endpoints exchange WebTransport messages using
the Capsule Protocol on the bidirectional CONNECT stream, the "data stream" as
defined in <xref section="3.1" sectionFormat="of" target="HTTP-DATAGRAM"/>.</t>
      <t>Within this stream, <em>WebTransport streams</em> and <em>WebTransport datagrams</em> are
multiplexed.  In HTTP/2, WebTransport capsules 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 capsules closely mirror a subset of QUIC frames and provide the
essential WebTransport features.  Within a WebTransport session, endpoints can
create and use bidirectional or unidirectional streams with no additional round
trips using the <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule.</t>
      <t>Stream creation and data flow on streams uses flow control mechanisms modeled on
those in QUIC. Flow control is managed using the WebTransport capsules:
<iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>, <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref>, <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>, <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref>,
<iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref>, and <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref>. 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 <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule and a
receiver can request that a sender stop sending with a <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref>
capsule.</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-and-termination">
      <name>Session Establishment and Termination</name>
      <t>A WebTransport session is a communication context between a client and server
<xref target="OVERVIEW"/>. This section describes how sessions begin and end.</t>
      <section anchor="establishing-a-webtransport-capable-http2-connection">
        <name>Establishing a WebTransport-Capable HTTP/2 Connection</name>
        <t>In order to indicate support for WebTransport, the server MUST send a
SETTINGS_WT_MAX_SESSIONS value greater than "0" in its SETTINGS frame.  The
client MUST NOT send a WebTransport request until it has received the setting
indicating WebTransport support from the server.</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. A server supporting WebTransport
needs to send both the SETTINGS_WT_MAX_SESSIONS setting with a value greater
than "0" and the SETTINGS_ENABLE_CONNECT_PROTOCOL setting with a value of "1"
for WebTransport to be enabled.</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 406 (<xref section="15.5.7" sectionFormat="of" target="RFC9110"/>). If it does, it MAY accept the
session by replying with a 2xx series status code, as defined in <xref section="15.3" sectionFormat="of" target="SEMANTICS"/>. 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>A WebTransport session is established when the server sends a 2xx response. A
server generates that response from the request header, not from the contents
of the request. To enable clients to resend data when attempting to
re-establish a session that was rejected by a server, a server MUST NOT process
any capsules on the request stream unless it accepts the WebTransport session.</t>
        <t>A client MAY optimistically send any WebTransport capsules associated with a
CONNECT request, without waiting for a response, to the extent allowed by flow
control. This can reduce latency for data sent by a client at the start of a
WebTransport session. For example, a client might choose to send datagrams or
flow control updates before receiving any response from the server.</t>
      </section>
      <section anchor="application-protocol-negotiation">
        <name>Application Protocol Negotiation</name>
        <t>WebTransport over HTTP/2 offers a subprotocol negotiation mechanism, similar to
TLS Application-Layer Protocol Negotiation Extension (ALPN) <xref target="RFC7301"/>; the
intent is to simplify porting pre-existing protocols that rely on this type of
functionality.</t>
        <t>The user agent MAY include a <tt>WT-Available-Protocols</tt> header field in the
CONNECT request. The <tt>WT-Available-Protocols</tt> enumerates the possible protocols
in preference order. If the server receives such a header, it MAY include a
<tt>WT-Protocol</tt> field in a successful (2xx) response. If it does, the server
MUST include a single choice from the client's list in that field. Servers MAY
reject the request if the client did not include a suitable protocol.</t>
        <t>Both <tt>WT-Available-Protocols</tt> and <tt>WT-Protocol</tt> are defined in <xref section="3.4" sectionFormat="of" target="WEBTRANSPORT-H3"/>.</t>
      </section>
      <section anchor="errors">
        <name>Session Termination and Error Handling</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.</t>
        <t>Prior to closing the stream associated with the CONNECT request, either
endpoint can send a WT_CLOSE_SESSION capsule with an application error code
and message to convey additional information about the reasons for the
closure of the session.</t>
        <t>Session errors result in the termination of a session.  Errors can be reported
using the WT_CLOSE_SESSION capsule, which includes an error code and an
optional explanatory message.</t>
        <t>An endpoint can terminate a session without sending a WT_CLOSE_SESSION capsule
by closing the HTTP/2 stream.</t>
        <t>A stream that is reset terminates the session without providing an
application-level signal, though there will be an HTTP/2 error code.</t>
        <t>This document reserves the following HTTP/2 error codes for use with reporting
WebTransport errors:</t>
        <dl>
          <dt>WEBTRANSPORT_ERROR (0xTBD):</dt>
          <dd>
            <t>This generic error can be used for errors that do not have more specific error
codes.</t>
          </dd>
          <dt>WEBTRANSPORT_STREAM_STATE_ERROR (0xTBD):</dt>
          <dd>
            <t>A stream-related capsule identified a stream that was in an invalid state.</t>
          </dd>
        </dl>
        <t>Prior terminating a stream with an error, a WT_CLOSE_SESSION capsule with an
application-specified error code MAY be sent.</t>
        <t>Session errors do not necessarily result in any change of HTTP/2 connection
state, except that an endpoint might choose to terminate a connection in
response to stream errors; see <xref section="5.4" sectionFormat="of" target="HTTP2"/>.</t>
      </section>
    </section>
    <section anchor="flow-control">
      <name>Flow Control</name>
      <t>Flow control governs the amount of resources that can be consumed or data that
can be sent. WebTransport over HTTP/2 allows a server to limit the number of
sessions that a client can create on a single connection; see
<xref target="flow-control-limit-sessions"/>.</t>
      <t>For data, there are five applicable levels of flow control for data that is sent
or received using WebTransport over HTTP/2:</t>
      <ol spacing="normal" type="1"><li>
          <t>TCP flow control.</t>
        </li>
        <li>
          <t>HTTP/2 connection flow control, which governs the total amount of data in
DATA frames for all HTTP/2 streams.</t>
        </li>
        <li>
          <t>HTTP/2 stream flow control, which limits the data on a single HTTP/2 stream.
For a WebTransport session, this includes all capsules, including those that
are exempt from WebTransport session-level flow control.</t>
        </li>
        <li>
          <t>WebTransport session-level flow control, which limits the total amount of
stream data that can be sent or received on streams within the WebTransport
session. Note that this does not limit other types of capsules within a
WebTransport session, such as control messages or datagrams.</t>
        </li>
        <li>
          <t>WebTransport stream flow control, which limits data on individual streams
within a session.</t>
        </li>
      </ol>
      <t>TCP and HTTP/2 define the first three levels of flow control. This document
defines the final two.</t>
      <section anchor="flow-control-limit-sessions">
        <name>Limiting the Number of Simultaneous Sessions</name>
        <t>This document defines a SETTINGS_WT_MAX_SESSIONS parameter that allows the
server to limit the maximum number of concurrent WebTransport sessions on a
single HTTP/2 connection.  The client MUST NOT open more concurrent sessions
than indicated by the server SETTINGS parameters.</t>
        <t>SETTINGS synchronization via acknowledgements in HTTP/2 enables both endpoints
to agree on the current value of each setting (<xref section="6.5.3" sectionFormat="of" target="HTTP2"/>).  A
WebTransport server enforces the session limit at the time a new session is
opened by comparing the number of currently open WebTransport sessions against
the currently acknowledged SETTINGS value for SETTINGS_WT_MAX_SESSIONS.  A
server that receives an incoming CONNECT stream that would cause it to exceed its
session limit MUST reset that stream with the <tt>REFUSED_STREAM</tt> error code
(<xref section="8.7" sectionFormat="of" target="HTTP2"/>).</t>
        <t>A WebTransport server that wishes to reduce the value of
SETTINGS_WT_MAX_SESSIONS to a value that is below the current number of open
sessions can either close sessions that exceed the new value or allow those
sessions to complete. Endpoints MUST NOT reduce the value of
SETTINGS_WT_MAX_SESSIONS to "0" after previously advertising a non-zero value.</t>
        <t>Just like other HTTP requests, WebTransport sessions, and data sent on those
sessions, are counted against flow control limits.  Servers that wish to limit
the rate of incoming requests on any particular session have multiple
mechanisms:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>REFUSED_STREAM</tt> error code defined in <xref section="8.7" sectionFormat="of" target="HTTP2"/>
indicates to the receiving HTTP/2 stack that the request was not processed in
any way.</t>
          </li>
          <li>
            <t>HTTP status code 429 indicates that the request was rejected due to rate
limiting <xref target="RFC6585"/>.  Unlike the previous method, this signal is directly
propagated to the application.</t>
          </li>
        </ul>
      </section>
      <section anchor="flow-control-limit-streams">
        <name>Limiting the Number of Streams Within a Session</name>
        <t>The <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule (<xref section="5.6.1" sectionFormat="of" target="WEBTRANSPORT-H3"/>) allows
each endpoint to limit the number of streams its peer is permitted to open as
part of a WebTransport session.  There is a separate limit for bidirectional
streams and for unidirectional streams.  Note that, unlike WebTransport over
HTTP/3 <xref target="WEBTRANSPORT-H3"/>, because the entire WebTransport session is
contained within HTTP/2 DATA frames on a single HTTP/2 stream, this limit is
the only mechanism for an endpoint to limit the number of WebTransport streams
that its peer can open on a session.</t>
      </section>
      <section anchor="flow-control-initial">
        <name>Initial Flow Control Limits</name>
        <t>To allow stream data to be exchanged in the same flight as the extended CONNECT
request that establishes a WebTransport session, initial flow control limits
can be exchanged via HTTP/2 SETTINGS (<xref target="flow-control-settings"/>).  Initial
values for the flow control limits can also be exchanged via the
<tt>WebTransport-Init</tt> header field on the extended CONNECT request
(<xref target="flow-control-header"/>).</t>
        <t>The limits communicated via HTTP/2 SETTINGS apply to all WebTransport sessions
opened on that HTTP/2 connection.  Limits communicated via the
<tt>WebTransport-Init</tt> header field apply only to the WebTransport session
established by the extended CONNECT request carrying that field.</t>
        <t>If both the SETTINGS and the header field are present when a WebTransport
session is established, the endpoint MUST use the greater of the two values for
each corresponding initial flow control value.  Endpoints sending the SETTINGS
and also including the header field SHOULD ensure that the header field values
are greater than or equal to the values provided in the SETTINGS.</t>
        <section anchor="flow-control-settings">
          <name>Flow Control SETTINGS</name>
          <t>Initial flow control limits can be exchanged via HTTP/2 SETTINGS
(<xref target="h2-settings"/>) by providing non-zero values for</t>
          <ul spacing="normal">
            <li>
              <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> via <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref></t>
            </li>
            <li>
              <t><iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> via <iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI</xref></t>
            </li>
            <li>
              <t><iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> via <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref></t>
            </li>
          </ul>
        </section>
        <section anchor="flow-control-header">
          <name>Flow Control Header Field</name>
          <t>The <tt>WebTransport-Init</tt> HTTP header field can be used to communicate the initial
values of the flow control windows, similar to how QUIC uses transport
parameters.  The <tt>WebTransport-Init</tt> is a Dictionary Structured Field
(<xref section="3.2" sectionFormat="of" target="RFC8941"/>).  If any of the fields cannot be parsed correctly
or do not have the correct type, the peer MUST reset the CONNECT stream.  The
following keys are defined for the <tt>WebTransport-Init</tt> header field:</t>
          <dl>
            <dt><tt>u</tt>:</dt>
            <dd>
              <t>The initial flow control limit for unidirectional streams opened by the
recipient of this header field.  MUST be an Integer.</t>
            </dd>
            <dt><tt>bl</tt>:</dt>
            <dd>
              <t>The initial flow control limit for the bidirectional streams opened by the
sender of this header field.  MUST be an Integer.</t>
            </dd>
            <dt><tt>br</tt>:</dt>
            <dd>
              <t>The initial flow control limit for the bidirectional streams opened by the
recipient of this header field.  MUST be an Integer.</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="flow-control-intermediaries">
        <name>Flow Control and Intermediaries</name>
        <t>WebTransport over HTTP/2 uses several capsules for flow control, and all of
these capsules define special intermediary handling as described in
<xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  These capsules, referred to as the "flow
control capsules" are <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>, <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref>, <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>,
<iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref>, <iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref>, and <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref>.</t>
        <t>Because flow control in WebTransport is hop-by-hop and does not provide an
end-to-end signal, intermediaries MUST consume flow control signals and express
their own flow control limits to the next hop. The intermediary can send these
signals via HTTP/3 flow control messages, HTTP/2 flow control messages, or as
WebTransport flow control capsules, where appropriate. Intermediaries are
responsible for storing any data for which they advertise flow control credit
if that data cannot be immediately forwarded to the next hop.</t>
        <t>In practice, an intermediary that translates flow control signals between
similar WebTransport protocols, such as between two HTTP/2 connections, can
often simply reexpress the same limits received on one connection directly on
the other connection.</t>
        <t>An intermediary that does not want to be responsible for storing data that
cannot be immediately sent on its translated connection would ensure that it
does not advertise a higher flow control limit on one connection than the
corresponding limit on the translated connection.</t>
      </section>
    </section>
    <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-properties">
        <name>Transport Properties</name>
        <t>The WebTransport framework <xref target="OVERVIEW"/> defines a set of optional transport
properties that clients can use to determine the presence of features which
might allow additional optimizations beyond the common set of properties
available via all WebTransport protocols.</t>
        <t>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. For example,
endpoints 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 <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules is contiguous and in order.</t>
        <t>Below are details about support in WebTransport over HTTP/2 for the properties
defined by the WebTransport framework.</t>
        <dl>
          <dt>Stream Independence:</dt>
          <dd>
            <t>WebTransport over HTTP/2 does not support stream independence, as HTTP/2
inherently has head-of-line blocking.</t>
          </dd>
          <dt>Partial Reliability:</dt>
          <dd>
            <t>WebTransport over HTTP/2 does not support partial reliability, as HTTP/2
retransmits any lost data. This means that any datagrams sent via
WebTransport over HTTP/2 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>WebTransport over HTTP/2 supports pooling, as multiple transports using
WebTransport over HTTP/2 may share the same underlying HTTP/2 connection and
therefore share a congestion controller and other transport context. Note
that WebTransport streams over HTTP/2 are contained within a single HTTP/2
stream and do not compete with other pooled WebTransport sessions for
per-stream resources.</t>
          </dd>
          <dt>Connection Mobility:</dt>
          <dd>
            <t>WebTransport over HTTP/2 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, WebTransport over HTTP/2 connections cannot survive network
transitions.</t>
          </dd>
        </dl>
      </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 capsules, 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-capsules">
      <name>WebTransport Capsules</name>
      <t>WebTransport capsules mirror their QUIC frame counterparts as closely as
possible to enable maximal reuse of any applicable QUIC infrastructure by
implementors.</t>
      <t>WebTransport capsules use the Capsule Protocol defined in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.</t>
      <section anchor="PADDING">
        <name>PADDING Capsule</name>
        <t>A <iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref> capsule is an HTTP capsule <xref target="HTTP-DATAGRAM"/> of type=0x190B4D38 and
has no semantic value. <iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref> capsules can be used to introduce additional
data between other HTTP datagrams and can also be used to provide protection
against traffic analysis or for other reasons.</t>
        <t>Note that, when used with WebTransport over HTTP/2, the <iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref> capsule exists
alongside the ability to pad HTTP/2 frames (<xref section="10.7" sectionFormat="of" target="RFC9113"/>).
HTTP/2 padding is hop-by-hop and can be modified by intermediaries, while the
<iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref> capsule traverses intermedaries. The <iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref> capsule is also
constrained to be no smaller than the capsule overhead itself.</t>
        <figure anchor="fig-padding">
          <name>PADDING Capsule Format</name>
          <artwork><![CDATA[
PADDING Capsule {
  Type (i) = 0x190B4D38,
  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.  A receiver is not obligated to verify padding
but MAY treat non-zero padding as a <xref target="errors">stream error</xref>.</t>
      </section>
      <section anchor="WT_RESET_STREAM">
        <name>WT_RESET_STREAM Capsule</name>
        <t>A <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule is an HTTP capsule <xref target="HTTP-DATAGRAM"/> of
type=0x190B4D39 and allows either endpoint to abruptly terminate the sending
part of a WebTransport stream.</t>
        <t>After sending a <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule, an endpoint ceases transmission of
<iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules on the identified stream. A receiver of a <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref>
capsule can discard any data in excess of the Reliable Size indicated, even if
that data was already received.</t>
        <t>The <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule follows the design of the QUIC RESET_STREAM_AT frame
<xref target="PARTIAL-RESET"/>.  Consequently, it
includes a Reliable Size field.  A <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule MUST be sent after
<iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules that include an amount of data equal to or in excess of the
value in the Reliable Size field.  A receiver MUST treat the receipt of a
<iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> with a Reliable Size smaller than the number of bytes it has
received on the stream as a session error.</t>
        <figure anchor="fig-wt_reset_stream">
          <name>WT_RESET_STREAM Capsule Format</name>
          <artwork><![CDATA[
WT_RESET_STREAM Capsule {
  Type (i) = 0x190B4D39,
  Length (i),
  Stream ID (i),
  Application Protocol Error Code (i),
  Reliable Size (i),
}
]]></artwork>
        </figure>
        <t>The <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule 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>
          <dt>Reliable Size:</dt>
          <dd>
            <t>A variable-length integer indicating the amount of data that needs to be
delivered to the application even though the stream is reset.</t>
          </dd>
        </dl>
        <t>Unlike the equivalent QUIC frame, this capsule does not include a Final Size
field. In-order delivery of <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules ensures that the amount of
session-level flow control consumed by a stream is always known by both
endpoints.</t>
        <t>A <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule MUST NOT be sent after a stream is closed or reset.
While QUIC permits redundant RESET_STREAM frames, the ordering guarantee in
HTTP/2 makes this unnecessary.  A <xref target="errors">stream error</xref> of type
WEBTRANSPORT_STREAM_STATE_ERROR MUST be sent if a <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule is
received for a stream that is not in a valid state.</t>
      </section>
      <section anchor="WT_STOP_SENDING">
        <name>WT_STOP_SENDING Capsule</name>
        <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> (type=0x190B4D3A) is
introduced to communicate that incoming data is being discarded on receipt per
application request. <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> requests that a peer cease transmission on
a WebTransport stream.</t>
        <figure anchor="fig-wt_stop_sending">
          <name>WT_STOP_SENDING Capsule Format</name>
          <artwork><![CDATA[
WT_STOP_SENDING Capsule {
  Type (i) = 0x190B4D3A,
  Length (i),
  Stream ID (i),
  Application Protocol Error Code (i),
}
]]></artwork>
        </figure>
        <t>The <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> capsule 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>
        <t>A <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> capsule MUST NOT be sent multiple times for the same stream.
While QUIC permits redundant STOP_SENDING frames, the ordering guarantee in
HTTP/2 makes this unnecessary.  A <xref target="errors">stream error</xref> of type
WEBTRANSPORT_STREAM_STATE_ERROR MUST be sent if a second <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> capsule
is received.</t>
      </section>
      <section anchor="WT_STREAM">
        <name>WT_STREAM Capsule</name>
        <t><iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules implicitly create a WebTransport stream and carry stream
data.</t>
        <t>The Type field in the <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule is either 0x190B4D3B or 0x190B4D3C.  The
least significant bit in the capsule type is the FIN bit (0x01), indicating
when set that the capsule marks the end of the stream in one direction.  Stream
data consists of any number of 0x190B4D3B capsules followed by a terminal
0x190B4D3C capsule.</t>
        <figure anchor="fig-wt_stream">
          <name>WT_STREAM Capsule Format</name>
          <artwork><![CDATA[
WT_STREAM Capsule {
  Type (i) = 0x190B4D3B..0x190B4D3C,
  Length (i),
  Stream ID (i),
  Stream Data (..),
}
]]></artwork>
        </figure>
        <t><iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules 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 <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules MUST NOT
be used unless they open or close a stream; an endpoint MAY treat an empty
<iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule that neither starts nor ends a stream as a session error.</t>
          </dd>
        </dl>
        <t>A <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule MUST NOT be sent after a stream is closed or reset.  While
QUIC permits redundant STREAM frames, the ordering guarantee in HTTP/2 makes
this unnecessary.  A <xref target="errors">stream error</xref> of type
WEBTRANSPORT_STREAM_STATE_ERROR MUST be sent if a <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule is received
for a stream that is not in a valid state.</t>
      </section>
      <section anchor="WT_MAX_DATA">
        <name>WT_MAX_DATA Capsule</name>
        <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> (type=0x190B4D3D)
(<xref section="5.4.3" sectionFormat="of" target="WEBTRANSPORT-H3"/>) is used 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 Capsule Format</name>
          <artwork><![CDATA[
WT_MAX_DATA Capsule {
  Type (i) = 0x190B4D3D,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsules contain the following field:</t>
        <dl>
          <dt>Maximum Data:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum amount of data that can be
sent on the entire connection, in units of bytes.</t>
          </dd>
        </dl>
        <t>All data sent in <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules counts toward this limit. The sum of the
lengths of Stream Data fields in <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules MUST NOT exceed the value
advertised by a receiver.</t>
        <t>The <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule defines special intermediary handling, as described in
<xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>
capsules for flow control purposes and MUST generate and send appropriate flow
control signals for their limits; see <xref target="flow-control-intermediaries"/>.</t>
        <t>The initial value for this limit MAY be communicated by sending a non-zero value
for <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref>.</t>
      </section>
      <section anchor="WT_MAX_STREAM_DATA">
        <name>WT_MAX_STREAM_DATA Capsule</name>
        <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> (type=0x190B4D3E) is
introduced to inform a peer of the maximum amount of data that can be sent on a
WebTransport stream.</t>
        <figure anchor="fig-wt_max_stream_data">
          <name>WT_MAX_STREAM_DATA Capsule Format</name>
          <artwork><![CDATA[
WT_MAX_STREAM_DATA Capsule {
  Type (i) = 0x190B4D3E,
  Length (i),
  Stream ID (i),
  Maximum Stream Data (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsules 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 <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules for the identified stream counts toward this
limit. The sum of the lengths of Stream Data fields in <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsules on
the identified stream MUST NOT exceed the value advertised by a receiver.</t>
        <t>The <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume
<iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsules for flow control purposes and MUST generate and
send appropriate flow control signals for their limits; see
<xref target="flow-control-intermediaries"/>.</t>
        <t>Initial values for this limit for unidirectional and bidirectional streams MAY
be communicated by sending non-zero values for
<iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI</xref> respectively.</t>
        <t>A <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsule MUST NOT be sent after a sender requests that a
stream be closed with <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref>.  While QUIC permits redundant
MAX_STREAM_DATA frames, the ordering guarantee in HTTP/2 makes this unnecessary.
A <xref target="errors">stream error</xref> of type WEBTRANSPORT_STREAM_STATE_ERROR MUST be sent
if a <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsule is received after a <iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref> capsule for
the same stream.</t>
      </section>
      <section anchor="WT_MAX_STREAMS">
        <name>WT_MAX_STREAMS Capsule</name>
        <t>An HTTP capsule <xref target="HTTP-DATAGRAM"/> called <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> is defined by <xref section="5.6.1" sectionFormat="of" target="WEBTRANSPORT-H3"/> to inform the peer of the cumulative number of
streams of a given type it is permitted to open.  A <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule with
a type of 0x190B4D3F applies to bidirectional streams, and a <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref>
capsule with a type of 0x190B4D40 applies to unidirectional streams.</t>
        <t>Note that, because Maximum Streams is a cumulative value representing the total
allowed number of streams, including previously closed streams, endpoints
repeatedly send new <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules with increasing Maximum Streams
values as streams are opened.</t>
        <figure anchor="fig-wt_max_streams">
          <name>WT_MAX_STREAMS Capsule Format</name>
          <artwork><![CDATA[
WT_MAX_STREAMS Capsule {
  Type (i) = 0x190B4D3F..0x190B4D40,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules contain the following field:</t>
        <dl>
          <dt>Maximum Streams:</dt>
          <dd>
            <t>A count of the cumulative number of streams of the corresponding type that
can be opened over the lifetime of the 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>
        <t>The <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume
<iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules for flow control purposes and MUST generate and
send appropriate flow control signals for their limits.</t>
        <t>Initial values for these limits MAY be communicated by sending non-zero values
for <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> and
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref>.</t>
      </section>
      <section anchor="WT_DATA_BLOCKED">
        <name>WT_DATA_BLOCKED Capsule</name>
        <t>A sender SHOULD send a <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsule (type=0x190B4D41) (<xref section="5.6.4" sectionFormat="of" target="WEBTRANSPORT-H3"/>) when it wishes to send data but is unable to do so
due to WebTransport session-level flow control.  <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules can be
used as input to tuning of flow control algorithms.</t>
        <figure anchor="fig-wt_data_blocked">
          <name>WT_DATA_BLOCKED Capsule Format</name>
          <artwork><![CDATA[
WT_DATA_BLOCKED Capsule {
  Type (i) = 0x190B4D41,
  Length (i),
  Maximum Data (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules contain the following field:</t>
        <dl>
          <dt>Maximum Data:</dt>
          <dd>
            <t>A variable-length integer indicating the session-level limit at which
blocking occurred.</t>
          </dd>
        </dl>
        <t>The <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume
<iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref> capsules for flow control purposes and MUST generate and
send appropriate flow control signals for their limits; see
<xref target="flow-control-intermediaries"/>.</t>
      </section>
      <section anchor="WT_STREAM_DATA_BLOCKED">
        <name>WT_STREAM_DATA_BLOCKED Capsule</name>
        <t>A sender SHOULD send a <iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsule (type=0x190B4D42) when it
wishes to send data but is unable to do so due to stream-level flow control.
This capsule is analogous to <iref item="WT_DATA_BLOCKED"/><xref target="WT_DATA_BLOCKED" format="none">WT_DATA_BLOCKED</xref>.</t>
        <figure anchor="fig-wt_stream_data_blocked">
          <name>WT_STREAM_DATA_BLOCKED Capsule Format</name>
          <artwork><![CDATA[
WT_STREAM_DATA_BLOCKED Capsule {
  Type (i) = 0x190B4D42,
  Length (i),
  Stream ID (i),
  Maximum Stream Data (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsules 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>
        <t>The <iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume
<iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsules for flow control purposes and MUST generate and
send appropriate flow control signals for their limits; see
<xref target="flow-control-intermediaries"/>.</t>
        <t>A <iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsule MUST NOT be sent after a stream is closed or
reset.  While QUIC permits redundant STREAM_DATA_BLOCKED frames, the ordering
guarantee in HTTP/2 makes this unnecessary.  A <xref target="errors">stream error</xref> of type
WEBTRANSPORT_STREAM_STATE_ERROR MUST be sent if a <iref item="WT_STREAM_DATA_BLOCKED"/><xref target="WT_STREAM_DATA_BLOCKED" format="none">WT_STREAM_DATA_BLOCKED</xref> capsule
is received for a stream that is not in a valid state.</t>
      </section>
      <section anchor="WT_STREAMS_BLOCKED">
        <name>WT_STREAMS_BLOCKED Capsule</name>
        <t>A sender SHOULD send a <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule (type=0x190B4D43 or
0x190B4D44) (<xref section="5.4.2" sectionFormat="of" target="WEBTRANSPORT-H3"/>) when it wishes to open a
stream but is unable to do so due to the maximum stream limit set by its peer.
A <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule of type 0x190B4D43 is used to indicate reaching the
bidirectional stream limit, and a STREAMS_BLOCKED capsule of type 0x190B4D44 is
used to indicate reaching the unidirectional stream limit.</t>
        <t>A <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule does not open the stream, but informs the peer that
a new stream was needed and the stream limit prevented the creation of the
stream.</t>
        <figure anchor="fig-wt_streams_blocked">
          <name>WT_STREAMS_BLOCKED Capsule Format</name>
          <artwork><![CDATA[
WT_STREAMS_BLOCKED Capsule {
  Type (i) = 0x190B4D43..0x190B4D44,
  Length (i),
  Maximum Streams (i),
}
]]></artwork>
        </figure>
        <t><iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules contain the following field:</t>
        <dl>
          <dt>Maximum Streams:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum number of streams allowed
at the time the capsule was sent. This value cannot exceed 2<sup>60</sup>,
as it is not possible to encode stream IDs larger than 2<sup>62</sup>-1.</t>
          </dd>
        </dl>
        <t>The <iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsule defines special intermediary handling, as
described in <xref section="3.2" sectionFormat="of" target="HTTP-DATAGRAM"/>.  Intermedaries MUST consume
<iref item="WT_STREAMS_BLOCKED"/><xref target="WT_STREAMS_BLOCKED" format="none">WT_STREAMS_BLOCKED</xref> capsules for flow control purposes and MUST generate and
send appropriate flow control signals for their limits.</t>
      </section>
      <section anchor="DATAGRAM_CAPSULE">
        <name>DATAGRAM Capsule</name>
        <t>WebTransport over HTTP/2 uses the DATAGRAM capsule defined in <xref section="3.5" sectionFormat="of" target="HTTP-DATAGRAM"/> to carry datagram traffic.</t>
        <figure anchor="fig-datagram">
          <name>DATAGRAM Capsule Format</name>
          <artwork><![CDATA[
DATAGRAM Capsule {
  Type (i) = 0x00,
  Length (i),
  HTTP Datagram Payload (..),
}
]]></artwork>
        </figure>
        <t>When used in WebTransport over HTTP/2, DATAGRAM capsules contain the following
fields:</t>
        <dl>
          <dt>HTTP Datagram Payload:</dt>
          <dd>
            <t>The content of the datagram to be delivered.</t>
          </dd>
        </dl>
        <t>The data in DATAGRAM capsules 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 DATAGRAM capsule 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>
        <t><xref section="3.5" sectionFormat="of" target="HTTP-DATAGRAM"/> indicates that intermediaries that forward
DATAGRAM capsules where QUIC datagrams <xref target="DATAGRAM"/> are available forward the
contents of the capsule as native QUIC datagrams, rather than as HTTP datagrams
in a DATAGRAM capsule. Similarly, when forwarding DATAGRAM capsules used as
part of a WebTransport over HTTP/2 session on a WebTransport session that
natively supports QUIC datagrams, such as WebTransport over HTTP/3
<xref target="WEBTRANSPORT-H3"/>, intermediaries follow the requirements in
<xref target="WEBTRANSPORT-H3"/> to use native QUIC datagrams.</t>
      </section>
      <section anchor="WT_CLOSE_SESSION_CAPSULE">
        <name>WT_CLOSE_SESSION Capsule</name>
        <t>WebTransport over HTTP/2 uses the WT_CLOSE_SESSION capsule defined in
<xref section="5" sectionFormat="of" target="WEBTRANSPORT-H3"/> to terminate a WebTransport session with an
application error code and message.</t>
        <t>WebTransport sessions can be terminated by optionally sending a
WT_CLOSE_SESSION capsule and then by closing the HTTP/2 stream associated
with the session (see <xref target="errors"/>).</t>
        <figure anchor="fig-wt_close_session">
          <name>WT_CLOSE_SESSION Capsule Format</name>
          <artwork><![CDATA[
WT_CLOSE_SESSION Capsule {
  Type (i) = WT_CLOSE_SESSION,
  Length (i),
  Application Error Code (32),
  Application Error Message (..8192),
}
]]></artwork>
        </figure>
        <t>When used in WebTransport over HTTP/2, WT_CLOSE_SESSION capsules contain 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 remainder of the capsule, and its
length MUST NOT exceed 1024 bytes.</t>
          </dd>
        </dl>
        <t>An endpoint that sends a WT_CLOSE_SESSION capsule MUST then close the stream.
The recipient MUST close the stream upon receipt of the capsule.</t>
        <t>Cleanly terminating a WebTransport session without a WT_CLOSE_SESSION capsule
is semantically equivalent to terminating it with a WT_CLOSE_SESSION capsule
that has an error code of 0 and an empty error string.</t>
      </section>
      <section anchor="WT_DRAIN_SESSION_CAPSULE">
        <name>WT_DRAIN_SESSION Capsule</name>
        <t>HTTP/2 uses GOAWAY frames (<xref section="6.8" sectionFormat="of" target="HTTP2"/>) to allow an endpoint to
gracefully stop accepting new streams while still finishing processing of
previously established streams.</t>
        <t>WebTransport over HTTP/2 uses the WT_DRAIN_SESSION capsule defined in
<xref section="4.6" sectionFormat="of" target="WEBTRANSPORT-H3"/> to gracefully shut down a WebTransport
session.</t>
        <figure anchor="fig-wt_drain_session">
          <name>WT_DRAIN_SESSION Capsule Format</name>
          <artwork><![CDATA[
WT_DRAIN_SESSION Capsule {
  Type (i) = WT_DRAIN_SESSION,
  Length (i) = 0
}
]]></artwork>
        </figure>
        <t>After sending or receiving either a WT_DRAIN_SESSION capsule or HTTP/2 GOAWAY
frame, an endpoint MAY continue using the session and MAY open new
WebTransport streams. The signal is intended for the application using
WebTransport, which is expected to attempt to gracefully terminate the
session as soon as possible.</t>
      </section>
      <section anchor="capsule-ordering-and-reliability">
        <name>Capsule Ordering and Reliability</name>
        <t>The use of an ordered and reliable transport means that a receiver does not need
to tolerate capsules that arrive out of order. This differs from QUIC in that a
receiver is required to treat the arrival of out of order frames rather than
being tolerant.</t>
        <t>For an intermediary that forwards from an strongly-ordered transport (like
<xref target="WEBTRANSPORT-H3"/>) to a reliable transport (like this protocol), it is
necessary to maintain state for streams. A simple forwarding intermediary that
directly translates one type of protocol unit into another without understanding
the underlying state might cause a receiver to abort the session.</t>
        <t>For instance, after a RESET_STREAM frame is forwarded, an intermediary cannot
forward a RESET_STREAM frame as a <iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref> capsule or a STREAM frame as a
<iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule without error.</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
                                    SETTINGS_ENABLE_CONNECT_PROTOCOL = 1
                                    SETTINGS_WT_MAX_SESSIONS = 100

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 = 0
WebTransport Data

                                    WT_STREAM + FIN
                                    Stream ID = 0
                                    WebTransport Data

WT_STREAM + FIN
Stream ID = 0
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 <iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref> capsule.</t>
      <artwork><![CDATA[
[[ From Client ]]                   [[ From Server ]]

SETTINGS

                                    SETTINGS
                                    SETTINGS_ENABLE_CONNECT_PROTOCOL = 1
                                    SETTINGS_WT_MAX_SESSIONS = 100

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 = 1
                                    WebTransport Data

WT_STREAM + FIN
Stream ID = 1
WebTransport Data

                                    WT_STREAM + FIN
                                    Stream ID = 1
                                    WebTransport Data
]]></artwork>
    </section>
    <section anchor="considerations-for-future-versions">
      <name>Considerations for Future Versions</name>
      <t>Future versions of WebTransport that change the syntax of the CONNECT requests
used to establish WebTransport sessions will need to modify the upgrade token
used to identify WebTransport, allowing servers to offer multiple versions
simultaneously (<xref section="9.1" sectionFormat="of" target="WEBTRANSPORT-H3"/>).</t>
      <t>Servers that support future incompatible versions of WebTransport signal that
support by changing the codepoint used for the SETTINGS_WT_MAX_SESSIONS
parameter (see <xref target="h2-settings"/>).  Clients can select the associated upgrade
token, if applicable, to use when establishing a new session, ensuring that
servers will always know the syntax in use for every incoming request.</t>
    </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>
      <t>This document registers new HTTP/2 settings (<xref target="h2-settings"/>), HTTP/2 error
codes (<xref target="iana-h2-error"/>), new capsules (<xref target="iana-capsules"/>), and the
<tt>WebTransport-Init</tt> header field (<xref target="iana-header"/>).</t>
      <section anchor="h2-settings">
        <name>HTTP/2 SETTINGS Parameter Registration</name>
        <t>The following entries are added to the "HTTP/2 Settings" registry established by
<xref target="HTTP2"/>:</t>
        <t anchor="SETTINGS_WT_MAX_SESSIONS">The SETTINGS_WT_MAX_SESSIONS parameter indicates that the specified HTTP/2
connection is WebTransport-capable and the number of concurrent sessions an
endpoint is willing to receive.  The default value for the
SETTINGS_WT_MAX_SESSIONS parameter is "0", meaning that the endpoint is not
willing to receive any WebTransport sessions.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t>WEBTRANSPORT_MAX_SESSIONS</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b60</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_DATA">The <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref> parameter indicates the initial value for the
session data limit, otherwise communicated by the <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref> capsule
(<xref target="WT_MAX_DATA"/>).  The default value for the <iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref>
parameter is "0", indicating that the endpoint needs to send a <iref item="WT_MAX_DATA"/><xref target="WT_MAX_DATA" format="none">WT_MAX_DATA</xref>
capsule within each session before its peer is allowed to send any stream data
within that session.</t>
        <t>Note that this limit applies to all WebTransport sessions that use the HTTP/2
connection on which this SETTING is sent.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_DATA"/><xref target="SETTINGS_WT_INITIAL_MAX_DATA" format="none">SETTINGS_WT_INITIAL_MAX_DATA</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b61</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI</xref> parameter indicates the initial
value for the stream data limit for incoming unidirectional streams, otherwise
communicated by the <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsule(<xref target="WT_MAX_STREAM_DATA"/>).  The
default value for the <iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI</xref> parameter is "0",
indicating that the endpoint needs to send <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsules for each
stream within each individual WebTransport session before its peer is allowed
to send any stream data on those streams.</t>
        <t>Note that this limit applies to all WebTransport streams on all sessions that
use the HTTP/2 connection on which this SETTING is sent.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b62</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI</xref> parameter indicates the initial
value for the stream data limit for incoming data on bidirectional streams,
otherwise communicated by the <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsule
(<xref target="WT_MAX_STREAM_DATA"/>).  The default value for the
<iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI</xref> parameter is "0", indicating that the
endpoint needs to send <iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref> capsules for each stream within each
individual WebTransport session before its peer is allowed to send any stream
data on those streams.</t>
        <t>Note that this limit applies to all WebTransport streams on all sessions that
use the HTTP/2 connection on which this SETTING is sent.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b63</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> parameter indicates the initial value
for the unidirectional max stream limit, otherwise communicated by the
<iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule (<xref target="WT_MAX_STREAMS"/>).  The default value for the
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref> parameter is "0", indicating that the
endpoint needs to send <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules on each individual WebTransport
session before its peer is allowed to create any unidirectional streams within
that session.</t>
        <t>Note that this limit applies to all WebTransport sessions that use the HTTP/2
connection on which this SETTING is sent.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_UNI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_UNI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b64</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t anchor="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI">The <iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref> parameter indicates the initial value
for the bidirectional max stream limit, otherwise communicated by the
<iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsule (<xref target="WT_MAX_STREAMS"/>).  The default value for the
<iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref> parameter is "0", indicating that the
endpoint needs to send <iref item="WT_MAX_STREAMS"/><xref target="WT_MAX_STREAMS" format="none">WT_MAX_STREAMS</xref> capsules on each individual WebTransport
session before its peer is allowed to create any bidirectional streams within
that session.</t>
        <t>Note that this limit applies to all WebTransport sessions that use the HTTP/2
connection on which this SETTING is sent.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t><iref item="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI"/><xref target="SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI" format="none">SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI</xref></t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x2b65</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-h2-error">
        <name>HTTP/2 Error Code Registration</name>
        <t>The following entries are added to the "HTTP/2 Error Code" registry established
by <xref target="HTTP2"/>:</t>
        <t>For WEBTRANSPORT_ERROR:</t>
        <dl>
          <dt>Code:</dt>
          <dd>
            <t>0xTBD</t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WEBTRANSPORT_ERROR</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>General WebTransport error detected</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="errors"/></t>
          </dd>
        </dl>
        <t>For WEBTRANSPORT_STREAM_STATE_ERROR:</t>
        <dl>
          <dt>Code:</dt>
          <dd>
            <t>0xTBD</t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WEBTRANSPORT_STREAM_STATE_ERROR</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>Unexpected WebTransport stream-related capsule received</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="errors"/></t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-capsules">
        <name>Capsule Types</name>
        <t>The following entries are added to the "HTTP Capsule Types" registry established
by <xref target="HTTP-DATAGRAM"/>:</t>
        <t>The <tt>PADDING</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D38</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="PADDING"/><xref target="PADDING" format="none">PADDING</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_RESET_STREAM</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D39</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_RESET_STREAM"/><xref target="WT_RESET_STREAM" format="none">WT_RESET_STREAM</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_STOP_SENDING</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D3A</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_STOP_SENDING"/><xref target="WT_STOP_SENDING" format="none">WT_STOP_SENDING</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_STREAM</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D3B..0x190B4D3C</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_STREAM"/><xref target="WT_STREAM" format="none">WT_STREAM</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>WT_MAX_STREAM_DATA</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x190B4D3E</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t><iref item="WT_MAX_STREAM_DATA"/><xref target="WT_MAX_STREAM_DATA" format="none">WT_MAX_STREAM_DATA</xref></t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-header">
        <name>HTTP Header Field Name</name>
        <t>IANA will register the following entry in the "Hypertext Transfer Protocol
(HTTP) Field Name Registry" maintained at
<eref target="https://www.iana.org/assignments/http-fields">https://www.iana.org/assignments/http-fields</eref>:</t>
        <dl>
          <dt>Field Name:</dt>
          <dd>
            <t>WebTransport-Init</t>
          </dd>
          <dt>Template:</dt>
          <dd>
            <t>None</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Comments:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="OVERVIEW">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="25" month="February" year="2025"/>
            <abstract>
              <t>   The WebTransport Protocol Framework enables clients constrained by
   the Web security model to communicate with a remote server using a
   secure multiplexed transport.  It consists of a set of individual
   protocols that are safe to expose to untrusted applications, combined
   with an abstract model that allows them to be used interchangeably.

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-09"/>
        </reference>
        <reference anchor="WEBTRANSPORT-H3">
          <front>
            <title>WebTransport over HTTP/3</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="3" month="March" year="2025"/>
            <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-12"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding" initials="R. T." surname="Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke" initials="J." surname="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="HTTP-DATAGRAM">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
              <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
              <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9297"/>
          <seriesInfo name="DOI" value="10.17487/RFC9297"/>
        </reference>
        <reference anchor="HTTP2">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" 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.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8441"/>
          <seriesInfo name="DOI" value="10.17487/RFC8441"/>
        </reference>
        <reference anchor="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <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"/>
            <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="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="SEMANTICS">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding" initials="R. T." surname="Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke" initials="J." surname="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="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
        <reference anchor="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" 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.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="PARTIAL-RESET">
          <front>
            <title>QUIC Stream Resets with Partial Delivery</title>
            <author fullname="Marten Seemann" initials="M." surname="Seemann">
         </author>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <date day="14" month="June" year="2025"/>
            <abstract>
              <t>   QUIC defines a RESET_STREAM frame to abort sending on a stream.  When
   a sender resets a stream, it also stops retransmitting STREAM frames
   for this stream in the event of packet loss.  On the receiving side,
   there is no guarantee that any data sent on that stream is delivered.

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-reliable-stream-reset-07"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="DATAGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9221"/>
          <seriesInfo name="DOI" value="10.17487/RFC9221"/>
        </reference>
        <reference anchor="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="Mike Bishop" initials="M." surname="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"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="MPTCP">
          <front>
            <title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
            <author fullname="A. Ford" initials="A." surname="Ford"/>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="O. Bonaventure" initials="O." surname="Bonaventure"/>
            <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>
    <?line 1522?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Anthony Chivetta, Eric Gorbaty, Ankshit Jain, 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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
NdPCjcN6Xz/79hllq73N6cTJASeYInFj0bDYbKVaC0r0ofo7WPICzrLm8AOp
+NYSWi9NRaMxWUjaJgoLVH77Mzsp/fQaY4w9dk2Ur7vCjyJRFUkEYyaFrQWj
d6Guskg4sXaBFlQtWyaOHVdqoV3fYdc/SVWMALOBgqIQcJhnRD7t5VMpPSuS
1KwzuQoGNdpeD+MQeH4t20DXpwRyFHvA45iRU1gADOgyHLmgzBc4j5ioQBQz
J29OmwOdCrygEO83Zd8d5ewbQmRTIr/3QELZNZx3b44I2TEdS+Frj4+woCil
lDjXXGUEbSly7CrMEOMKYdWews4pA5JnqR3fnDM6y7iEpLLhFic2qzyPpI27
dWUf98RrmYWYpbaN7UJQfxLYG33gccNsFT2oYnVHgKKI/RvHYWg2Am2cVUV7
StRP33uZPjhsIzogyllnAnVznfwxy3yke70Kk9bUsV/kQSuS6a18LK2yilam
g4MhPfh1x2wbbZWXQDgujDGYtOyGXUVt7ozlY87qihmpiR8odTJrJ9eYLAl/
SSWxdhLPUnkZsiGD1RGGLEkR0SxDJ1OJbxkMqMgiETNYv1IwiMmsdkSOtqMd
t+6eyB9OuOfa9I0tSh5BM2ruvcMrJCeAlwyG/su/oQEq5yU7MWmUQuF6PcRQ
fMeXhX+Dlxh6A2XjJ1dbOzk9uTwZvjbZpD8fRI/WvOKmjL49PXnA2y9PjjZ7
fbTxwCM7qDrp5lDRJhwKKf9m1+VLSA3Wj+6rqIxeoBY5ebg06jrQ2tcduKz9
qgFtJCrQeDaFdnO+0QZzjTaeh4GvAjj4A+P6K85HehTip8xMQyyM9EyPWlwX
P9smmhlyRpAvO4QReGhwB3oq6FtuWJwySCl5nQsiDAtyXARR1LVI0qGOUtaG
yhVqkssJ5jROedeu7bjHNWGUwPacEthQ4M0ip7qdE8WcAlhYBO6WOBepuejl
cqIZnLVCP5IrjTkkqR6exdvMJ5akUhuv+ZCsKi/6qkXvfdIFjJb3y/cclEnW
qAdrlMfIuiVQnkVorKQLcvroGnp3Rli7zrEDhMDuKNeUVPF+nG26jrpVVtK1
FMn0ftg6yl9/HV8GEtWkSBRc1E9mnkzTmPLMWrqm++vnNWkoRC8V1hvH1s1N
2/KdrCwsM8kxrBL7rjhNKUhFQWQz9QrQW4L2jVJc1SKoZkEPobYzTa9ZPIZQ
33LzjMyrW0QCDy2pUM2SiuiBJRVKvRTjx8OTtOF/w0MvFv3xqg//YR+Hdqnr
aps4x7h/vy76GPDX0V3/TBlVJLzlz8gfsLGXfEQFjeyjFAjgLg9KVFFQckzm
h1UNBOudgzTpB3T4Sk9hJO9es1qG/fk9jWYdv6KJ1kj09N60p8+dBUAJLotF
ickTgyYJYOGWRBwp2QdxuKqLUmdymTJFjhfUlEMtfqsGBCeAZmmtKFcm5uow
h52nc5q0xgwoGO8uLqfWW2FgSFnWC2qrMsHktNwHKKuSuOuMPC7BE5TCCqUF
XbAlRGXDKboQA/Xmdtl2j+quihlYA5zrhUFhQRBrawpKuLGiInfjlsZbwwVQ
2qfnWDqUVNHercHzuzjXKfJdB+bFagNw1y5Bwl4Nxam7SnYru4o7nKhZgj34
OLoB4zopQ9y9vXdS7CkLxjNDzOtktYTWQ0Ft7/xe6SYcwLt1CUWIUdt2DX6b
Cdsmw0/a0IMpr/fBT7oMB/TrjkYYYSFG/E6ZoJx2HkhYppFK1VW75fXS4NNA
bzgXk0/TGSXi1UHrMVS/31aFEPYuXZdyDOxX61Hsj84y6I1iNsqdPVpKFnfE
MN+cAwNC1AEAs+vQY16obWIfOL+dTKtdk8lJcjRVM67EbiVHGTnvknMopgnn
WhinasXZizPb0IWbKbgdR5z8Ls4P/rt0hhonq0KsemkMIouzK1GmXRJH0ZrO
D8OCHOH3AAQuEyoVFLJZoo5GefTKyTW1zXdSXbSCyISf0rqm8AdMsmr1pQEq
xxeUxi4MtJkMyrt4heMxxpDdQJoKHpGTO4cY6+cYm3w8dil4Djy9vkE0rGQx
1HSKnyJyGd+kA1etQJpCRQo0xRVAaUzlwhKR4AwQ/RZlb6Pg5/SDTIrwsQb5
lt0i7frXCpeD/C29XqIvHsFo1oznR9hCxkMNq6skBVAXkzX1GFeJ1JtwMEdb
IEKtYSqxJbknpix6koAxctA9l2HhemFyBqkzglMKTWGUm0Sim1hKhyp3v5j1
MySkcVZQ+ytM38IYD1DJBaEW9nNaPXAlCxmhtCP4KykTzZQqUkky7MrDWEZR
/XkSmzwi0ViYY5K4AxJUUfdybD8Eh/PBv65BP6GKAjFPbd4zjCbP3BgLKX8G
HZvhiSkcMX4y76HNzX2K0pkUs0ZAxITVKNyXSHf0KgK3KMgOGDGo1gPWlLUv
+CsCog61WZap2w6sgckc6Jxr6Y1+Y9lMIIWJPSVEvFQL4NThX3PNi9YQMmFE
kgBjyyu41kv690R8mEGZ6KWacR6EHw9pRD5UZBKIyWgg1MPQLkgFDoHzWhBo
7ZI0kaUzSpSEE5UAmE2bg0OytbPRm+KLKMAB5bzQFCAFLXFO+GGgX7fEiAT1
9enzice4sRKzDkvCT6PtwmhvzjGB59On/6I/qETu2919jEPprh80X57gIE4v
ocvXowHFCZnBgcSM9LS97t06qrS2BkC5vMVUvBwUb+BneN74KQncijUHbziJ
UXZoSeQMMppOySy6qm1EVjo21Dfea+qx45/a5SjlH0yztydP3GFcT1bjPd3/
wQYLbasIrP7XRRRofqckOkBMcdgcZSPm1eggbVgHbLdhiqhOI52wF5bMQdP6
ZRBp0XDEvnUJ74EAza+xpKIjc82GGD2NEEvlden9ABW3FmOwegnslnQCs5aK
S6Ga7X2mJl4IJ4coDeww73No0fyInzsF8f3WxxF/rIrpNPTtANPE0PrLVlL4
Kx7UZscM5av1vVD+1AQ1vgzOrSYbE7On0RYbp+KRSpSFf4dKF/BWNNOr/CBs
uAsJ1dF0KYCWN/xHZfU+reopKufHUgUNJkJuj/Sid8jDkXjpJO1EXpUrrFtx
TdsC/qQCVmcUY067szTTVYCV4kqYQJXzsWOttm0/6ZLTZARGU7OEnpZOUxbJ
dilR0WjQp3LpU8ocKZWP9BHplYpKhZM1TAMDJEvAB/F4A6ooQ85F2d1ERkfs
Wv1+Ogp/0Mmn2l17gEGeD4+wx4YZ6dMjeULBLfmbo0JD87JJ069MLbp+1Gp1
RKi9WiQvtj/uPN9+uX+09y0J+hvKkjF0r8OGjSmqZsQilR6iiWNakX1s8MVJ
crIqHLIAN9qth9NkhEJQEvB1LhNg0wzrG2KYYVWllB2L6MrjS10OANFJ2qAw
LA1NDKtLlnGEoQlMqvUDZouGeSVtfyJRZGmpscmUlfwMt4h62yuh5pZo8vYC
IcVN5xq+T4HtvJgaqeD7OSm9N+MORM31AnzQFqJuM/wNfcIabAhTAPToLcaW
yqm0dh0nhANAJpmO25JFLF8hzNBgQEdTks0A2P/4xz9UC2VB8F9iDeTj9En0
IrJ41oMfXif5NRwF/IT/OhdQPB4M4N+fabhPgNyz9LqvwUQt7l9sNWd5RcVZ
WxJt0wN5zQ6kCp94W5ZxhLPCaL/4CcYr6ThO1gcvDHiHLTARSSFr1mGJoWcP
IPMvxllqsrS44lyfshovuUISuWZtI616d9RV6Ce3HuTnx1LS90RUpkZLH8sZ
Gr8Qh2g805yiqy/QhhxD+RzjuQ6AYOp0s34QAT4ulwu0MG01DEtc8g92JnOZ
sjBKqPTKy0KL73kJTRPUvyrt59LtqlXA8BcB62hfOoDonCwvz59YNz4iOp2m
1QRsSetMRxXw48QxLS+0V2aU/j2x+kePFCPuYKbd6ZhQGGewiOnK+JoHJhkv
eHKmm+pNIt2Z9bwkyNxvroaXzKKwpc358AKD3X16odF4WfuR+qYMDCiIwk+H
WLmElFOj4oXRAFMQ0tinpZKulVvqxNp2POvQKbl9PYiC/UoZk0tSlC3Ic7hc
Z5R0Lc8cNa2HydP4nha60L6xB+lp4Y/Z4pc2n45ZDLctUm4UoXYrYJ3iSiJ9
YaydlN/BYJ+3GayxGvSDYI0+1xQfYuarvOZvkB763PmuviLsuNLJ68ylu5bs
c+suzPCKRqwLnzIIwPaOnP3gLQERVizegpQjnBUGnnKkGBjDpCD+IVQRqpzh
lpocjY6MQ2GckNgxZdIDmvkewN27HnFo6Lwq17NqG/rbBH1akNCAzkO+u1m5
eENJ9DiedE2jZXoHd++inJ5ZtVc/aKumTKOpsSxKDI9gSjKzNlt56yyVsAW7
69hEaKDhFEgV2YDV6iWX1aCENrBsUf4rKifC/Smh5pO87xtFlMra5ikc/3IS
up1qsc5SM1s1yV1NzI7i7C5eVREae9T4BvMErUt8sE7smnoDjw16o/OhcqEa
Qe4daX4EKPZBVlStkE/RZvVmYXWUtVrjbr9exoD+dYJ8URmH4AeCBvqHcl0e
uyLu2KGSaOvh3qpij8mnAWHqqCCWMbL52SgK59PnAhKnwJhVI7cxoa8aub9o
1ch9JqrRvdoPto9Jpq25Hvsq0fAJbsRYQ4FsLhZnNn5h6VdUCRYMWvzAGbtl
z7bXR3MhpjpDKm45SZu8Ub4yBKZUh8IlwiYMyw5hM/y1hE1LrmALyiuTo2rk
SnB1LbnivfVbyBUnTfgeoSIPmGvySYOWVpS/vURxauTZLnZkHCd/YUkvrsVv
xqF5VhCILZ5lYxCpLla27kMZby3T8qb592Ra4iTsgIlKK1dd1xypbab5Bppr
moUCk07fU92OMIRo7DEAbNSIRrEzpgSiWLdnUFscUiI6226GqF+ivDH/OpSU
yrCLNPV9A9T1SProvzo5pVceb3/c3nnSc9QMulQiMiWL7gDzuPxQ6Wx4n4TI
65knkXHoDjTFsqsJJXRKBWpsy1v929mZk85nW3PFWs/LlN220yPZcMaNFPCX
g4EdZQP+KA+OcA8hF8hdQL3uVKwDmCQcoovvOUzvoNFp3hCz5gvOUvHt/40+
DAxEFeQlFT+K3/teZ+Uezxf1KqSOaY6iIuMClOgYefa5yEgXfWq14DvP6ree
FXyKE2EAtIXqoskytlMfNVQryGlRWYUjaIgNA8N9gfoGq0JWqDpZ4WaaW+Qy
QfXP09zarEPzPfVwnc0UFXg8Uj/VXNIr2niQnmbGb+hoR0+UV8O4z6XpgRpG
55oEia2YHHRhTNIYQIVMJq/RxJqYnO0objlNGzYdvOaozV/eSLMC5idB3QqW
fcULNQylNaPHUsyvmzAV1qXcZTzUAtX9FrrBatQYA1uprLQB6R71X89TFgjE
nZCQdV4QI3YwJ4giSmjtYhprZIsq5ZIQWJj4C3gXla20ZaBLsUN4cMM1nIp1
8lQpk38pMkm7pgZePa57DEalXZto3vuSTPMTN3rgJ1Y7C1GOOG1kiy6W5YLb
tefiitctTCXym0/d1GWvPaZJ9p2ZgB+n4OomSesS+z8LvHSFgu3T4JTHSqco
r+zQvYCmUQylmm0emoVPHldza59azM350eVxzuMvY3XupA2OdxywSoWhxSF2
tobuDMk1u9g0jMhOMHTwseMN9CTNUTx9qZO/8YpCbC60rha3c1/aVJMKWJC+
PqUzy2YzbhoQAGGPXZbJlC8DIjbXwTUHHp/1VLPfnt224iZfzm5nzfQdk+rR
ZsQqyIijL2HEkqnfnrWTQ0ebcegA6mzOqP0M9V/EqNei8gP5tQry61ZxRpBf
N/u5Bfj1icurqyazDhTY4SLD9WXY43UNZw8VuT6kNnXTylSq4sDF3XKyy3Ad
dnRbEuynaTj3dEISbpMNDE5s8N0T2tjo8Luo5mIeZnW0XS/qXqMjeojRobTR
0QU0x/ow8OryWuEpt7xSLYk96pLWo7akHv0SKT3iy3RNNri9YLG7pcoaK2Sy
nC8zujXbbcGoU2pn5kY3ds7UwfYqOlYbavlCdwXEuqO1FdqvzM1GGBjqvjG2
cYwj5Q4ctQfe33YH7ujL4qX46BYrvjCs5IIeCx5m42UiHRq0AKSmgUr3am81
pnE7HDoNnoT2zEu2URpMQEmVuuE8XSMShK1c3gXjo4sWJ2hsQRd9OxcSU+In
VdGG9K3RvbrWK+uf2t/uth81DO9TsaqgejW6T7UafYEtKUsy+s1E6ytdVBA5
VFDrinJToUZ4RzmKpN6IhqubltzKRYBZOkuo6ZwZw7YvoQoFRirOfuaRRHHY
/WO1XPzp6+0/PsX/khmWGr+In5tI/aac5NgsLkFRM/HfXI+1y2P1dxpdmgM9
BM3p4OeW3iWbybQXZAcqC1r0yGK2mTT5AZ7wihIrqjrmCpIo3M2uQaNaPkkF
4CzaC3d00ivc60XfMKfY2QFaXtacP88r23nmkrqrFpjkE2en0j1gjCmHQp8A
9bsky7g+GpulsRAVIgqpbqN/I7Vt9M9W2bq0MSw8lzrYe4znhoq11nZutuTY
pCGHkdxuCbovut1ftOx2n+mEONGvpKON7SXvjWw6n3lW9f7OEyfVkwT3focf
kaIdqds20d6vgthOipSuEZrCr4WSdnKbNs2NuhatM3XVUkghzRdLzule5pIX
46FFnF3jJVA3JGFFuIThHJYu+ztf5JFEWFxR4RnyByNPgjN7AqVj07+ld9I/
B9OclMtMOcwrFXRRMSE+62TxBTHrX8VmwsD79zIN3XDqGooPvOAHWh9E/6Hp
OtjArqFvtTl963aRkmEZaoN96eY/UYJunBXXWKSKfME/u2aI8mEUu/ur+t4c
v1uAoNetLxDEfDh5PziTo0HcoRC7hLMc2rYNPxu9y38dh1wxm0nduZsgWtva
rXvZzDoE/ldxm7VH+u/FdIb3wfAhsV/lxX6702Das4VcMuoBLpnfOBAcBI2b
DfNFmXxeB6EQkx+FGfzoYcx9dB9j38OjM//afxI1osa7G2t73L7WeO3WSgTX
H++ZUU3bzMXR9l60x83ZjRfNlvs6S2wfKVxHhTw4PLl242w82z6yy7Wzhd06
EmdV6zdnsoEJsJZFsu3ITrLKesm4HwR3jOdZqBc0WOioEku7Dw/W6ORJ8o47
QlU7YbIDZTvk7Z7jf9n/Uv+L2LydIra9nIB4bYH2F/hiHhhrartoxP3Gos1t
9u+mh+HJ8RU1LddLh9dFxnuo66XT6+IJ2ABu/kuFa+BA/2leA+Dfer0O19aP
rg6H56O3r4+JZzcfShLk2n58iAVmfB/aLQg+CxTWUio25Unq+lNdSyqU3F58
k363A95S8v4f6RHP41VWxNNgGp+dlkm1NZ9DoKZidU2HmV4LHB3Uq1zFOLhe
J1gtN8Vq3dMumspCTdWHEIIueWuvJNVNMMZ83WJDU/YbqmDMTlfS8Y06NK65
D9K2Ba2WeGLUcaBaxBO3qwrLjUaTtQl1PJOOdGZHrH60sImAG+dUSmz6LdlO
ch0HsUe0SWodekgNxKQ6HZsELvDysjqaY2sbzGDlyvpBpJsJFDOJYzQyuKX9
BewRy0u8jLMKK7Jah6RbISARD6IfdDMaUklgQx9NyrrTuwxFmlOB/ObyLTuN
bimop5p01eRMzRsSGi0ZuY02w1+10YRbGJJKbMvCP31yhqdmM25rKH2SSl9q
bBzzcowo3DkO4I/bw9sZbjRrlx5E9mcVRAqv1QTBUZaAkGzvR9xsXcWtXkcf
fTFns0e4d6Oy4q1gJEn3gGnu6j78VMFbCRrnxNwi4tLHvy1BM9OXAoU+p7gc
IG4QzkaX92/z8zR57ydPNnT9uKmMaM3blhUOTj/rjLW6V/gFTydwK2Hzpk17
o2a485BEnJy7WMcr0wcvc9LRVOeuRH+l0rPOSzad61WVuRhI7+Mxp9TJBbJ0
DYAoth3n54vF5nttEelWuLhlP3u7HT+/kQtZQYp+u/N8N6T+knF9ZQjFKL/h
JT9YsnaB25OwKuh6Cu+WfkI1eW+3jzURDqKY3vcSmXPxyT1Rr2/mGrCZqd5e
vup/a9LJeEZ91y3ghVxgvcncpEO3ri8z9+aS82G5EOYxj1PbWdpwZTYh8TIN
HEtshGam1c727r5NHXPvKaEmWJKn30kLXMJ9o0N/XumC6BvSapq158ZLsAWn
8s5fPnYCy5I4d7oZSFeCLtaAbbTW3IlLF09ykxUidacK1mE+VC1W6zyJzsEk
8Nm87BdTKuTGX66KkB/58G0Y7WJ4chpm095PTTYd/JHZtMuUvz8bvhv+NdAd
5evBt+6VY3KVCDZc9G6oUSBUJslsSQyxxh4pE7yElSKNxqSvpCVKVWPHP2D0
aXUjCI7OMI50KSd5w70TxKaUbCRefHitFS/7g687BYy7rZslKrp3XbeFOKG4
8Fm1WLL3ns+S0ZQJBOCw/UuAoYYntAzV79JhLtSkzl9caBN3w6ww8GUkUVL7
3aztoQ6d+TKJ7P3XpnoCjVh4hVxBgA/BPmuSL2ru1kLdh25/0amnLt/jBoru
MOZO7Qp7h3PqLiJrXdP1pv5Zes1OlFPkURX8X+19YPrTED3TGXe4IafdJttZ
plcVu4HFb2Uavtq2gW63TGtfGRsKnV7YKqwuMrb4/UYb1CsVZlpyQ17u3Mp3
a1LHWOkWKz2ydDai2wdHdEfuCmCaadC42JBt5o2teYKjlitpu0Dro97Jr/jK
qnbrbNHDZU0xpZMU+XW26msYWbA8xm4DIUWWuU4Iko+lQUFamc4MT3rS09N4
2PFrlHekEnDHtZlp2FdhKxlqKp64RkNrJ8o0D3d6n6OZqPPiTGcITK/G7wtt
pRpJQ33iME2HWuuwf9V0juOFyR3VZHA6uEGNenDDDlUJ2J3EH4lutBsM4KGb
hu/tlu6SFaXNtuAIcbWmLwAFEFqvt8scDSR0xd6j6JgbFFesSvA/EJx5cl1g
u8GAAJeYHfGV0G3O3G1HgrN6SJehoJNJ+s85FpV5M/cu+MZET0W3puzjrSl0
Z0uSLSIQYUvsxyUNk9xuzY7Dq3bvvBUJ8dNP0SukhkNuyvjzz1H7f/odvv8R
3rH3xCoVeL/1P/P2Q16+Oj4dvnx9fCWNxK/OL84uzw7PXoM02nnYQDo9St+/
CQNsb4PKcTw8Or4YRf8ZHZ8eXcm/bHErvLanDviuRfhbXxN3YGjrRXSXjG3r
8YNqcgMmMDy+qetFBS9iv9QX0VN1EC9hkBL7v72QfLiBHPBgUswV/HSd5geh
nzbaaHgjG4HI2+wmXxzIdZcvol2EoaEqD27bvkxF5+FmO7FE+p9YDP7gPWxv
Nkt7cc2J79sNkk6DSTA3JAqR7qTd7EKzBdIysCWr02A90k3PpaS9Zc+Qq5Yu
1m7xtP9P1L8Hot5kn/9Cmt7kE0v3D13SZsf8QBLd+VcxnC/dDfGPR9QeL50m
pfjuURN8taQOsj+CckY3Yip5cCsPWretctEdXeLHPGgFyuVHzZEat1XaGLsx
Zzt6nFMj/Dzhl6mzKDt8lgswXbCrafEhyW3EnmviVpFvBcXa3VXpq6MLTFUC
fmOawOh94fU88CzOEza3HbP/ededwdhfwr2TWjdQnzHIqG0SECxFbjvhJ0Ye
6dV6AHSNIkStJ22aMB+mDWsjsIsZ2QvztK/Uv0URGyM6F5OA8kcRL7R7jNtV
A1oRoOl6ANt0uKfd6RRfMEcphcj2ovsety7Tt5MqfQx0uE4fMhdxUr4pBfeY
UE+05n3epCrD2SyJ+fkovMYhUsEb1YzumKIb0ERgyjB+CGG+KLhkUtkbd1DH
7rq6qb5ZVs69lDGPmzg3yWA9Fzce74uQtsno0ud8Qo1ACaJ05tKmHO1vjBql
5HVb5nUJqjbFMzu3Kpsh459a8qCLvk8aeGla3ImFjp8Yyfsd6+jxbZFOnXmt
PQemxWzJ/oEaby2v6Poge8aJMrEi2qRegBsNwmrYk5pbKJuVOivCP89Ieim+
WK/ngNbRckxcwGluDGxgRe62qpJsdL60RumLeOQOK07GoUnIBCaDPBLQyg/e
lfcUedOtnK8Lch15/ncPMwq69UbergtlL0fioavW7RCur/qo9Tbf82VGUbRQ
2AZa8oB+0k9f15skjV7+NijLDg66gdf6DajtuMWwmwJdkonUMFfcp9p0n624
gbld7BlGhw2iMFYoqmLTl1IAEtyADV9brDnAXWPrbUuIzn0g3NGfuhK2b+zg
y88bbQ7xro6eA0umnPj6Gi9F41gk+8jI5Y8+dHNhBjFAiWnX3iUgnBZdwxpZ
TYZXwLK/Jn83kLuSLD0Daph/FqdljqgnWhtf5e02b2yAnrFAOQb7dVIz7LD9
GTl4GBwAJnNnydQuXxOsFB8S0CSb2/Tro4Ab5/Q1XNDESU+Gp8MWF710TXW8
fiat8PpV+thQOMuTqHVJr7kvkDwbCoUXvZXGedyHV+kxvYfDGYeefkM/oDck
Wnj/zdpmfOdy8EePWneAnxvJeEGb4h1Hnx65W2AXpg2WAQz05YTYLt62EN3S
w8uXWwKq0nfXgxzhMtvdz58PFDqx43wCyvuLrS4JrjsDdpobVsI3shmISE0b
Pbl0xkGw1A+7I7QJzXRaoU1zg49MzZ25xS03nUJxJJTj7P3U7jmJtE2TWQza
lNfKJFGb7KaKtra3AizNnRYddO2pqYVaUJkkPY1OKDqFefg6HDeL2FOe1I+4
aHpp++Pu+GswSY54O/wMBmP4suimhx69dJ5wswdL6JSb73ScdLhbjHXfE+VL
Kiwxtju8JrFZAFeHu/Rguym3sxVpjJ3Huv5+7fbRevmVzdM1bXtt9nOzdY+W
ncRL9X7HfNWTTjbmPrdcHW0Gy3XHQYKOMlfPxLXjRg4WbjrF3a3r8wxt0EdL
CdC2Cc+52xDGFZhFqWSHBjB0LVibSLrzmyBpo5/EffjabD9xD+oqH42cs3Ha
aBjtv+u+S4Pdag12B9oxWBx3GxxpVFcPQ/U1O2esVw/A+vu6oCDi69x8lxZw
ClCTscF8MMjfTSOqg0ZY60OFKdDEYGMC0RXtdJ2FTy/Kp5fot6CXxtm0SGf3
NycdrAF+CO1QO5ZflXj0YYZ7XqiNJEQAH9V6ItpADdgUBN2yQ/0CKoraVKS+
nIoCkkb9P0lFeDgtMtr7DclotLn0GW0ieZweeYHKnnn8sVFMtJY+OtofRE3a
GP0yumht7BeShNOnoVgvQNRmqK+bPuerDlmtzd3fncblHEAL7fd/U7TfXHKM
NpIaDcQf/y7w/leWBb8l4oc7vP3e8T7I7589HPGtP8bJqm74YXwn0YM9MXbg
sC9GUfMy64vBrCHPFUA1xAd4jS7mQONeL18ewWERrA4C7yIYsC5uwbs+iL6n
4rTG2XEeK979jsl4Sl3o65vxC5vLrgIrapc4b7i89oettb7NTX5gQNvAi7WI
4DVpm+bZa9bvpAhihmelz9S49R52pv5g9x2qU+ZzwPO8lwv43js5CoLJB84d
fwBRZx78Tb7DFvIYncZHWAMf54TKDVxvofohB0QPzT3T+M7J8eUruqC5jif1
QfNO5ndFSb0Rvi+L5SL6o5sH8Ge862xQlNd/YrZBqzkt8gRlCZaVwXcvtija
ODG3irxvZKith8DzNgQa3/++IeF2WVwPiWEQEu73v3dI3I8N3o0QHfD4/eNE
w65ZD5LjIBgaQ/w+4SFyOfqBAyqvKKCCIsXIYw6qKEXBIore65gQp4N5zHyl
71jZ+gEAVWJ0LqKFY+KFvjFIPcYpn7iTiSaw2jIZypg2Xqs/Uu7TwdOnd3d3
A1wP7u1pXGHmBAXsn+ILfS5p+hMKdTNmE2wUOQIESOYLlGwGMOFj84Rc88hA
Ica57RD9fj8aY/RTPYqG5i5tegkAry8Ff7E1i7MqYTSM8w+k6g3z+qYA9fHw
BqRrXcc90GPSSfR9UY7jetWD3z9UN6Ad/gVg0ov+UlQ3yzg6q+uCAmSIrNQb
NDoH+BWZU+tOMcN0vOQwsByLXLtJ5U1eoJhuTMVtYsrCQP1fmRoGwanVAAA=

-->

</rfc>
