<?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.11 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-overview-09" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.27.0 -->
  <front>
    <title abbrev="WebTransport">The WebTransport Protocol Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-09"/>
    <author initials="V." surname="Vasiliev" fullname="Victor Vasiliev">
      <organization>Google</organization>
      <address>
        <email>vasilvv@google.com</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>WEBTRANS</workgroup>
    <abstract>
      <?line 30?>

<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.</t>
      <t>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>
    <note>
      <name>Note to Readers</name>
      <?line 42?>

<t>Discussion of this draft takes place on the WebTransport mailing list
(webtransport@ietf.org), which is archived at
&lt;https://mailarchive.ietf.org/arch/search/?email_list=webtransport&gt;.</t>
      <t>The repository tracking the issues for this draft can be found at
&lt;https://github.com/ietf-wg-webtrans/draft-ietf-webtrans-overview/issues&gt;.
The web API draft corresponding to this document can be found at
&lt;https://wicg.github.io/web-transport/&gt;.</t>
    </note>
  </front>
  <middle>
    <?line 53?>

<section anchor="introduction">
      <name>Introduction</name>
      <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.</t>
      <t>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>
      <section anchor="background">
        <name>Background</name>
        <t>Historically, web applications that needed a bidirectional data stream between a
client and a server could rely on WebSockets <xref target="RFC6455"/>, a message-based
protocol compatible with the Web security model.  However, since the
abstraction it provides is a single ordered reliable stream of messages, it
suffers from head-of-line blocking, meaning that all messages must be sent and
received in order even if they could be processed independently of each other,
and some messages may no longer be relevant.  This makes it a poor fit for
latency-sensitive applications which rely on partial reliability and stream
independence for performance.</t>
        <t>One existing option available to Web developers are WebRTC data channels
<xref target="RFC8831"/>, which provide a WebSocket-like API for a peer-to-peer SCTP
channel protected by DTLS.  In theory, it is possible to use it for the use
cases addressed by this specification. However, in practice, it has not seen
wide adoption outside of browser-to-browser settings due to its dependency on
ICE (which fits poorly with the Web model) and userspace SCTP (which has a
limited number of implementations available due to not being used in other
contexts).</t>
        <t>An alternative design would be to open multiple WebSocket connections over
HTTP/3 <xref target="RFC9220"/>.  That would avoid head-of-line blocking and provide an
ability to cancel a stream by closing the corresponding WebSocket session.
However, this approach has a number of drawbacks, which all stem primarily from
the fact that semantically each WebSocket is a completely independent entity:</t>
        <ul spacing="normal">
          <li>
            <t>Each new stream would require a WebSocket handshake to agree on application
protocol used, meaning that it would take at least one RTT to establish each
new stream before the client can write to it.</t>
          </li>
          <li>
            <t>Only clients can initiate streams.  Server-initiated streams and other
alternative modes of communication (such as the QUIC DATAGRAM frame
<xref target="RFC9221"/>) are not available.</t>
          </li>
          <li>
            <t>While the streams would normally be pooled by the user agent, this is not
guaranteed, and the general process of mapping a WebSocket to a server is
opaque to the client.  This introduces unpredictable performance properties
into the system, and prevents optimizations which rely on the streams being on
the same connection (for instance, it might be possible for the client to
request different retransmission priorities for different streams, but that
would be much more complex unless they are all on the same connection).</t>
          </li>
        </ul>
        <t>WebTransport avoids all of those issues by letting applications create a single
transport object that can contain multiple streams multiplexed together in a
single context (similar to SCTP, HTTP/2, QUIC and others), and can be also used
to send unreliable datagrams (similar to UDP).</t>
      </section>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</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>WebTransport is a framework that aims to abstract away the underlying transport
protocol while still exposing a few key transport-layer aspects to application
developers.  It is structured around the following concepts:</t>
        <dl>
          <dt>WebTransport session:</dt>
          <dd>
            <t>A WebTransport session is a single communication context established between a
client and a server.  It may correspond to a specific transport-layer
connection, or it may be a logical entity within an existing multiplexed
transport-layer connection.  WebTransport sessions are logically independent
from one another even if some sessions can share an underlying
transport-layer connection.</t>
          </dd>
          <dt>WebTransport protocol:</dt>
          <dd>
            <t>A WebTransport protocol is a specific protocol that can be used to establish
