<?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-rfc2629 version 1.6.5 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-applicability-16" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="QUIC Applicability">Applicability of the QUIC Transport Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-applicability-16"/>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="B." surname="Trammell" fullname="Brian Trammell">
      <organization>Google</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <date year="2022" month="April" day="06"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document discusses the applicability of the QUIC transport protocol,
focusing on caveats impacting application protocol development and deployment
over QUIC. Its intended audience is designers of application protocol mappings
to QUIC, and implementors of these application protocols.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>QUIC <xref target="QUIC"/> is a new transport protocol providing a number of
advanced features. While initially designed for the HTTP use case, it provides
capabilities that can be used with a much wider variety of applications. QUIC is
encapsulated in UDP. QUIC version 1 integrates TLS 1.3 <xref target="TLS13"/> to
encrypt all payload data and most control information. The version of HTTP that
uses QUIC is known as HTTP/3 <xref target="QUIC-HTTP"/>.</t>
      <t>This document provides guidance for application developers that want to use
the QUIC protocol without implementing it on their own. This includes general
guidance for applications operating over HTTP/3 or directly over QUIC.</t>
      <t>In the following sections we discuss specific caveats to QUIC's applicability,
and issues that application developers must consider when using QUIC as a
transport for their application.</t>
    </section>
    <section anchor="fallback">
      <name>The Necessity of Fallback</name>
      <t>QUIC uses UDP as a substrate. This enables userspace implementation and permits
traversal of network middleboxes (including NAT) without requiring updates to
existing network infrastructure.</t>
      <t>Measurement studies have shown between three <xref target="Trammell16"/> and
five <xref target="Swett16"/> percent of networks block all UDP traffic, though there
is little evidence of other forms of systematic disadvantage to UDP traffic
compared to TCP <xref target="Edeline16"/>. This blocking implies that all applications
running on top of QUIC must either be prepared to accept connectivity failure
on such networks, or be engineered to fall back to some other transport
protocol. In the case of HTTP, this fallback is TLS over TCP.</t>
      <t>The IETF TAPS specifications <xref target="I-D.ietf-taps-arch"/> describe a system with a
common API for multiple protocols. This is particularly relevant for QUIC as
it addresses the implications of fallback among multiple protocols.</t>
      <t>Specifically, fallback to insecure protocols or to weaker versions of secure
protocols needs to be avoided. In general, a application that implements
fallback needs to consider the security consequences. A fallback to TCP and
TLS exposes control information to modification and manipulation in the
network. Further, downgrades to older TLS versions than 1.3, which is used
in QUIC version 1, might result in significantly weaker
cryptographic protection. For example, the results of protocol negotiation
<xref target="RFC7301"/> only have confidentiality protection if TLS 1.3 is used.</t>
      <t>These applications must operate, perhaps with impaired functionality, in the
absence of features provided by QUIC not present in the fallback protocol. For
fallback to TLS over TCP, the most obvious difference is that TCP does not
provide stream multiplexing and therefore stream multiplexing would need to be
implemented in the application layer if needed. Further, TCP implementations
and network paths often do not support the Fast Open option <xref target="RFC7413"/>, which
enables sending of payload data together with the first control packet of a new
connection as also provided by 0-RTT session resumption in QUIC. Note that
there is some evidence of middleboxes blocking SYN data even if TFO was
successfully negotiated (see <xref target="PaaschNanog"/>). And even if Fast Open
successfully operates end-to-end, it is limited to a single packet of TLS
handshake and application data, unlike QUIC 0-RTT.</t>
      <t>Moreover, while encryption (in this case TLS) is inseparably integrated with
QUIC, TLS negotiation over TCP can be blocked. If TLS over TCP cannot be
supported, the connection should be aborted, and the application then ought
to present a suitable prompt to the user that secure communication is
unavailable.</t>
      <t>In summary, any fallback mechanism is likely to impose a degradation of
performance and can degrade security; however, fallback must not silently
violate the application's expectation of confidentiality or integrity of its
payload data.</t>
    </section>
    <section anchor="zero-rtt">
      <name>Zero RTT</name>
      <t>QUIC provides for 0-RTT connection establishment. Though the same facility
exists in TLS 1.3 with TCP, 0-RTT presents opportunities and challenges for
applications using QUIC.</t>
      <t>A transport protocol that provides 0-RTT connection establishment is
qualitatively different than one that does not from the point of view of the
application using it. Relative trade-offs between the cost of closing and
reopening a connection and trying to keep it open are different; see
<xref target="resumption-v-keepalive"/>.</t>
      <t>An application needs to deliberately choose to use 0-RTT, as 0-RTT carries a
risk of replay attack.  Application protocols that use 0-RTT require a profile
that describes the types of information that can be safely sent. For HTTP, this
profile is described in <xref target="HTTP-REPLAY"/>.</t>
      <section anchor="replay-attacks">
        <name>Replay Attacks</name>
        <t>Retransmission or (malicious) replay of data contained in 0-RTT packets could
cause the server side to receive multiple copies of the same data.</t>
        <t>Application data sent by the client in 0-RTT packets could be processed more
than once if it is replayed. Applications need to be aware of what is safe to
send in 0-RTT. Application protocols that seek to enable the use of 0-RTT need
a careful analysis and a description of what can be sent in 0-RTT; see Section
5.6 of <xref target="QUIC-TLS"/>.</t>
        <t>In some cases, it might be sufficient to limit application data sent in 0-RTT
to that which only causes actions at a server that are known to be free of
lasting effect. Initiating data retrieval or establishing configuration are
examples of actions that could be safe. Idempotent operations - those for which
repetition has the same net effect as a single operation - might be safe.
However, it is also possible to combine individually idempotent operations into
a non-idempotent sequence of operations.</t>
        <t>Once a server accepts 0-RTT data there is no means of selectively discarding
data that is received. However, protocols can define ways to reject individual
actions that might be unsafe if replayed.</t>
        <t>Some TLS implementations and deployments might be able to provide partial or
even complete replay protection, which could be used to manage replay risk.</t>
      </section>
      <section anchor="resumption-v-keepalive">
        <name>Session resumption versus Keep-alive</name>
        <t>Because QUIC is encapsulated in UDP, applications using QUIC must deal with
short network idle timeouts. Deployed stateful middleboxes will generally
establish state for UDP flows on the first packet sent, and keep state for
much shorter idle periods than for TCP. <xref target="RFC5382"/> suggests a TCP idle
period of at least 124 minutes, though there is no evidence of widespread
implementation of this guideline in the literature. Short network timeout for
UDP, however, is well-documented. According to a 2010 study
(<xref target="Hatonen10"/>), UDP applications can assume that any NAT binding or other
state entry can expire after just thirty seconds of inactivity.  <xref section="3.5" sectionFormat="of" target="RFC8085"/> further discusses keep-alive intervals for UDP: it
requires a minimum value of 15 seconds, but recommends larger values, or
omitting keep-alive entirely.</t>
        <t>By using a connection ID, QUIC is designed to be robust to NAT address
rebinding after a timeout. However, this only helps if one endpoint maintains
availability at the address its peer uses, and the peer is the one to send
after the timeout occurs.</t>
        <t>Some QUIC connections might not be robust to NAT rebinding because the routing
infrastructure (in particular, load balancers) uses the address/port four-tuple
to direct traffic. Furthermore, middleboxes with functions other than address
translation could still affect the path. In particular, some firewalls do not
admit server traffic for which the firewall has no recent state for a
corresponding packet sent from the client.</t>
        <t>QUIC applications can adjust idle periods to manage the risk of timeout. Idle
periods and the network idle timeout are distinct from the connection idle
timeout, which is defined as the minimum of either endpoint's idle timeout
parameter; see <xref section="10.1" sectionFormat="of" target="QUIC"/>). There are three options:</t>
        <ul spacing="normal">
          <li>Ignore the issue, if the application-layer protocol consists only of