a WebTransport session.</t>
          </dd>
          <dt>Datagram:</dt>
          <dd>
            <t>A datagram is a unit of transmission that is limited in size (typically to
the path MTU), does not have an expectation of being delivered reliably, and
is treated atomically by the transport.</t>
          </dd>
          <dt>Stream:</dt>
          <dd>
            <t>A stream is a sequence of bytes that is reliably delivered to the receiving
application in the same order as it was transmitted by the sender.  Streams
can be of arbitrary length, and therefore cannot always be buffered entirely
in memory. WebTransport protocols and APIs are expected to provide partial
stream data to the application before the stream has been entirely received.</t>
          </dd>
          <dt>Message:</dt>
          <dd>
            <t>A message is a stream that is sufficiently small that it can be fully buffered
before being passed to the application.  WebTransport does not define messages
as a primitive, since from the transport perspective they can be simulated
by fully buffering a stream before passing it to the application.  However,
this distinction is important to highlight since some of the similar protocols
and APIs (notably WebSocket <xref target="RFC6455"/>) use messages as a core abstraction.</t>
          </dd>
          <dt>Server:</dt>
          <dd>
            <t>A WebTransport server is an application that accepts incoming WebTransport
sessions.  In cases when WebTransport is served over a multiplexed protocol
(such as HTTP/2 or HTTP/3), "WebTransport server" refers to a handler for a
specific multiplexed endpoint (e.g. an application handling specific HTTP
resource), rather than the application listening on a given TCP or UDP
socket.</t>
          </dd>
          <dt>Client:</dt>
          <dd>
            <t>A WebTransport client is an application that initiates the transport
session and may be running in a constrained security context, for instance,
a JavaScript application running inside a browser.</t>
          </dd>
          <dt>User agent:</dt>
          <dd>
            <t>A WebTransport user agent is a software system that has an unrestricted
access to the host network stack and can create transports on behalf
of the client.</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="common-requirements">
      <name>Common Transport Requirements</name>
      <t>Since clients are not necessarily trusted and have to be constrained by the
Web security model, WebTransport imposes certain requirements on any specific
protocol used.</t>
      <t>All WebTransport protocols MUST use TLS <xref target="RFC8446"/> or a semantically
equivalent security protocol (for instance, DTLS <xref target="RFC9147"/>).
The protocols SHOULD use TLS version 1.3 or later, unless they aim for
backwards compatibility with legacy systems.</t>
      <t>All WebTransport protocols MUST require the user agent to obtain and maintain
explicit consent from the server to send data.  For connection-oriented
protocols (such as TCP or QUIC), the connection establishment and keep-alive
mechanisms suffice.  STUN Consent Freshness <xref target="RFC7675"/> is another example of
a mechanism satisfying this requirement.</t>
      <t>All WebTransport protocols MUST limit the rate at which the client sends data.
This SHOULD be accomplished via a feedback-based congestion control mechanism
(such as <xref target="RFC5681"/> or <xref target="RFC9002"/>).</t>
      <t>All WebTransport protocols MUST support simultaneously establishing multiple
sessions between the same client and server.</t>
      <t>All WebTransport protocols MUST prevent clients from establishing transport
sessions to network endpoints that are not WebTransport servers.</t>
      <t>All WebTransport protocols MUST provide a way for the user agent to indicate
the origin <xref target="RFC6454"/> of the client to the server.</t>
      <t>All WebTransport protocols MUST provide a way for a server endpoint location to
be described using a URI <xref target="RFC3986"/>.  This enables integration with various
Web platform features that represent resources as URIs, such as Content
Security Policy <xref target="CSP"/>.</t>
    </section>
    <section anchor="session-establishment">
      <name>Session Establishment</name>
      <t>WebTransport session establishment is an asynchronous process.  A session is
considered <em>ready</em> from the client's perspective when the server has confirmed
that it is willing to accept the session with the provided origin and URI.
WebTransport protocols MAY allow clients to send data before the session is
ready; however, they MUST NOT use mechanisms that are unsafe against replay
attacks without an explicit indication from the client.</t>
      <section anchor="application-protocol-negotiation">
        <name>Application Protocol Negotiation</name>
        <t>WebTransport sessions offer a protocol negotiation mechanism, similar to