interactions with no or very short idle periods, or the protocol's resistance
to NAT rebinding is sufficient.</li>
          <li>Ensure there are no long idle periods.</li>
          <li>Resume the session after a long idle period, using 0-RTT resumption when
appropriate.</li>
        </ul>
        <t>The first strategy is the easiest, but it only applies to certain applications.</t>
        <t>Either the server or the client in a QUIC application can send PING frames as
keep-alives, to prevent the connection and any on-path state from timing out.
Recommendations for the use of keep-alives are application-specific, mainly
depending on the latency requirements and message frequency of the application.
In this case, the application mapping must specify whether the client or server
is responsible for keeping the application alive.  While <xref target="Hatonen10"/> suggests
that 30 seconds might be a suitable value for the public Internet when a NAT
is on path, larger values are preferable if the deployment can consistently
survive NAT rebinding or is known to be in a controlled environment (e.g.
data centres) in order to lower network and computational load.</t>
        <t>Sending PING frames more frequently than every 30 seconds over long idle
periods may result in excessive unproductive traffic in some situations, and to
unacceptable power usage for power-constrained (mobile) devices. Additionally,
timeouts shorter than 30 seconds can make it harder to handle transient network
interruptions, such as VM migration or coverage loss during mobilty.
See <xref target="RFC8085"/>, especially Section 3.5.</t>
        <t>Alternatively, the client (but not the server) can use session resumption
instead of sending keepalive traffic. In this case, a client that wants to send
data to a server over a connection that has been idle longer than the server's
idle timeout (available from the idle_timeout transport parameter) can simply
reconnect. When possible, this reconnection can use 0-RTT session resumption,
reducing the latency involved with restarting the connection. Of course, this
approach is only valid in cases in which it is safe to use 0-RTT and when the
client is the restarting peer.</t>
        <t>The tradeoffs between resumption and keep-alives need to be evaluated on a
per-application basis. In general, applications should use keep-alives only in
circumstances where continued communication is highly likely; <xref target="QUIC-HTTP"/>, for
instance, recommends using keep-alives only when a request is outstanding.</t>
      </section>
    </section>
    <section anchor="use-of-streams">
      <name>Use of Streams</name>
      <t>QUIC's stream multiplexing feature allows applications to run multiple streams
over a single connection, without head-of-line blocking between streams.  Stream
data is carried within frames, where one QUIC packet on the wire can carry one
or multiple stream frames.</t>
      <t>Streams can be unidirectional or bidirectional, and a stream may be initiated
either by client or server. Only the initiator of a unidirectional stream can
send data on it.</t>
      <t>Streams and connections can each carry a maximum of
 2<sup>62</sup>-1 bytes in each direction, due to encoding limitations on
stream offsets and connection flow control limits. In the presently unlikely
event that this limit is reached by an application, a new connection would
need to be established.</t>
      <t>Streams can be independently opened and closed, gracefully or abruptly. An
application can gracefully close the egress direction of a stream by instructing
QUIC to send a FIN bit in a STREAM frame. It cannot gracefully close the ingress
direction without a peer-generated FIN, much like in TCP. However, an endpoint
can abruptly close the egress direction or request that its peer abruptly close
the ingress direction; these actions are fully independent of each other.</t>
      <t>QUIC does not provide an interface for exceptional handling of any stream.
If a stream that is critical for an application is closed, the application can
generate error messages on the application layer to inform the other end and/or
the higher layer, which can eventually terminate the QUIC connection.</t>
      <t>Mapping of application data to streams is application-specific and described for
HTTP/3 in <xref target="QUIC-HTTP"/>. There are a few general principles to apply when
designing an application's use of streams:</t>
      <ul spacing="normal">
        <li>A single stream provides ordering. If the application requires certain data to
be received in order, that data should be sent on the same stream. There is
no guarantee of transmission, reception, or delivery order across streams.</li>
        <li>Multiple streams provide concurrency. Data that can be processed
independently, and therefore would suffer from head of line blocking if forced
to be received in order, should be transmitted over separate streams.</li>
        <li>Streams can provide message orientation, and allow messages to be cancelled.
If one message is mapped to a single stream, resetting the stream to expire an
unacknowledged message can be used to emulate partial reliability
for that message.</li>
      </ul>
      <t>If a QUIC receiver has opened the maximum allowed concurrent
streams, and the sender indicates that more streams are needed, it
does not automatically lead to an increase of the maximum number of
streams by the receiver. Therefore, an application can use the maximum
number of allowed, currently open, and currently used streams when
determining how to map data to streams.</t>
      <t>QUIC assigns a numerical identifier to each stream, called the stream ID.  While
the relationship between these identifiers and stream types is clearly defined
in version 1 of QUIC, future versions might change this relationship for various
reasons. QUIC implementations should expose the properties of each stream
(which endpoint initiated the stream, whether the stream is unidirectional or
bidirectional, the stream ID used for the stream); applications should query for
these properties rather than attempting to infer them from the stream ID.</t>
      <t>The method of allocating stream identifiers to streams opened by the application
might vary between transport implementations. Therefore, an application should
not assume a particular stream ID will be assigned to a stream that has not yet
been allocated.  For example, HTTP/3 uses stream IDs to refer to streams that
have already been opened, but makes no assumptions about future stream IDs or
the way in which they are assigned <xref section="6" sectionFormat="of" target="QUIC-HTTP"/>).</t>
      <section anchor="stream-versus-flow-multiplexing">
        <name>Stream versus Flow Multiplexing</name>
        <t>Streams are meaningful only to the application; since stream information is
carried inside QUIC's encryption boundary, a given packet exposes
no information about which
stream(s) are carried within the packet.
Therefore, stream multiplexing is not intended to be used for differentiating
streams in terms of network treatment. Application traffic requiring different
network treatment should therefore be carried over different five-tuples (i.e.
multiple QUIC connections). Given QUIC's ability to send application data in
the first RTT of a connection (if a previous connection to the same host has
been successfully established to provide the necessary credentials), the cost
of establishing another connection is extremely low.</t>
      </section>
      <section anchor="prioritization">
        <name>Prioritization</name>
        <t>Stream prioritization is not exposed to either the network or the receiver.
Prioritization is managed by the sender, and the QUIC transport should
provide an interface for applications to prioritize streams <xref target="QUIC"/>.
Applications can implement their own prioritization scheme on top of QUIC: an
application protocol that runs on top of QUIC can define explicit messages
for signaling priority, such as those defined in
<xref target="I-D.draft-ietf-httpbis-priority"/> for HTTP; it can define rules
that allow an endpoint to determine priority based on context; or it can
provide a higher level interface and leave the determination to the
application on top.</t>
        <t>Priority handling of retransmissions can be implemented by the sender in the
transport layer. <xref target="QUIC"/> recommends retransmitting lost data before new data,
unless indicated differently by the application. When a QUIC endpoint uses
fully reliable streams for transmission, prioritization of retransmissions will
be beneficial in most cases, filling in gaps and freeing up the flow
control window. For partially reliable or unreliable streams,
priority scheduling of retransmissions over data of higher-priority streams
might not be desirable. For such streams, QUIC could either provide an
explicit interface to control prioritization, or derive the prioritization
decision from the reliability level of the stream.</t>
      </section>
      <section anchor="ordered-and-reliable-delivery">
        <name>Ordered and Reliable Delivery</name>
        <t>QUIC streams enable ordered and reliable delivery.  Though it is possible for an
implementation to provide options that use streams for partial reliability
or out-of-order delivery, most implementations will assume that data is
reliably delivered in order.</t>
        <t>Under this assumption, an endpoint that receives stream data might not make
forward progress until data that is contiguous with the start of a stream is
available.  In particular, a receiver might withhold flow control credit until
contiguous data is delivered to the application; see <xref section="2.2" sectionFormat="of" target="QUIC"/>.
To support this receive logic, an endpoint will send stream data until it is
acknowledged, ensuring that data at the start of the stream is sent and
acknowledged first.</t>
        <t>An endpoint that uses a different sending behavior and does not negotiate that
change with its peer might encounter performance issues or deadlocks.</t>
      </section>
      <section anchor="flow-control-deadlocks">
        <name>Flow Control Deadlocks</name>
        <t>QUIC flow control <xref section="4" sectionFormat="of" target="QUIC"/> provides a means of managing access
to the limited buffers endpoints have for incoming data.  This mechanism limits
the amount of data that can be in buffers in endpoints or in transit on the
network.  However, there are several ways in which limits can produce conditions
that can cause a connection to either perform suboptimally or deadlock.</t>
        <t>Deadlocks in flow control are possible for any protocol that uses QUIC, though
whether they become a problem depends on how implementations consume data and
provide flow control credit.  Understanding what causes deadlocking might help
implementations avoid deadlocks.</t>
        <t>The size and rate of transport flow control credit updates can affect
performance. Applications that use QUIC often have a data consumer that reads
data from transport buffers. Some implementations might have independent
transport-layer and application-layer receive buffers. Consuming data does not
always imply it is immediately processed. However, a common flow control
implementation technique is to extend credit to the sender, by emitting MAX_DATA
and/or MAX_STREAM_DATA frames, as data is consumed. Delivery of these frames
is affected by the latency of the back channel from the receiver to the data
sender. If credit is not extended in a timely manner, the
sending application can be blocked, effectively throttling the sender.</t>
        <t>Large application messages can produce deadlocking if the recipient does not
read data from the transport incrementally. If the message is larger than the
flow control credit available and the recipient does not release additional flow
control credit until the entire message is received and delivered, a deadlock
can occur. This is possible even where stream flow control limits are not
reached because connection flow control limits can be consumed by other streams.</t>
        <t>A length-prefixed message format makes it easier for a data consumer to leave
data unread in the transport buffer and thereby withhold flow control credit. If
flow control limits prevent the remainder of a message from being sent, a
deadlock will result.  A length prefix might also enable the detection of this
sort of deadlock.  Where application protocols have messages that might be
processed as a single unit, reserving flow control credit for the entire message
atomically makes this style of deadlock less likely.</t>
        <t>A data consumer can eagerly read all data as it becomes available, in order to
make the receiver extend flow control credit and reduce the chances of a
deadlock.  However, such a data consumer might need other means for holding a
peer accountable for the additional state it keeps for partially processed
messages.</t>
        <t>Deadlocking can also occur if data on different streams is interdependent.
Suppose that data on one stream arrives before the data on a second stream on
which it depends.  A deadlock can occur if the first stream is left unread,
preventing the receiver from extending flow control credit for the second
stream.  To reduce the likelihood of deadlock for interdependent data, the
sender should ensure that dependent data is not sent until the data
it depends on has been accounted for in both stream- and connection- level flow
control credit.</t>
        <t>Some deadlocking scenarios might be resolved by cancelling affected streams with
STOP_SENDING or RESET_STREAM.  Cancelling some streams results in the connection
being terminated in some protocols.</t>
      </section>
      <section anchor="stream-limit-commitments">
        <name>Stream Limit Commitments</name>
        <t>QUIC endpoints are responsible for communicating the cumulative limit of streams
they would allow to be opened by their peer. Initial limits are advertised using
the initial_max_streams_bidi and initial_max_streams_uni transport parameters.
As streams are opened and closed they are consumed and the cumulative total is
incremented. Limits can be increased using the MAX_STREAMS frame but there is no
mechanism to reduce limits. Once stream limits are reached, no more streams can
be opened, which prevents applications using QUIC from making further progress.
At this stage connections can be terminated via idle timeout or explicit close;
see <xref target="sec-termination"/>).</t>
        <t>An application that uses QUIC and communicated a cumulative stream limit might
require the connection to be closed before the limit is reached. For example,
to stop the server to perform scheduled maintenance. Immediate connection close
causes abrupt closure of actively used streams. Depending on how an application
uses QUIC streams, this could be undesirable or detrimental to behavior or
performance.</t>
        <t>A more graceful closure technique is to stop sending increases to
stream limits and allow the connection to naturally terminate once remaining
streams are consumed. However, the period of time it takes to do so is dependent
on the peer and an unpredictable closing period might not fit application or
operational needs. Applications using QUIC can be conservative with open stream
limits in order to reduce the commitment and indeterminism. However, being
overly conservative with stream limits affects stream concurrency. Balancing
these aspects can be specific to applications and their deployments.</t>
        <t>Instead of
relying on stream limits to avoid abrupt closure, an application-layer graceful
close mechanism can be used to communicate the intention to explicitly close the
connection at some future point. HTTP/3 provides such a mechanism using the
GOAWAY frame. In HTTP/3, when the GOAWAY frame is received by a client, it
stops opening new streams even if the cumulative stream limit would allow.
Instead, the client would create a new connection on which to open further
streams.  Once all streams are closed on the old connection, it can be
terminated safely by a connection close or after expiration of the idle time out
(see also <xref target="sec-termination"/>).</t>
      </section>
    </section>
    <section anchor="packetization-and-latency">
      <name>Packetization and Latency</name>
      <t>QUIC exposes an interface that provides multiple streams to the application;
however, the application usually cannot control how data transmitted over those
streams is mapped into frames or how those frames are bundled into packets.</t>
      <t>By default, many implementations will try to maximally pack QUIC packets
DATA frames from one or more streams to minimize bandwidth consumption and
computational costs (see <xref section="13" sectionFormat="of" target="QUIC"/>). If there is not enough data
available to fill a packet, an implementation might wait for a short time, to
optimize bandwidth efficiency instead of latency. This delay can either be
pre-configured or dynamically adjusted based on the observed sending pattern of
the application.</t>
      <t>If the application requires low latency, with only small chunks of data to
send, it may be valuable to indicate to QUIC that all data should be sent out
immediately. Alternatively, if the application expects to use a specific
sending pattern, it can also provide a suggested delay to QUIC for how long to
wait before bundle frames into a packet.</t>
      <t>Similarly, an application has usually no control about the length of a QUIC
packet on the wire. QUIC provides the ability to add a PADDING frame to
arbitrarily increase the size of packets. Padding is used by QUIC to ensure that
the path is capable of transferring datagrams of at least a certain size, during
the handshake (see Sections <xref target="QUIC" section="8.1" sectionFormat="bare"/> and <xref target="QUIC" section="14.1" sectionFormat="bare"/> of <xref target="QUIC"/>) and for path validation
after connection migration (see <xref section="8.2" sectionFormat="of" target="QUIC"/>) as well as for Datagram
Packetization Layer PMTU Discovery (DPLMTUD) (see <xref section="14.3" sectionFormat="of" target="QUIC"/>).</t>
      <t>Padding can also be used by an application to reduce leakage of
information about the data that is sent. A QUIC implementation can expose an
interface that allows an application layer to specify how to apply padding.</t>
    </section>
    <section anchor="error-handling">
      <name>Error Handling</name>
      <t>QUIC recommends that endpoints signal any detected errors to
the peer. Errors can occur at the transport level and the application level.
Transport errors, such as a protocol violation, affect the entire connection.
Applications that use QUIC can define their own error detection and signaling
(see, for example, <xref section="8" sectionFormat="of" target="QUIC-HTTP"/>). Application errors can affect an
entire connection or a single stream.</t>
      <t>QUIC defines an error code space that is used for error handling at the
transport layer. QUIC encourages endpoints to use the most specific code,
although any applicable code is permitted, including generic ones.</t>
      <t>Applications using QUIC define an error