TLS Application-Layer Protocol Negotiation Extension (ALPN) <xref target="RFC7301"/>.</t>
        <t>When establishing a session, a WebTransport client can offer the server a list
of protocols that it would like to use on that session, in preference order.
When the server receives such a list, it selects a single choice from that list
and communicates that choice to the client.  A server that does not wish to use
any of the protocols offered by the client can reject the WebTransport session
establishment attempt.</t>
      </section>
    </section>
    <section anchor="transport-features">
      <name>Transport Features</name>
      <t>All transport protocols MUST provide datagrams, unidirectional and
bidirectional streams in order to make the transport protocols interchangeable.</t>
      <section anchor="features-session">
        <name>Session-Wide Features</name>
        <t>Any WebTransport protocol SHALL provide the following operations on the
session:</t>
        <dl>
          <dt>establish a session</dt>
          <dd>
            <t>Create a new WebTransport session given a URI <xref target="RFC3986"/> of the requester.
An origin <xref target="RFC6454"/> MUST be given if the WebTransport session is coming
from a browser client; otherwise, it is OPTIONAL.</t>
          </dd>
          <dt>terminate a session</dt>
          <dd>
            <t>Terminate the session while communicating to the peer an unsigned 32-bit
error code and an error reason string of at most 1024 bytes.  As soon as the
session is terminated, no further application data will be exchanged on it.
The error code and string are optional; the default values are 0 and "".  The
delivery of the error code and string MAY be best-effort.</t>
          </dd>
        </dl>
        <t>Any WebTransport protocol SHALL provide the following events:</t>
        <dl>
          <dt>session terminated event</dt>
          <dd>
            <t>Indicates that the WebTransport session has been terminated, either by the
peer or by the local networking stack, and no user data can be exchanged on
it any further.  If the session has been terminated as a result of the peer
performing the "terminate a session" operation above, a corresponding error
code and an error string can be provided.</t>
          </dd>
        </dl>
      </section>
      <section anchor="features-datagrams">
        <name>Datagrams</name>
        <t>A datagram is a sequence of bytes that is limited in size (generally to the path
MTU) and is not expected to be transmitted reliably.  The general goal for
WebTransport datagrams is to be similar in behavior to UDP while being subject
to common requirements expressed in <xref target="common-requirements"/>.</t>
        <t>A WebTransport sender is not expected to retransmit datagrams, though it may
end up doing so if it is using TCP or some other underlying protocol that only
provides reliable delivery.  WebTransport datagrams are not expected to be flow
controlled, meaning that the receiver might drop datagrams if the application
is not consuming them fast enough.</t>
        <t>The application MUST be provided with the maximum datagram size that it can
send.  The size SHOULD be derived from the result of performing path MTU
discovery.</t>
        <t>In the WebTransport model, all of the outgoing and incoming datagrams are
placed into a size-bound queue (similar to a network interface card queue).</t>
        <t>Any WebTransport protocol SHALL provide the following operations on the
session:</t>
        <dl>
          <dt>send a datagram</dt>
          <dd>
            <t>Enqueues a datagram to be sent to the peer.  This can potentially result in
the datagram being dropped if the queue is full.</t>
          </dd>
          <dt>receive a datagram</dt>
          <dd>
            <t>Dequeues an incoming datagram, if one is available.</t>
          </dd>
          <dt>get maxiumum datagram size</dt>
          <dd>
            <t>Returns the largest size of the datagram that a WebTransport session is
expected to be able to send.</t>
          </dd>
        </dl>
      </section>
      <section anchor="features-streams">
        <name>Streams</name>
        <t>A unidirectional stream is a one-way reliable in-order stream of bytes where the
initiator is the only endpoint that can send data.  A bidirectional stream
allows both endpoints to send data and can be conceptually represented as a pair
of unidirectional streams.</t>
        <t>The streams are in general expected to follow the semantics and the state
machine of QUIC streams (<xref target="RFC9000"/>, Sections 2 and 3).
TODO: describe the stream state machine explicitly.</t>
        <t>A WebTransport stream can be reset, indicating that the endpoint is not