code space that is independent from QUIC or other applications (see, for
example, <xref section="8.1" sectionFormat="of" target="QUIC-HTTP"/>). The values in an application error code
space can be reused across connection-level and stream-level errors.</t>
      <t>Connection errors lead to connection termination. They are signaled using a
CONNECTION_CLOSE frame, which contains an error code and a reason field that can
be zero length. Different types of CONNECTION_CLOSE frame are used to
signal transport and application errors.</t>
      <t>Stream errors lead to stream termination. These are signaled using
STOP_SENDING or
RESET_STREAM frames, which contain only an error code.</t>
    </section>
    <section anchor="acknowledgment-efficiency">
      <name>Acknowledgment Efficiency</name>
      <t>QUIC version 1 without extensions uses an acknowledgment strategy
adopted from TCP <xref section="13.2" sectionFormat="of" target="QUIC"/>).
That is, it recommends every other packet is acknowledged.
However, generating and processing QUIC acknowledgments consumes resources
at a sender and receiver.  Acknowledgments also incur forwarding costs and
contribute to link utilization, which can impact performance over some
types of network.
Applications might be able to improve overall performance
by using alternative strategies that reduce the rate of acknowledgments.</t>
    </section>
    <section anchor="ports">
      <name>Port Selection and Application Endpoint Discovery</name>
      <t>In general, port numbers serve two purposes: "first, they provide a
demultiplexing identifier to differentiate transport sessions between the same
pair of endpoints, and second, they may also identify the application protocol
and associated service to which processes connect" <xref target="RFC6335"/>. The assumption
that an application can be identified in the network based on the port number
is less true today due to encapsulation, mechanisms for dynamic port
assignments, and NATs.</t>
      <t>As QUIC is a general-purpose transport protocol, there are no requirements that
servers use a particular UDP port for QUIC. For applications with a fallback to
TCP that do not already have an alternate mapping to UDP, usually the
registration (if necessary) and use of the UDP port number corresponding to the
TCP port already registered for the application is appropriate. For example,
the default port for HTTP/3 <xref target="QUIC-HTTP"/> is UDP port 443, analogous to HTTP/1.1
or HTTP/2 over TLS over TCP.</t>
      <t>Given the prevalence of the assumption in network management
practice that a port number maps unambiguously to an application, the
use of ports that cannot easily be mapped to a registered service name
might lead to blocking or other changes to the forwarding behavior by network
elements such as firewalls that use the port number for application
identification.</t>
      <t>Applications could define an alternate endpoint discovery mechanism to allow
the usage of ports other than the default. For example, HTTP/3 (Sections <xref target="QUIC-HTTP" section="3.2" sectionFormat="bare"/> and <xref target="QUIC-HTTP" section="3.3" sectionFormat="bare"/> of <xref target="QUIC-HTTP"/>) specifies the use of HTTP Alternative Services
<xref target="RFC7838"/> for an HTTP origin to advertise the availability of an equivalent
HTTP/3 endpoint on a certain UDP port by using the "h3" Application-Layer
Protocol Negotiation (ALPN) <xref target="RFC7301"/> token.</t>
      <t>ALPN permits the
client and server to negotiate which of several protocols will be used on a
given connection.  Therefore, multiple applications might be supported on a
single UDP port based on the ALPN token offered.  Applications using QUIC
are required to register an ALPN token for use in the TLS handshake.</t>
      <t>As QUIC version 1 deferred defining a complete version negotiation mechanism,
HTTP/3 requires QUIC version 1 and defines the
ALPN token ("h3") to only apply to that version.
So far no single approach has been selected for
managing the use of different QUIC versions, neither in HTTP/3 nor in general.
Application protocols that use QUIC need to
consider how the protocol will manage different QUIC versions.
Decisions for those protocols might be informed by choices made by other
protocols, like HTTP/3.</t>
      <section anchor="source-port-selection">
        <name>Source Port Selection</name>
        <t>Some UDP protocols are vulnerable to reflection attacks, where an attacker is
able to direct traffic to a third party as a denial of service. For example,
these source ports are associated with applications known to be vulnerable to
reflection attacks, often due to server misconfiguration:</t>
        <ul spacing="normal">
          <li>port 53 - DNS <xref target="RFC1034"/></li>
          <li>port 123 - NTP <xref target="RFC5905"/></li>
          <li>port 1900 - SSDP <xref target="SSDP"/></li>
          <li>port 5353 - mDNS <xref target="RFC6762"/></li>
          <li>port 11211 - memcached</li>
        </ul>
        <t>Services might block source ports associated with protocols known to be
vulnerable to reflection attacks, to avoid the overhead of processing large
numbers of packets. However, this practice has negative effects on
clients: not only does it require establishment of a new connection, but in
some instances, might cause the client to avoid using QUIC for that service for
a period of time, downgrading to a non-UDP protocol (see <xref target="fallback"/>).</t>
        <t>As a result, client implementations are encouraged to avoid using source ports
associated with protocols known to be vulnerable to reflection attacks. Note
that the list above is not exhaustive; other source ports might be considered
reflection vectors as well.</t>
      </section>
    </section>
    <section anchor="connection-migration">
      <name>Connection Migration</name>
      <t>QUIC supports connection migration by the client. If an IP address
changes, a QUIC endpoint can still associate packets with an existing
transport connection using the Destination Connection ID field
(see also <xref target="connid"/>) in the QUIC header.
This supports cases where address information changes, such as NAT rebinding,
intentional change of the local interface, or based on an indication in the
handshake of the server for a preferred address to be used.</t>
      <t>Use of a non-zero-length connection ID for the server is strongly recommended if
any clients are behind a NAT or could be. A non-zero-length connection ID is
also strongly recommended when active migration is supported. If a connection
is intentionally migrated to new path, a new connection ID is used to minimize
linkability by network observers. The other QUIC endpoint uses the
connection ID to link different addresses to the same connection
and entity if a non-zero-length connection ID is provided.</t>
      <t>The base specification of QUIC version 1 only supports the use of a single
network path at a time, which
enables failover use cases.  Path validation is required so that endpoints
validate paths before use to avoid address spoofing attacks.  Path validation
takes at least one RTT and congestion control will also be reset after path
migration. Therefore, migration usually has a performance impact.</t>
      <t>QUIC probing packets, which can be sent on multiple paths at once, are used to
perform address validation as well as measure path characteristics.  Probing
packets cannot carry application data but likely contain padding frames.
Endpoints can use information about their receipt as input to congestion control
for that path. Applications could use information learned from probing to inform
a decision to switch paths.</t>
      <t>Only the client can actively migrate in version 1 of QUIC. However, servers can
indicate during the handshake that they prefer to transfer the connection to a
different address after the handshake. For instance, this could be used to move
from an address that is shared by multiple servers to an address that is unique
to the server instance. The server can provide an IPv4 and an IPv6 address in a
transport parameter during the TLS handshake and the client can select between
the two if both are provided. See also <xref section="9.6" sectionFormat="of" target="QUIC"/>.</t>
    </section>
    <section anchor="sec-termination">
      <name>Connection Termination</name>
      <t>QUIC connections are terminated in one of three ways: implicit idle timeout,
explicit immediate close, or explicit stateless reset.</t>
      <t>QUIC does not provide any mechanism for graceful connection termination;
applications using QUIC can define their own graceful termination process (see,
for example, <xref section="5.2" sectionFormat="of" target="QUIC-HTTP"/>).</t>
      <t>QUIC idle timeout is enabled via transport parameters. Client and server
announce a timeout period and the effective value for the connection is the
minimum of the two values. After the timeout period elapses, the connection is
silently closed. An application therefore should be able to configure its own
maximum value, as well as have access to the computed minimum value for this
connection. An application may adjust the maximum idle timeout for new
connections based on the number of open or expected connections, since shorter
timeout values may free-up resources more quickly.</t>
      <t>Application data exchanged on streams or in datagrams defers the QUIC idle