interested in either sending or receiving any data related to the stream.  In
that case, the sender is expected to not retransmit any data that was already
sent on that stream.</t>
        <t>Streams SHOULD be sufficiently lightweight that they can be used as messages.</t>
        <t>Data sent on a stream is flow controlled by the transport protocol.  In addition
to flow controlling stream data, the creation of new streams is flow controlled
as well: an endpoint may only open a limited number of streams until the peer
explicitly allows creating more streams.  From the perspective of the client,
this is presented as a size-bounded queue of incoming streams.</t>
        <t>Any WebTransport protocol SHALL provide the following operations on the
session:</t>
        <dl>
          <dt>create a unidirectional stream</dt>
          <dd>
            <t>Creates an outgoing unidirectional stream; this operation may block until the
flow control of the underlying protocol allows for it to be completed.</t>
          </dd>
          <dt>create a bidirectional stream</dt>
          <dd>
            <t>Creates an outgoing bidirectional stream; this operation may block until the
flow control of the underlying protocol allows for it to be completed.</t>
          </dd>
          <dt>receive a unidirectional stream</dt>
          <dd>
            <t>Removes a stream from the queue of incoming unidirectional streams, if one is
available.</t>
          </dd>
          <dt>receive a bidirectional stream</dt>
          <dd>
            <t>Removes a stream from the queue of incoming unidirectional streams, if one is
available.</t>
          </dd>
        </dl>
        <t>Any WebTransport protocol SHALL provide the following operations on an
individual stream:</t>
        <dl>
          <dt>send bytes</dt>
          <dd>
            <t>Add bytes into the stream send buffer.  The sender can also indicate a FIN,
signalling the fact that no new data will be send on the stream.  Not
applicable for incoming unidirectional streams.</t>
          </dd>
          <dt>receive bytes</dt>
          <dd>
            <t>Removes bytes from the stream receive buffer.  FIN can be received together
with the stream data.  Not applicable for outgoing unidirectional streams.</t>
          </dd>
          <dt>abort send side</dt>
          <dd>
            <t>Sends a signal to the peer that the write side of the stream has been aborted.
Discards the send buffer; if possible, no currently outstanding data is
transmitted or retransmitted.  An unsigned 32-bit error code can be supplied
as a part of the signal to the peer; if omitted, the error code is presumed
to be 0.</t>
          </dd>
          <dt>abort receive side</dt>
          <dd>
            <t>Sends a signal to the peer that the read side of the stream has been aborted.
Discards the receive buffer; the peer is typically expected to abort the
corresponding send side in response.  An unsigned 32-bit error code can be
supplied as a part of the signal to the peer.</t>
          </dd>
        </dl>
        <t>Any WebTransport protocol SHALL provide the following events for an individual
stream:</t>
        <dl>
          <dt>send side aborted</dt>
          <dd>
            <t>Indicates that the peer has aborted the corresponding receive side of the
stream.  An unsigned 32-bit error code from the peer may be available.</t>
          </dd>
          <dt>receive side aborted</dt>
          <dd>
            <t>Indicates that the peer has aborted the corresponding send side of the
stream.  An unsigned 32-bit error code from the peer may be available.</t>
          </dd>
          <dt>all data committed</dt>
          <dd>
            <t>Indicates that all of the outgoing data on the stream, including the end
stream indication, is in the state where aborting the send side would have no
further effect on any data being delivered.</t>
          </dd>
          <dt/>
          <dd>
            <t>For protocols, like HTTP/2, stream data might be passed to another
component (like a kernel) for transmission. Once data is passed to that
component it might not be possible to abort the sending of stream data
without also aborting the entire connection.
For these protocols, data is considered committed once it passes to the
other component.</t>
          </dd>
          <dt/>
          <dd>
            <t>A protocol, like HTTP/3, that uses a more integrated stack might be able to
retract data further into the process. For these protocols, sending on a
stream might be aborted at any time until all data has been received and
acknowledged by the peer, corresponding to the "Data Recvd" state in QUIC;
see <xref section="3.1" sectionFormat="of" target="QUIC"/>.</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="transport-properties">
      <name>Transport Properties</name>
      <t>WebTransport defines common semantics for multiple protocols to allow them to
be used interchangeably.  Nevertheless, those protocols still have
substantially different performance properties that an application may want to
query.</t>
      <t>The most notable property is support for unreliable data delivery.  The
protocol is defined to support unreliable delivery if:</t>
      <ul spacing="normal">
        <li>
          <t>Resetting a stream results in the lost stream data no longer being
retransmitted, and</t>
        </li>
        <li>
          <t>The datagrams are never retransmitted.</t>
        </li>
      </ul>
      <t>Another important property is pooling support.  Pooling means that multiple
transport sessions may end up sharing the same transport layer connection, and
thus share a congestion controller and other contexts.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Providing untrusted clients with a reasonably low-level access to the network
comes with risks.  This document mitigates those risks by imposing a set of
common requirements described in <xref target="common-requirements"/>.</t>
      <t>WebTransport mandates the use of TLS for all protocols implementing it.  This
has a dual purpose.  On one hand, it protects the transport from the network,
including both potential attackers and ossification by middleboxes.  On the
other hand, it protects the network elements from potential confusion attacks
such as the one discussed in Section 10.3 of <xref target="RFC6455"/>.</t>
      <t>One potential concern is that even when a transport cannot be created, the
connection error would reveal enough information to allow an attacker to scan
the network addresses that would normally be inaccessible.  Because of that, the
user agent that runs untrusted clients MUST NOT provide any detailed error
information until the server has confirmed that it is a WebTransport endpoint.
For example, the client must not be able to distinguish between a network
address that is unreachable and one that is reachable but is not a WebTransport
server.</t>
      <t>WebTransport does not support any traditional means of HTTP-based
authentication.  It is not necessarily based on HTTP, and hence does not support
HTTP cookies or HTTP authentication.  Since it requires TLS, individual
transport protocols MAY expose TLS-based authentication capabilities such as
client certificates.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>There are no requests to IANA in this document.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="CSP" target="https://www.w3.org/TR/CSP/">
          <front>
            <title>Content Security Policy Level 3</title>
            <author>
              <organization>W3C</organization>
            </author>
            <date year="2025" month="February"/>
          </front>
        </reference>
        <reference anchor="RFC6455">
          <front>
            <title>The WebSocket Protocol</title>
            <author fullname="I. Fette" initials="I." surname="Fette"/>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>The WebSocket Protocol enables two-way communication between a client running untrusted code in a controlled environment to a remote host that has opted-in to communications from that code. The security model used for this is the origin-based security model commonly used by web browsers. The protocol consists of an opening handshake followed by basic message framing, layered over TCP. The goal of this technology is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections (e.g., using XMLHttpRequest or s and long polling). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6455"/>
          <seriesInfo name="DOI" value="10.17487/RFC6455"/>
        </reference>
        <reference anchor="RFC8831">
          <front>
            <title>WebRTC Data Channels</title>
            <author fullname="R. Jesup" initials="R." surname="Jesup"/>
            <author fullname="S. Loreto" initials="S." surname="Loreto"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>The WebRTC framework specifies protocol support for direct, interactive, rich communication using audio, video, and data between two peers' web browsers. This document specifies the non-media data transport aspects of the WebRTC framework. It provides an architectural overview of how the Stream Control Transmission Protocol (SCTP) is used in the WebRTC context as a generic transport service that allows web browsers to exchange generic data from peer to peer.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8831"/>
          <seriesInfo name="DOI" value="10.17487/RFC8831"/>
        </reference>
        <reference anchor="RFC9220">
          <front>
            <title>Bootstrapping WebSockets with HTTP/3</title>
            <author fullname="R. Hamilton" initials="R." surname="Hamilton"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The mechanism for running the WebSocket Protocol over a single stream of an HTTP/2 connection is equally applicable to HTTP/3, but the HTTP-version-specific details need to be specified. This document describes how the mechanism is adapted for HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9220"/>
          <seriesInfo name="DOI" value="10.17487/RFC9220"/>
        </reference>
        <reference anchor="RFC9221">
          <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="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="RFC7675">
          <front>
            <title>Session Traversal Utilities for NAT (STUN) Usage for Consent Freshness</title>
            <author fullname="M. Perumal" initials="M." surname="Perumal"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="R. Ravindranath" initials="R." surname="Ravindranath"/>
            <author fullname="T. Reddy" initials="T." surname="Reddy"/>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>To prevent WebRTC applications, such as browsers, from launching attacks by sending traffic to unwilling victims, periodic consent to send needs to be obtained from remote endpoints.</t>
              <t>This document describes a consent mechanism using a new Session Traversal Utilities for NAT (STUN) usage.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7675"/>
          <seriesInfo name="DOI" value="10.17487/RFC7675"/>
        </reference>
        <reference anchor="RFC5681">
          <front>
            <title>TCP Congestion Control</title>
            <author fullname="M. Allman" initials="M." surname="Allman"/>
            <author fullname="V. Paxson" initials="V." surname="Paxson"/>
            <author fullname="E. Blanton" initials="E." surname="Blanton"/>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document defines TCP's four intertwined congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery. In addition, the document specifies how TCP should begin transmission after a relatively long idle period, as well as discussing various acknowledgment generation methods. This document obsoletes RFC 2581. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5681"/>
          <seriesInfo name="DOI" value="10.17487/RFC5681"/>
        </reference>
        <reference anchor="RFC9002">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </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="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>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1cW3Mbx5V+71/RoR9WSgEgdfGN2mxCk1KsLV24JGWXK0mp