timeout. Applications that provide their own keep-alive mechanisms will
therefore keep a QUIC connection alive. Applications that do not provide their
own keep-alive can use transport-layer mechanisms (see <xref section="10.1.2" sectionFormat="of" target="QUIC"/>, and <xref target="resumption-v-keepalive"/>). However, QUIC implementation
interfaces for controlling such transport behavior can vary, affecting the
robustness of such approaches.</t>
      <t>An immediate close is signaled by a CONNECTION_CLOSE frame (see
<xref target="error-handling"/>). Immediate close causes all streams to become immediately
closed, which may affect applications; see <xref target="stream-limit-commitments"/>.</t>
      <t>A stateless reset is an option of last resort for an endpoint that does not have
access to connection state. Receiving a stateless reset is an indication of an
unrecoverable error distinct from connection errors in that there is no
application-layer information provided.</t>
    </section>
    <section anchor="connid">
      <name>Information Exposure and the Connection ID</name>
      <t>QUIC exposes some information to the network in the unencrypted part of the
header, either before the encryption context is established or because the
information is intended to be used by the network. For more information on
manageability of QUIC see also <xref target="I-D.ietf-quic-manageability"/>.
QUIC has a long header that
exposes some additional information (the version and the source connection ID),
while the short header exposes only the destination connection ID.
In QUIC version 1, the long header is used during connection establishment,
while the short header is used for data transmission in an established
connection.</t>
      <t>The connection ID can be zero length. Zero length connection IDs can be
chosen on each endpoint individually, on any packet except the first packets
sent by clients during connection establishment.</t>
      <t>An endpoint that selects a zero-length connection ID will receive packets with a
zero-length destination connection ID. The endpoint needs to use other
information, such as the source and destination IP address and port number to
identify which connection is referred to. This could mean that the endpoint is
unable to match datagrams to connections successfully if these values change,
making the connection effectively unable to survive NAT rebinding or migrate to
a new path.</t>
      <section anchor="server-generated-connection-id">
        <name>Server-Generated Connection ID</name>
        <t>QUIC supports a server-generated connection ID, transmitted to the client during
connection establishment (see <xref section="7.2" sectionFormat="of" target="QUIC"/>). Servers behind load
balancers may need to change the connection ID during the handshake, encoding
the identity of the server or information about its load balancing pool, in
order to support stateless load balancing.</t>
        <t>Server deployments with load balancers and other routing infrastructure need to
ensure that this infrastructure consistently routes packets to the server
instance that has the connection state, even if addresses, ports, and/or
connection IDs change. This might require coordination between servers and
infrastructure. One method of achieving this involves encoding routing
information into the connection ID. For an example of this technique, see
<xref target="QUIC-LB"/>.</t>
      </section>
      <section anchor="mitigating-timing-linkability-with-connection-id-migration">
        <name>Mitigating Timing Linkability with Connection ID Migration</name>
        <t>QUIC requires that endpoints generate fresh connection IDs for use on new
network paths. Choosing values that are unlinkable to an outside observer
ensures that activity on different paths cannot be trivially correlated
using the connection ID.</t>
        <t>While sufficiently robust connection ID generation schemes will mitigate
linkability issues, they do not provide full protection. Analysis of
the lifetimes of six-tuples (source and destination addresses as well as the
migrated CID) may expose these links anyway.</t>
        <t>In the limit where connection migration in a server pool is rare, it is trivial
for an observer to associate two connection IDs. Conversely, in the opposite
limit where every server handles multiple simultaneous migrations, even an
exposed server mapping may be insufficient information.</t>
        <t>The most efficient mitigations for these attacks are through network design
and/or operational practice, by using a load balancing architecture that
loads more flows onto a single server-side address, by coordinating the
timing of migrations in an attempt to increase the number of simultaneous
migrations at a given time, or through other means.</t>
      </section>
      <section anchor="using-server-retry-for-redirection">
        <name>Using Server Retry for Redirection</name>
        <t>QUIC provides a Retry packet that can be sent by a server in response to
the client Initial packet. The server may choose a new connection ID in that
packet and the client will retry by sending another client Initial packet with
the server-selected connection ID. This mechanism can be used to redirect a
connection to a different server, e.g., due to performance reasons or when
servers in a server pool are upgraded gradually, and therefore may support
different versions of QUIC.</t>
        <t>In this case, it is assumed that all servers belonging to a certain pool are
served in cooperation with load balancers that forward the traffic based on the
connection ID. A server can choose the connection ID in the Retry packet such
that the load balancer will redirect the next Initial packet to a different
server in that pool.  Alternatively the load balancer can directly offer a Retry
service as further described in <xref target="QUIC-LB"/>.</t>
        <t><xref section="4" sectionFormat="of" target="RFC5077"/> describes an example approach for constructing
TLS resumption tickets that can be also applied for validation tokens,
however, the use of more modern cryptographic algorithms is highly recommended.</t>
      </section>
    </section>
    <section anchor="quality-of-service-qos-and-dscp">
      <name>Quality of Service (QoS) and DSCP</name>
      <t>QUIC, as defined in <xref target="QUIC"/>, has a single congestion controller and
recovery handler. This design
assumes that all packets of a QUIC connection, or at least with the
same 5-tuple {dest addr, source addr, protocol, dest port, source port},
that have the same DiffServ Code Point (DSCP) <xref target="RFC2475"/> will
receive similar network treatment since feedback about loss or delay
of each packet is used as input to the congestion controller. Therefore,
packets belonging to the same connection should use a single DSCP.
Section 5.1 of <xref target="RFC7657"/> provides a discussion of DiffServ interactions
with datagram transport protocols <xref target="RFC7657"/> (in this respect the
interactions with QUIC resemble those of SCTP).</t>
      <t>When multiplexing multiple flows
over a single QUIC connection, the selected DSCP value should be the one
associated with the highest priority requested for all multiplexed flows.</t>
      <t>If differential network treatment is desired,
e.g., by the use of different DSCPs, multiple QUIC
connections to the same server may be used. However, in general it is
recommended to minimize the number of QUIC connections to the same server, to
avoid increased overhead and, more importantly, competing congestion control.</t>
      <t>As in other uses of DiffServ,
when a packet enters a network segment that does not support the DSCP value,
this could result in the connection not receiving the network treatment
it expects. The DSCP value in this packet could also be remarked as the
packet travels along the network path, changing the requested treatment.</t>
    </section>
    <section anchor="use-of-versions-and-cryptographic-handshake">
      <name>Use of Versions and Cryptographic Handshake</name>
      <t>Versioning in QUIC may change the protocol's behavior completely, except
for the meaning of a few header fields that have been declared to be invariant
<xref target="QUIC-INVARIANTS"/>. A version of QUIC
with a higher version number will not necessarily provide a better service,
but might simply provide a different feature set. As such, an application needs
to be able to select which versions of QUIC it wants to use.</t>
      <t>A new version could use an encryption scheme other than TLS 1.3 or higher.
<xref target="QUIC"/> specifies requirements for the cryptographic handshake as currently
realized by TLS 1.3 and described in a separate specification
<xref target="QUIC-TLS"/>. This split is performed to enable
light-weight versioning with different cryptographic handshakes.</t>
    </section>
    <section anchor="enabling-new-versions">
      <name>Enabling New Versions</name>
      <t>QUIC version 1 does not specify a version negotation mechanism in the base spec
but <xref target="I-D.draft-ietf-quic-version-negotiation"/> proposes an extension. This
process assumes that the set of versions that a server supports is fixed.  This
complicates the process for deploying new QUIC versions or disabling old
versions when servers operate in clusters.</t>
      <t>A server that rolls out a new version of QUIC can do so in three stages.  Each