GkADmNVgBpmeIYSo9N/3fOec7ukBIVvxevcpfrBIYKb79Ll859ocj8emLdrS
n9qblbc/+ulN46qwqZvWXjZ1W8/q0j5r3Npv6+adcdNp429PB8+ZeT2r6IFT
O2/coh0Xvl2Mt37a4oFxfeub28Jvxyffmrlr6akPF2c3Tz+aGf2yrJvdqQ3t
3GD1ZVN3G1r76Xc3V2evro0pNs2pbZsutA9PTr49eWhc492pPdtsyoJeL+oq
WFfN7ZV35fimWHtjQksfvHVlXdFOOx/Mpji1f6FjjGwgWhu/CPTTbo0f/maM
69pV3ZwaOzaW/iuqcGp/mNgfXCjKwt/yh3K2H4pZWzfDb+pm6ariH0zJqf1z
XS9Lz1/4tSvKU3uLh29v/7Tkbyazek1nqhZ1s6ZXbj1ta8+vL0/5ldY1S9+e
2lXbbsLp8fF2u51sH01oi+Obq2N67FgeE1kdnddV66vWXvtZ1xTtzl7WxJOd
feFvfWkfHfHD6XRWqSXmPjrnX0UUPxLXi2ppLyA4Y8bjsXXTQIKb0W+foQ/W
V25a+mBnxJOqpX9JJPR6Ufm5ne5sK0uYEKlc13Mir63pwfW6qyBFb7dFu7LO
Nn5d02+B9MU3tgsgzFl+1dt1V7bFpvTv/dy0kaKJtc9b3rMItHm94Odb/FBU
8+K2mHeutBslOxA5rrWkQza4hQcV/v2mDt7QT13FekZku0y7RqBzyqcRIqvE
n3gUXrIs6y2W92usNfVEPb1SkIia2cpVS09c2k3A0iJYMpduDdnN/YKW5vcs
zISWISb8vSuIE8zNuuLv+gPosiYXy8i6YLee3nWyFFhLby68a4lzzJbBKqT/
3YYFSppIVkFmQ49sV8VsZdduB/LrDY7vyonoREVyefsK/2vrt2Rsc98EYy6K
MOtCoAdlCxwNekSq/I623ZRu5uMRBnoE44BwS5KauReRAl/9CdgBnb8/UoJo
UUc8JGshybTmr/8e7QOL6DeT+NYxPjgOnv/5IxvhW2zyh3yPv/7HRHS78ST8
goya9JQkyoYAWosQOqIfzMkONSPZE2cWdVftUbIkzeimsO5jgb5lQr/jn0PE
Y9kI9IAc+t6eXT6P29UNyW5TkxqDrFpJiarzaWq2xWw5UZKK+phWHaejH/PZ
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
AOCk7h5JTgAA

-->

</rfc>