stage is completed across all server instances before moving to the next stage.</t>
      <t>In the first stage of deployment, all server instances start accepting new
connections with the new version.  The new version can be enabled progressively
across a deployment, which allows for selective testing.  This is especially
useful when the new version is compatible with an old version, because the new
version is more likely to be used.</t>
      <t>While enabling the new version, servers do not advertise the new version in any
Version Negotiation packets they send.  This prevents clients that receive a
Version Negotiation packet from attempting to connect to server instances that
might not have the new version enabled.</t>
      <t>During the initial deployment, some clients will have received Version
Negotiation packets that indicate that the server does not support the new
version.  Other clients might have successfully connected with the new version
and so will believe that the server supports the new version.  Therefore,
servers need to allow for this ambiguity when validating the negotiated version.</t>
      <t>The second stage of deployment commences once all server instances are able to
accept new connections with the new version.  At this point, all servers can
start sending the new version in Version Negotiation packets.</t>
      <t>During the second stage, the server still allows for the possibility that some
clients believe the new version to be available and some do not.  This state
will persist only for as long as any Version Negotiation packets take to be
transmitted and responded to.  So the third stage can follow after a relatively
short delay.</t>
      <t>The third stage completes the process by enabling authentication of the
negotiated version with the assumption that the new version is fully available.</t>
      <t>The process for disabling an old version or rolling back the introduction of a
new version uses the same process in reverse.  Servers disable validation of the
old version, stop sending the old version in Version Negotiation packets, then
the old version is no longer accepted.</t>
    </section>
    <section anchor="unreliable-datagram-service-over-quic">
      <name>Unreliable Datagram Service over QUIC</name>
      <t><xref target="I-D.ietf-quic-datagram"/> specifies a QUIC extension to enable sending
and receiving unreliable datagrams over QUIC. Unlike operating directly over
UDP, applications that use the QUIC datagram service do not need to implement
their own congestion control, per <xref target="RFC8085"/>, as QUIC datagrams are
congestion controlled.</t>
      <t>QUIC datagrams are not flow-controlled, and as such data chunks may be dropped
if the receiver is overloaded. While the reliable transmission service of QUIC
provides a stream-based interface to send and receive data in order over
multiple QUIC streams, the datagram service has an unordered message-based
interface. If needed, an application layer framing can be used on top to
allow separate flows of unreliable datagrams to be multiplexed on one QUIC
connection.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA; however, note that <xref target="ports"/>
recommends that application bindings to QUIC for applications using
TCP register UDP ports analogous to their existing TCP registrations.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>See the security considerations in <xref target="QUIC"/> and <xref target="QUIC-TLS"/>; the security
considerations for the underlying transport protocol are relevant for
applications using QUIC, as well. Considerations on linkability, replay attacks,
and randomness discussed in <xref target="QUIC-TLS"/> should be taken into account when
deploying and using QUIC.</t>
      <t>Further, migration to an new address exposes
a linkage between client addresses to the server and may expose this linkage
also to the path if the connection ID cannot be changed or flows can
otherwise be correlated. When migration is supported, this needs to be
considered with respective to user privacy.</t>
      <t>Application developers should note that any fallback they use when QUIC cannot
be used due to network blocking of UDP should guarantee the same security
properties as QUIC; if this is not possible, the connection should fail to
allow the application to explicitly handle fallback to a less-secure
alternative. See <xref target="fallback"/>.</t>
      <t>Further, <xref target="QUIC-HTTP"/> provides security considerations specific to HTTP.
However, discussions such as on cross-protocol attacks, traffic analysis
and padding, or migration might be relevant for other applications using QUIC
as well.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>The following people have contributed significant text to and/or feedback
on this document:</t>
      <ul spacing="normal">
        <li>Gorry Fairhurst</li>
        <li>Ian Swett</li>
        <li>Igor Lubashev</li>
        <li>Lucas Pardue</li>
        <li>Mike Bishop</li>
        <li>Mark Nottingham</li>
        <li>Martin Duke</li>
        <li>Martin Thomson</li>
        <li>Sean Turner</li>
        <li>Tommy Pauly</li>
      </ul>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Special thanks to last-call reviewers Chris Lonvick and Ines Robles.</t>
      <t>This work was partially supported by the European Commission under Horizon 2020
grant agreement no. 688421 Measurement and Architecture for a Middleboxed
Internet (MAMI), and by the Swiss State Secretariat for Education, Research, and
Innovation under contract no. 15.0268. This support does not imply endorsement.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="QUIC-INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="Trammell16" target="https://ripe72.ripe.net/wp-content/uploads/presentations/86-atlas-udpdiff.pdf">
          <front>
            <title>Internet Path Transparency Measurements using RIPE Atlas (RIPE72 MAT presentation)</title>
            <author initials="B." surname="Trammell">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind">
              <organization/>
            </author>
            <date year="2016" month="May" day="25"/>
          </front>
        </reference>
        <reference anchor="Edeline16" target="https://arxiv.org/abs/1612.07816">
          <front>
            <title>Using UDP for Internet Transport Evolution (arXiv preprint 1612.07816)</title>
            <author initials="K." surname="Edeline">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind">
              <organization/>
            </author>
            <author initials="B." surname="Trammell">
              <organization/>
            </author>
            <author initials="E." surname="Aben">
              <organization/>
            </author>
            <author initials="B." surname="Donnet">
              <organization/>
            </author>
            <date year="2016" month="December" day="22"/>
          </front>
        </reference>
        <reference anchor="Swett16" target="https://www.ietf.org/proceedings/96/slides/slides-96-quic-3.pdf">
          <front>
            <title>QUIC Deployment Experience at Google (IETF96 QUIC BoF presentation)</title>
            <author initials="I." surname="Swett">
              <organization/>
            </author>
            <date year="2016" month="July" day="20"/>
          </front>
        </reference>
        <reference anchor="PaaschNanog" target="https://www.nanog.org/sites/default/files/Paasch_Network_Support.pdf">
          <front>
            <title>Network Support for TCP Fast Open (NANOG 67 presentation)</title>
            <author initials="C." surname="Paasch">
              <organization/>
            </author>
            <date year="2016" month="June" day="13"/>
          </front>
        </reference>
        <reference anchor="Hatonen10">
          <front>
            <title>An experimental study of home gateway characteristics (Proc. ACM IMC 2010)</title>
            <author initials="S." surname="Hatonen">
              <organization/>
            </author>
            <author initials="A." surname="Nyrhinen">
              <organization/>
            </author>
            <author initials="L." surname="Eggert">
              <organization/>
            </author>
            <author initials="S." surname="Strowes">
              <organization/>
            </author>
            <author initials="P." surname="Sarolahti">
              <organization/>
            </author>
            <author initials="M." surname="Kojo">
              <organization/>
            </author>
            <date year="2010" month="October"/>
          </front>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state.  The TLS server encapsulates the session state into a ticket and forwards it to the client.  The client can subsequently resume a session using the obtained ticket.  This document obsoletes RFC 4507.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="QUIC-HTTP">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable
   in a transport for HTTP, such as stream multiplexing, per-stream flow
   control, and low-latency connection establishment.  This document
   describes a mapping of HTTP semantics over QUIC.  This document also
   identifies HTTP/2 features that are subsumed by QUIC, and describes
   how HTTP/2 extensions can be ported to HTTP/3.

DO NOT DEPLOY THIS VERSION OF HTTP

   DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This
   version is still a work in progress.  For trial deployments, please
   use earlier versions.

Note to Readers

   Discussion of this draft takes place on the QUIC working group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/search/?email_list=quic.

   Working Group information can be found at https://github.com/quicwg;
   source code and issues list for this draft can be found at
   https://github.com/quicwg/base-drafts/labels/-http.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd">
              <organization/>
            </author>
            <date month="March" year="2017"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="SSDP" target="https://openconnectivity.org/upnp-specs/UPnP-arch-DeviceArchitecture-v2.0-20200417.pdf">
          <front>
            <title>UPnP Device Architecture 2.0</title>
            <author initials="A." surname="Donoho">
              <organization/>
            </author>
            <author initials="B." surname="Roe">
              <organization/>
            </author>
            <author initials="M." surname="Bodlaender">
              <organization/>
            </author>
            <author initials="J." surname="Gildred">
              <organization/>
            </author>
            <author initials="A." surname="Messer">
              <organization/>
            </author>
            <author initials="Y." surname="Kim">
              <organization/>
            </author>
            <author initials="B." surname="Fairman">
              <organization/>
            </author>
            <author initials="J." surname="Tourzan">
              <organization/>
            </author>
            <date year="2020" month="April" day="17"/>
          </front>
        </reference>
        <reference anchor="TLS13">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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="I-D.ietf-taps-arch">
          <front>
            <title>An Architecture for Transport Services</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Godred Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date day="3" month="January" year="2022"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication, a
   Transport Services system.  The Transport Services Application
   Programming Interface (API) is based on an asynchronous, event-driven
   interaction pattern.  This API uses messages for representing data
   transfer to applications, and describes how implementations can use
   multiple IP addresses, multiple protocols, and multiple paths, and
   provide multiple application streams.  This document further defines
   common terminology and concepts to be used in definitions of a
   Transport Service API and a Transport Services implementation.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-12"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <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="RFC7413">
          <front>
            <title>TCP Fast Open</title>
            <author fullname="Y. Cheng" initials="Y." surname="Cheng">
              <organization/>
            </author>
            <author fullname="J. Chu" initials="J." surname="Chu">
              <organization/>
            </author>
            <author fullname="S. Radhakrishnan" initials="S." surname="Radhakrishnan">
              <organization/>
            </author>
            <author fullname="A. Jain" initials="A." surname="Jain">
              <organization/>
            </author>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document describes an experimental TCP mechanism called TCP Fast Open (TFO).  TFO allows data to be carried in the SYN and SYN-ACK packets and consumed by the receiving end during the initial connection handshake, and saves up to one full round-trip time (RTT) compared to the standard TCP, which requires a three-way handshake (3WHS) to complete before data can be exchanged.  However, TFO deviates from the standard TCP semantics, since the data in the SYN could be replayed to an application in some rare circumstances.  Applications should not use TFO unless they can tolerate this issue, as detailed in the Applicability section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7413"/>
          <seriesInfo name="DOI" value="10.17487/RFC7413"/>
        </reference>
        <reference anchor="HTTP-REPLAY">
          <front>
            <title>Using Early Data in HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="W. Tarreau" initials="W." surname="Tarreau">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>Using TLS early data creates an exposure to the possibility of a replay attack.  This document defines mechanisms that allow clients to communicate with servers about HTTP requests that are sent in early data.  Techniques are described that use these mechanisms to mitigate the risk of replay.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8470"/>
          <seriesInfo name="DOI" value="10.17487/RFC8470"/>
        </reference>
        <reference anchor="RFC5382">
          <front>
            <title>NAT Behavioral Requirements for TCP</title>
            <author fullname="S. Guha" initials="S." role="editor" surname="Guha">
              <organization/>
            </author>
            <author fullname="K. Biswas" initials="K." surname="Biswas">
              <organization/>
            </author>
            <author fullname="B. Ford" initials="B." surname="Ford">
              <organization/>
            </author>
            <author fullname="S. Sivakumar" initials="S." surname="Sivakumar">
              <organization/>
            </author>
            <author fullname="P. Srisuresh" initials="P." surname="Srisuresh">
              <organization/>
            </author>
            <date month="October" year="2008"/>
            <abstract>
              <t>This document defines a set of requirements for NATs that handle TCP that would allow many applications, such as peer-to-peer applications and online games to work consistently.  Developing NATs that meet this set of requirements will greatly increase the likelihood that these applications will function properly.  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="142"/>
          <seriesInfo name="RFC" value="5382"/>
          <seriesInfo name="DOI" value="10.17487/RFC5382"/>
        </reference>
        <reference anchor="I-D.draft-ietf-httpbis-priority">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="17" month="January" year="2022"/>
            <abstract>
              <t>   This document describes a scheme that allows an HTTP client to
   communicate its preferences for how the upstream server prioritizes
   responses to its requests, and also allows a server to hint to a
   downstream intermediary how its responses should be prioritized when
   they are forwarded.  This document defines the Priority header field
   for communicating the initial priority in an HTTP version-independent
   manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing
   responses.  These share a common format structure that is designed to
   provide future extensibility.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-priority-12"/>
        </reference>
        <reference anchor="RFC6335">
          <front>
            <title>Internet Assigned Numbers Authority (IANA) Procedures for the Management of the Service Name and Transport Protocol Port Number Registry</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="J. Touch" initials="J." surname="Touch">
              <organization/>
            </author>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <date month="August" year="2011"/>
            <abstract>
              <t>This document defines the procedures that the Internet Assigned Numbers Authority (IANA) uses when handling assignment and other requests related to the Service Name and Transport Protocol Port Number registry.  It also discusses the rationale and principles behind these procedures and how they facilitate the long-term sustainability of the registry.</t>
              <t>This document updates IANA's procedures by obsoleting the previous UDP and TCP port assignment procedures defined in Sections 8 and 9.1 of the IANA Allocation Guidelines, and it updates the IANA service name and port assignment procedures for UDP-Lite, the Datagram Congestion Control Protocol (DCCP), and the Stream Control Transmission Protocol (SCTP).  It also updates the DNS SRV specification to clarify what a service name is and how it is registered.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="165"/>
          <seriesInfo name="RFC" value="6335"/>
          <seriesInfo name="DOI" value="10.17487/RFC6335"/>
        </reference>
        <reference anchor="RFC7838">
          <front>
            <title>HTTP Alternative Services</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." surname="Reschke">
              <organization/>
            </author>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document specifies "Alternative Services" for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7838"/>
          <seriesInfo name="DOI" value="10.17487/RFC7838"/>
        </reference>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC5905">
          <front>
            <title>Network Time Protocol Version 4: Protocol and Algorithms Specification</title>
            <author fullname="D. Mills" initials="D." surname="Mills">
              <organization/>
            </author>
            <author fullname="J. Martin" initials="J." role="editor" surname="Martin">
              <organization/>
            </author>
            <author fullname="J. Burbank" initials="J." surname="Burbank">
              <organization/>
            </author>
            <author fullname="W. Kasch" initials="W." surname="Kasch">
              <organization/>
            </author>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Network Time Protocol (NTP) is widely used to synchronize computer clocks in the Internet.  This document describes NTP version 4 (NTPv4), which is backwards compatible with NTP version 3 (NTPv3), described in RFC 1305, as well as previous versions of the protocol. NTPv4 includes a modified protocol header to accommodate the Internet Protocol version 6 address family.  NTPv4 includes fundamental improvements in the mitigation and discipline algorithms that extend the potential accuracy to the tens of microseconds with modern workstations and fast LANs.  It includes a dynamic server discovery scheme, so that in many cases, specific server configuration is not required.  It corrects certain errors in the NTPv3 design and implementation and includes an optional extension mechanism.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5905"/>
          <seriesInfo name="DOI" value="10.17487/RFC5905"/>
        </reference>
        <reference anchor="RFC6762">
          <front>
            <title>Multicast DNS</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>As networked devices become smaller, more portable, and more ubiquitous, the ability to operate with less configured infrastructure is increasingly important.  In particular, the ability to look up DNS resource record data types (including, but not limited to, host names) in the absence of a conventional managed DNS server is useful.</t>
              <t>Multicast DNS (mDNS) provides the ability to perform DNS-like operations on the local link in the absence of any conventional Unicast DNS server.  In addition, Multicast DNS designates a portion of the DNS namespace to be free for local use, without the need to pay any annual fee, and without the need to set up delegations or otherwise configure a conventional DNS server to answer for those names.</t>
              <t>The primary benefits of Multicast DNS names are that (i) they require little or no administration or configuration to set them up, (ii) they work when no infrastructure is present, and (iii) they work during infrastructure failures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6762"/>
          <seriesInfo name="DOI" value="10.17487/RFC6762"/>
        </reference>
        <reference anchor="I-D.ietf-quic-manageability">
          <front>
            <title>Manageability of the QUIC Transport Protocol</title>
            <author fullname="Mirja Kuehlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document discusses manageability of the QUIC transport protocol,
   focusing on the implications of QUIC's design and wire image on
   network operations involving QUIC traffic.  It is intended as a
   "user's manual" for the wire image, providing guidance for network
   operators and equipment vendors who rely on the use of transport-
   aware network functions.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-manageability-15"/>
        </reference>
        <reference anchor="QUIC-LB">
          <front>
            <title>QUIC-LB: Generating Routable QUIC Connection IDs</title>
            <author fullname="Martin Duke">
              <organization>Google</organization>
            </author>
            <author fullname="Nick Banks">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Christian Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <date day="28" month="March" year="2022"/>
            <abstract>
              <t>   QUIC address migration allows clients to change their IP address
   while maintaining connection state.  To reduce the ability of an
   observer to link two IP addresses, clients and servers use new
   connection IDs when they communicate via different client addresses.
   This poses a problem for traditional "layer-4" load balancers that
   route packets via the IP address and port 4-tuple.  This
   specification provides a standardized means of securely encoding
   routing information in the server's connection IDs so that a properly
   configured load balancer can route packets with migrated addresses
   correctly.  As it proposes a structured connection ID format, it also
   provides a means of connection IDs self-encoding their length to aid
   some hardware offloads.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-load-balancers-13"/>
        </reference>
        <reference anchor="RFC2475">
          <front>
            <title>An Architecture for Differentiated Services</title>
            <author fullname="S. Blake" initials="S." surname="Blake">
              <organization/>
            </author>
            <author fullname="D. Black" initials="D." surname="Black">
              <organization/>
            </author>
            <author fullname="M. Carlson" initials="M." surname="Carlson">
              <organization/>
            </author>
            <author fullname="E. Davies" initials="E." surname="Davies">
              <organization/>
            </author>
            <author fullname="Z. Wang" initials="Z." surname="Wang">
              <organization/>
            </author>
            <author fullname="W. Weiss" initials="W." surname="Weiss">
              <organization/>
            </author>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines an architecture for implementing scalable service differentiation in the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2475"/>
          <seriesInfo name="DOI" value="10.17487/RFC2475"/>
        </reference>
        <reference anchor="RFC7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author fullname="D. Black" initials="D." role="editor" surname="Black">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>This memo describes the interaction between Differentiated Services (Diffserv) network quality-of-service (QoS) functionality and real- time network communication, including communication based on the Real-time Transport Protocol (RTP).  Diffserv is based on network nodes applying different forwarding treatments to packets whose IP headers are marked with different Diffserv Codepoints (DSCPs). WebRTC applications, as well as some conferencing applications, have begun using the Session Description Protocol (SDP) bundle negotiation mechanism to send multiple traffic streams with different QoS requirements using the same network 5-tuple.  The results of using multiple DSCPs to obtain different QoS treatments within a single network 5-tuple have transport protocol interactions, particularly with congestion control functionality (e.g., reordering).  In addition, DSCP markings may be changed or removed between the traffic source and destination.  This memo covers the implications of these Diffserv aspects for real-time network communication, including WebRTC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7657"/>
          <seriesInfo name="DOI" value="10.17487/RFC7657"/>
        </reference>
        <reference anchor="I-D.draft-ietf-quic-version-negotiation">
          <front>
            <title>Compatible Version Negotiation for QUIC</title>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Eric Rescorla">
              <organization>Mozilla</organization>
            </author>
            <date day="5" month="April" year="2022"/>
            <abstract>
              <t>   QUIC does not provide a complete version negotiation mechanism but
   instead only provides a way for the server to indicate that the
   version the client chose is unacceptable.  This document describes a
   version negotiation mechanism that allows a client and server to
   select a mutually supported version.  Optionally, if the client's
   chosen version and the negotiated version share a compatible first
   flight format, the negotiation can take place without incurring an
   extra round trip.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-07"/>
        </reference>
        <reference anchor="I-D.ietf-quic-datagram">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Eric Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <date day="4" month="February" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-datagram-10"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAMsGTmIAA5V9WXMbSXbue/6K8vTDSA4AIqm1JfvabC09siU1LbJtj2/c
6CiiEkSNgCq4FlIYhf77Pd9ZcimAPfZETEsCCpWZJ8++zudzN9TDxr8szne7
Tb0sr+tNPeyLdlUMa1/826/vXxdXXdn0u7YbiouuHdplu3Hl9XXnb1/K99kv
XdUum3JLL6y6cjXMaz+s5v891st5mT42P33mqnLwL92S/nvTdvuXRd2sWufq
XfeyGLqxH85OTn48OXNf/P6u7aqXxftm8F3jh/kbvNm5fiib6rdy0za02t73
ble/LP4vbXBW9LTbzq96+tt+i7/8P+fKcVi33UtXFHP6f0HL9S+Lj4viX0e/
3vi7uqn4Y9n8x7r7Szn9qu1uXhZvu3rZ923Dn/htWW9eFls8vfgSnv5nrw8t
lu02X/CnBeC53frNJlnup64um/wLXuzntr3Z+HQpwPOfB31wsVzzdz0d1g/0
OEGtvJ3/PG4284tNOfy1OOXvlwTxl8WLk5MnxX+NtDX51bIdmwGAv7yrh7/6
bkPgJPjTLXTbcqhvPWBlezp99pJ/pNhid1FclMNaMaTsfLPcFx992Y+d3/pm
6Iuxr5ub4vP7i7fF+bAp++IB/v78rPh4flXsOt/TU7RW2zzkt8c7wv/m+uc9
oDt44PAyh7K7AWDWw7DrXz561NU7//xsgT8WtPtHd7v5sqWjNMOjcbdpy6p/
lG6qf/Ti2bzEvudjtavq1Wqxq1b8Zkbe4uzk9Nn85On87Cl9+Lbym7rxE0j9
yhD49c1FQXCNcItE9fa23YxYrXhQdv9Z3wIsu65uhuL02enZ4uT5i9Nn/wPo
/OvCNvA/Bc7/HsBvF8X5tW/u/fWbtqGzHYV82X2tbxeE1I/K6/5RPNkUmKdn
87Mz+vDyzg/DBJTMbd54uqg9sKt4+3VHhEZI54tyUFopHrx/e/Xux2fy8E/t
u/8tlr1fyNpHT3F3d7cABfJBdl279L6i6+0f/fjsUb+pK9/rH/MfnwnXe3wU
Y57Pz07ow4uy7JfrT2XT3mQH/eQHYnlfistxxygCzLl6fVG8K/uh+GXnCVU+
nX/65efi2fP/7fFeL3TVe8/XYDt8wL4e6ECVX5XjZni0qjf0L/nxb7rD33SH
Rw9Jl/mYPvxTORCHbk5PsiOeN4Xn68NNlhtiYWPFYmfdbn1xQ6+5K/fFcl12
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
d1Y9BsGFID5yku6EhF6iEP8fq0rqTAPEAAA=

-->

</rfc>
