<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.34 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-arch-18" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.1 -->
  <front>
    <title abbrev="TAPS Architecture">An Architecture for Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-18"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly" role="editor">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="B." surname="Trammell" fullname="Brian Trammell" role="editor">
      <organization>Google Switzerland GmbH</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <author initials="A." surname="Brunstrom" fullname="Anna Brunstrom">
      <organization>Karlstad University</organization>
      <address>
        <postal>
          <street>Universitetsgatan 2</street>
          <city>651 88 Karlstad</city>
          <country>Sweden</country>
        </postal>
        <email>anna.brunstrom@kau.se</email>
      </address>
    </author>
    <author initials="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>Scotland</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>http://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <author initials="C." surname="Perkins" fullname="Colin Perkins">
      <organization>University of Glasgow</organization>
      <address>
        <postal>
          <street>School of Computing Science</street>
          <city>Glasgow  G12 8QQ</city>
          <country>United Kingdom</country>
        </postal>
        <email>csp@csperkins.org</email>
      </address>
    </author>
    <date year="2023" month="May" day="30"/>
    <area>Transport</area>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 68?>

<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>
  <middle>
    <?line 72?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Many application programming interfaces (APIs) to perform transport networking have been deployed, perhaps the most widely known and imitated being the BSD Socket <xref target="POSIX"/> interface (Socket API). The naming of objects and functions across these APIs is not consistent and varies depending on the protocol being used. For example, sending and receiving streams of data is conceptually the same for both an unencrypted Transmission Control Protocol (TCP) stream and operating on an encrypted Transport Layer Security (TLS) <xref target="RFC8446"/> stream over TCP, but applications cannot use the same socket <tt>send()</tt> and <tt>recv()</tt> calls on top of both kinds of connections.
Similarly, terminology for the implementation of transport protocols varies based on the context of the protocols themselves: terms such as "flow", "stream", "message", and "connection" can take on many different meanings. This variety can lead to confusion when trying to understand the similarities and differences between protocols, and how applications can use them effectively.</t>
      <t>The goal of the Transport Services architecture is to provide a flexible and reusable architecture that provides a common interface for transport protocols. As applications adopt this interface, they will benefit from a wide set of transport features that can evolve over time, and ensure that the system providing the interface can optimize its behavior based on the application requirements and network conditions, without requiring changes to the applications. This flexibility enables faster deployment of new features and protocols. It can also support applications by offering racing mechanisms (attempting multiple IP addresses, protocols, or network paths in parallel), which otherwise need to be implemented in each application separately (see <xref target="racing"/>).</t>
      <t>This document was developed in parallel with the specification of the Transport Services API <xref target="I-D.ietf-taps-interface"/> and implementation guidelines <xref target="I-D.ietf-taps-impl"/>. Although following the Transport Services architecture does not require that all APIs and implementations are identical, a common minimal set of features represented in a consistent fashion will enable applications to be easily ported from one system to another.</t>
      <section anchor="background">
        <name>Background</name>
        <t>The Transport Services architecture is based on the survey of services provided by IETF transport protocols and congestion control mechanisms <xref target="RFC8095"/>, and the distilled minimal set of the features offered by transport protocols <xref target="RFC8923"/>. These documents identified common features and patterns across all transport protocols developed thus far in the IETF.</t>
        <t>Since transport security is an increasingly relevant aspect of using transport protocols on the Internet, this architecture also considers the impact of transport security protocols on the feature-set exposed by Transport Services <xref target="RFC8922"/>.</t>
        <t>One of the key insights to come from identifying the minimal set of features provided by transport protocols <xref target="RFC8923"/> was that features either require application interaction and guidance (referred to in that document as Functional or Optimizing Features), or else can be handled automatically by a system implementing Transport Services (referred to as Automatable Features). Among the identified Functional and Optimizing Features, some were common across all or nearly all transport protocols, while others could be seen as features that, if specified, would only be useful with a subset of protocols, but would not harm the functionality of other protocols. For example, some protocols can deliver messages faster for applications that do not require messages to arrive in the order in which they were sent. However, this functionality needs to be explicitly allowed by the application, since reordering messages would be undesirable in many cases.</t>
      </section>
      <section anchor="overview">
        <name>Overview</name>
        <t>This document describes the Transport Services architecture in three sections:</t>
        <ul spacing="normal">
          <li>
            <xref target="model"/> describes how the API model of Transport Services architecture differs from traditional socket-based APIs. Specifically, it offers asynchronous event-driven interaction, the use of messages for data transfer, and the flexibility to use different transport protocols and paths without requiring major changes to the application.</li>
          <li>
            <xref target="requirements"/> explains the fundamental requirements for a Transport Services system. These principles are intended to make sure that transport protocols can continue to be enhanced and evolve without requiring significant changes by application developers.</li>
          <li>
            <xref target="concepts"/> presents a diagram showing the Transport Services architecture and defines the concepts that are used by both the API <xref target="I-D.ietf-taps-interface"/> and implementation guidelines <xref target="I-D.ietf-taps-impl"/>. The Preconnection allows applications to configure Connection Properties.</li>
          <li>
            <xref target="concepts"/> also presents how an abstract Connection is used to select a transport protocol instance such as TCP, UDP, or another transport. The Connection represents an object that can be used to send and receive messages.</li>
        </ul>
      </section>
      <section anchor="specification-of-requirements">
        <name>Specification of Requirements</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP 14
<xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when,
they appear in all capitals, as shown here.</t>
      </section>
      <section anchor="glossary-of-key-terms">
        <name>Glossary of Key Terms</name>
        <t>This subsection provides a glossary of key terms related to the Transport Services architecture. It provides a short description of key terms that are later defined in this document.</t>
        <ul spacing="normal">
          <li>Application: An entity that uses the transport layer for end-to-end delivery of data across the network <xref target="RFC8095"/>.</li>
          <li>Cached State: The state and history that the implementation keeps for each set of associated Endpoints that have been used previously.</li>
          <li>Candidate Path: One path that is available to an application and conforms to the Selection Properties and System Policy during racing.</li>
          <li>Candidate Protocol Stack: One Protocol Stack that can be used by an application for a Connection during racing.</li>
          <li>Client: The peer responsible for initiating a Connection.</li>
          <li>Clone: A Connection that was created from another Connection, and forms a part of a Connection Group.</li>
          <li>Connection: Shared state of two or more endpoints that persists across Messages that are transmitted and received between these Endpoints <xref target="RFC8303"/>. When this document (and other Transport Services documents) use the capitalized "Connection" term, it refers to a Connection Object that is being offered by the Transport Services system, as opposed to more generic uses of the word "connection".</li>
          <li>Connection Group: A set of Connections that shares properties and caches.</li>
          <li>Connection Property: A Transport Property that controls per-Connection behavior of a Transport Services implementation.</li>
          <li>Endpoint: An identifier for one side of a Connection (local or remote), such as a hostnames or URL.</li>
          <li>Equivalent Protocol Stacks: Protocol Stacks that can be safely swapped or raced in parallel during establishment of a Connection.</li>
          <li>Event: A primitive that is invoked by an endpoint <xref target="RFC8303"/>.</li>
          <li>Framer: A data translation layer that can be added to a Connection to define how application-layer Messages are transmitted over a Protocol Stack.</li>
          <li>Local Endpoint: A representation of the application's identifier for itself that it uses for a Connection.</li>
          <li>Message: A unit of data that can be transferred between two Endpoints over a Connection.</li>
          <li>Message Property: A property that can be used to specify details about Message transmission, or obtain details about the transmission after receiving a Message.</li>
          <li>Parameter: A value passed between an application and a transport protocol by a primitive <xref target="RFC8303"/>.</li>
          <li>Path: A representation of an available set of properties that a Local Endpoint can use to communicate with a Remote Endpoint.</li>
          <li>Peer: An endpoint application party to a Connection.</li>
          <li>Preconnection: an object that represents a Connection that has not yet been established.</li>
          <li>Preference: A preference to prohibit, avoid, ignore, prefer, or require a specific Transport Feature.</li>
          <li>Primitive: A function call that is used to locally communicate between an application and an endpoint, which is related to one or more Transport Features <xref target="RFC8303"/>.</li>
          <li>Protocol Instance: A single instance of one protocol, including any state necessary to establish connectivity or send and receive Messages.</li>
          <li>Protocol Stack: A set of Protocol Instances that are used together to establish connectivity or send and receive Messages.</li>
          <li>Racing: The attempt to select between multiple Protocol Stacks based on the Selection and Connection Properties communicated by the application, along with any security parameters.</li>
          <li>Remote Endpoint: A representation of the application's identifier for a peer that can participate in establishing a Connection.</li>
          <li>Rendezvous: The action of establishing a peer-to-peer Connection with a Remote Endpoint.</li>
          <li>Security Parameters: Parameters that define an application's requirements for authentication and encryption on a Connection.</li>
          <li>Server: The peer responsible for responding to a Connection initiation.</li>
          <li>Socket: The combination of a destination IP address and a destination port number <xref target="RFC8303"/>.</li>
          <li>System Policy: The input from an operating system or other global preferences that can constrain or influence how an implementation will gather Candidate Paths and Protocol Stacks and race the candidates during establishment of a Connection.</li>
          <li>Selection Property: A Transport Property that can be set to influence the selection of paths between the Local and Remote Endpoints.</li>
          <li>Transport Feature: A specific end-to-end feature that the transport layer provides to an application.</li>
          <li>Transport Property: A property that expresses requirements, prohibitions and preferences <xref target="RFC8095"/>.</li>
          <li>Transport Service: A set of transport features, without an association to any given framing protocol, that provides a complete service to an application.</li>
          <li>Transport Services System: The Transport Services implementation and the Transport Services API</li>
        </ul>
      </section>
    </section>
    <section anchor="model">
      <name>API Model</name>
      <t>The traditional model of using sockets for networking can be represented as follows:</t>
      <ul spacing="normal">
        <li>Applications create connections and transfer data using the Socket API.</li>
        <li>The Socket API provides the interface to the implementations of TCP and UDP
(typically implemented in the system's kernel).</li>
        <li>TCP and UDP in the kernel send and receive data over the available network-layer interfaces.</li>
        <li>Sockets are bound directly to transport-layer and network-layer addresses,
obtained via a separate resolution step, usually performed by a
system-provided stub resolver.</li>
      </ul>
      <figure anchor="fig-sockets">
        <name>Socket API Model</name>
        <artwork><![CDATA[
+-----------------------------------------------------+
|                    Application                      |
+-----------------------------------------------------+
        |                 |                  |
  +------------+     +------------+    +--------------+
  |    stub    |     | Stream API |    | Datagram API |
  |  resolver  |     +------------+    +--------------+
  +------------+          |                  |
                    +---------------------------------+
                    |    TCP                UDP       |
                    |    Kernel Networking Stack      |
                    +---------------------------------+
                                    |
+-----------------------------------------------------+
|               Network Layer Interface               |
+-----------------------------------------------------+

]]></artwork>
      </figure>
      <t>The Transport Services architecture evolves this general model of interaction, to both modernize the API surface presented to applications by the transport layer and to enrich the capabilities of the implementation below the API.</t>
      <figure anchor="fig-taps">
        <name>Transport Services API Model</name>
        <artwork><![CDATA[
+-----------------------------------------------------+
|                    Application                      |
+-----------------------------------------------------+
                          |
+-----------------------------------------------------+
|              Transport Services API                 |
+-----------------------------------------------------+
                          |
+-----------------------------------------------------+
|          Transport Services Implementation          |
|  (Using: DNS, UDP, TCP, SCTP, DCCP, TLS, QUIC, etc) |
+-----------------------------------------------------+
                          |
+-----------------------------------------------------+
|               Network Layer Interface               |
+-----------------------------------------------------+

]]></artwork>
      </figure>
      <t>The Transport Services API <xref target="I-D.ietf-taps-interface"/> defines the interface for an application to create Connections and transfer data. It combines interfaces for multiple interaction patterns into a unified whole. By combining name resolution with connection establishment and data transfer in a single API, it allows for more flexible implementations to provide path and transport protocol agility on the application's behalf.</t>
      <t>The Transport Services implementation <xref target="I-D.ietf-taps-impl"/> implements the transport layer protocols and other functions needed to send and receive data. It is responsible for mapping the API to a specific available transport Protocol Stack and managing the available network interfaces and paths.</t>
      <t>There are key differences between the Transport Services architecture and the architecture of the Socket API: the API of the Transport Services architecture is asynchronous and event-driven; it uses messages for representing data transfer to applications; and it describes how implementations can use multiple IP addresses, multiple protocols, multiple paths, and provide multiple application streams.</t>
      <section anchor="event-driven-api">
        <name>Event-Driven API</name>
        <t>Originally, the Socket API presented a blocking interface for establishing connections and transferring data. However, most modern applications interact with the network asynchronously. Emulation of an asynchronous interface using the Socket API generally uses a try-and-fail model. If the application wants to read, but data has not yet been received from the peer, the call to read will fail. The application then waits and can try again later.</t>
        <t>In contrast to the Socket API, all interaction using the Transport Services API is expected to be asynchronous. The API is defined around an event-driven model (see <xref target="events"/>) in order to model this asynchronous interaction, though other forms of asynchronous communication may be available to applications depending on the platform implementing the interface.</t>
        <t>For example, an application first issues a call to receive new data from the connection. When delivered data becomes available, this data is delivered to the application using asynchronous events that contain the data. Error handling is also asynchronous; a failure to send data results in an asynchronous error event.</t>
        <t>This API also delivers events regarding the lifetime of a connection and changes in the available network links, which were not previously made explicit in the Socket API.</t>
        <t>Using asynchronous events allows for a more natural interaction model when establishing connections and transferring data. Events in time more closely reflect the nature of interactions over networks, as opposed to how the Socket API represents network resources as file system objects that may be temporarily unavailable.</t>
        <t>Separate from events, callbacks are also provided for asynchronous interactions with the Transport Services API that are not directly related to events on the network or network interfaces.</t>
      </section>
      <section anchor="data-transfer-using-messages">
        <name>Data Transfer Using Messages</name>
        <t>The Socket API provides a message interface for datagram protocols like UDP, but provides an unstructured stream abstraction for TCP. While TCP has the ability to send and receive data as a byte-stream, most applications need to interpret structure within this byte-stream. For example, HTTP/1.1 uses character delimiters to segment messages over a byte-stream <xref target="RFC9112"/>; TLS record headers carry a version, content type, and length <xref target="RFC8446"/>; and HTTP/2 uses frames to segment its headers and bodies <xref target="RFC9113"/>.</t>
        <t>The Transport Services API represents data as messages, so that it more closely matches the way applications use the network. A message-based abstraction provides many benefits, such as:</t>
        <ul spacing="normal">
          <li>providing additional information to the Protocol Stack;</li>
          <li>the ability to associate deadlines with messages, for applications that care about timing;</li>
          <li>the ability to control reliability, which messages to retransmit when there is packet loss, and how best to make use of the data that arrived;</li>
          <li>the ability to automatically assign messages and connections to underlying transport connections to utilize multi-streaming and pooled connections.</li>
        </ul>
        <t>Allowing applications to interact with messages is backwards-compatible with existing protocols and APIs because it does not change the wire format of any protocol. Instead, it provides the Protocol Stack with additional information to allow it to make better use of modern transport services, while simplifying the application's role in parsing data. For protocols that natively use a streaming abstraction, framers (<xref target="datatransfer"/>) bridge the gap between the two abstractions.</t>
      </section>
      <section anchor="flexible-implementation">
        <name>Flexible Implementation</name>
        <t>The Socket API for protocols like TCP is generally limited to connecting to a single address over a single interface. It also presents a single stream to the application. Software layers built upon this API often propagate this limitation of a single-address single-stream model. The Transport Services architecture is designed:</t>
        <ul spacing="normal">
          <li>to handle multiple candidate endpoints, protocols, and paths;</li>
          <li>to support candidate protocol racing to select the most optimal stack in each situation;</li>
          <li>to support multipath and multistreaming protocols;</li>
          <li>to provide state caching and application control over it.</li>
        </ul>
        <t>A Transport Services implementation is intended to be flexible at connection establishment time, considering many different options and trying to select the most optimal combinations by racing them and measuring the results (see <xref target="gathering"/> and <xref target="racing"/>). This requires applications to provide higher-level endpoints than IP addresses, such as hostnames and URLs, which are used by a Transport Services implementation for resolution, path selection, and racing. An implementation can further implement fallback mechanisms if connection establishment of one protocol fails or performance is detected to be unsatisfactory.</t>
        <t>Information used in connection establishment (e.g. cryptographic resumption tokens, information about usability of certain protocols on the path, results of racing in previous connections) are cached in the Transport Services implementation. Applications have control over whether this information is used for a specific establishment, in order to allow tradeoffs between efficiency and linkability.</t>
        <t>Flexibility after connection establishment is also important. Transport protocols that can migrate between multiple network-layer interfaces need to be able to process and react to interface changes. Protocols that support multiple application-layer streams need to support initiating and receiving new streams using existing connections.</t>
      </section>
      <section anchor="coexistence">
        <name>Coexistence</name>
        <t>Note that while the Transport Service architecture is designed as an enhanced replacement for the Socket API, it need not replace it entirely on a system or platform; indeed, incremental deployability <xref target="RFC8170"/> requires coexistence. The architecture is therefore designed such that it can run alongside (or, indeed, on top of) an existing Socket API implementation; only applications built to the Transport Services API are managed by the system's Transport Services implementation.</t>
      </section>
    </section>
    <section anchor="requirements">
      <name>API and Implementation Requirements</name>
      <t>A goal of the Transport Services architecture is to redefine the interface between applications and transports in a way that allows the transport layer to evolve and improve without fundamentally changing the contract with the application. This requires a careful consideration of how to expose the capabilities of protocols. This architecture also encompasses system policies that can influence and inform how transport protocols use a network path or interface.</t>
      <t>There are several ways the Transport Services system can offer flexibility to an application: it can provide access to transport protocols and protocol features; it can use these protocols across multiple paths that could have different performance and functional characteristics; and it can communicate with different remote systems to optimize performance, robustness to failure, or some other metric. Beyond these, if the Transport Services API remains the same over time, new protocols and features can be added to the Transport Services implementation without requiring changes in applications for adoption. Similarly, this can provide a common basis for utilizing information about a network path or interface, enabling evolution below the transport layer.</t>
      <t>The normative requirements described in this section allow Transport Services APIs and Transport Services implementation to provide this functionality without causing incompatibility or introducing security vulnerabilities.</t>
      <section anchor="provide-common-apis-for-common-features">
        <name>Provide Common APIs for Common Features</name>
        <t>Any functionality that is common across multiple transport protocols SHOULD be made accessible through a unified set of calls using the Transport Services API. As a baseline, any Transport Services API SHOULD allow access to the minimal set of features offered by transport protocols <xref target="RFC8923"/>. If that minimal set is updated or expanded in the future, the Transport Services API ought to be extended to match.</t>
        <t>An application can specify constraints and preferences for the protocols, features, and network interfaces it will use via Properties. Properties are used by an application to declare its preferences for how the transport service should operate at each stage in the lifetime of a connection. Transport Properties are subdivided into Selection Properties, which specify which paths and Protocol Stacks can be used and are preferred by the application; Connection Properties, which inform decisions made during connection establishment and fine-tune the established connection; and Message Properties, set on individual Messages.</t>
        <t>It is RECOMMENDED that the Transport Services API offers properties that are common to multiple transport protocols. This enables a Transport Services implementation to appropriately select between protocols that offer equivalent features. Similarly, it is RECOMMENDED that the Properties offered by the Transport Services  API are applicable to a variety of network layer interfaces and paths, which permits racing of different network paths without affecting the applications using the API. Each is expected to have a default value.</t>
        <t>It is RECOMMENDED that the default values for Properties are selected to ensure correctness for the widest set of applications, while providing the widest set of options for selection. For example, since both applications that require reliability and those that do not require reliability can function correctly when a protocol provides reliability, reliability ought to be enabled by default. As another example, the default value for a Property regarding the selection of network interfaces ought to permit as many interfaces as possible.</t>
        <t>Applications using the Transport Services API are REQUIRED to be robust to the automated selection provided by the Transport Services implementation. This automated selection is constrained by the properties and preferences expressed by the application and requires applications to explicitly set properties that define any necessary constraints on protocol, path, and interface selection.</t>
      </section>
      <section anchor="allow-access-to-specialized-features">
        <name>Allow Access to Specialized Features</name>
        <t>There are applications that will need to control fine-grained details of transport protocols to optimize their behavior and ensure compatibility with remote systems. It is therefore RECOMMENDED that the Transport Services API and the Transport Services implementation permit more specialized protocol features to be used.</t>
        <t>A specialized feature could be needed by an application only when using a specific protocol, and not when using others. For example, if an application is using TCP, it could require control over the User Timeout Option for TCP <xref target="RFC5482"/>; these options would not take effect for other transport protocols. In such cases, the API ought to expose the features in such a way that they take effect when a particular protocol is selected, but do not imply that only that protocol could be used. For example, if the API allows an application to specify a preference to use the User Timeout Option, communication would not fail when a protocol such as QUIC is selected.</t>
        <t>Other specialized features, however, can also be strictly required by an application and thus further constrain the set of protocols that can be used. For example, if an application requires support for automatic handover or failover for a connection, only Protocol Stacks that provide this feature are eligible to be used, e.g., Protocol Stacks that include a multipath protocol or a protocol that supports connection migration. A Transport Services API needs to allow applications to define such requirements and constrain the options available to a Transport Services implementation. Since such options are not part of the core/common features, it will generally be simple for an application to modify its set of constraints and change the set of allowable protocol features without changing the core implementation.</t>
        <t>To control these specialized features, the application can declare its preference – whether the presence of a specific feature is prohibited, should be avoided, can be ignored, is preferred, or is required in the pre-establishment phase. An implementation of a Transport Services API would honor this preference and allow the application to query the availability of each specialized feature after a successful establishment.</t>
      </section>
      <section anchor="equivalence">
        <name>Select Between Equivalent Protocol Stacks</name>
        <t>A Transport Services implementation can attempt and select between multiple Protocol Stacks based on the Selection and Connection Properties communicated by the application, along with any security parameters. The implementation can only attempt to use multiple Protocol Stacks when they are "equivalent", which means that the stacks can provide the same Transport Properties and interface expectations as requested by the application. Equivalent Protocol Stacks can be safely swapped or raced in parallel (see <xref target="racing"/>) during connection establishment.</t>
        <t>The following two examples show non-equivalent Protocol Stacks:</t>
        <ul spacing="normal">
          <li>If the application requires preservation of message boundaries, a Protocol Stack that runs UDP as the top-level interface to the application is not equivalent to a Protocol Stack that runs TCP as the top-level interface. A UDP stack would allow an application to read out message boundaries based on datagrams sent from the remote system, whereas TCP does not preserve message boundaries on its own, but needs a framing protocol on top to determine message boundaries.</li>
          <li>If the application specifies that it requires reliable transmission of data, then a Protocol Stack using UDP without any reliability layer on top would not be allowed to replace a Protocol Stack using TCP.</li>
        </ul>
        <t>The following example shows equivalent Protocol Stacks:</t>
        <ul spacing="normal">
          <li>If the application does not require reliable transmission of data, then a Protocol Stack that adds reliability could be regarded as an equivalent Protocol Stack as long as providing this would not conflict with any other application-requested properties.</li>
        </ul>
        <t>To ensure that security protocols are not incorrectly swapped, a Transport Services implementation MUST only select Protocol Stacks that meet application requirements (<xref target="RFC8922"/>). A Transport Services implementation SHOULD only race Protocol Stacks where the transport security protocols within the stacks are identical. A Transport Services implementation MUST NOT automatically fall back from secure protocols to insecure protocols, or to weaker versions of secure protocols. A Transport Services implementation MAY allow applications to explicitly specify which versions of a protocol ought to be permitted, e.g., to allow a minimum version of TLS 1.2 in case TLS 1.3 is not available.</t>
      </section>
      <section anchor="maintain-interoperability">
        <name>Maintain Interoperability</name>
        <t>It is important to note that neither the Transport Services API <xref target="I-D.ietf-taps-interface"/> nor the guidelines for the Transport Service implementation <xref target="I-D.ietf-taps-impl"/> define new protocols or protocol capabilities that affect what is communicated across the network. A Transport Services system MUST NOT require that a peer on the other side of a connection uses the same API or implementation. A Transport Services implementation acting as a connection initiator is able to communicate with any existing endpoint that implements the transport protocol(s) and all the required properties selected. Similarly, a Transport Services implementation acting as a Listener can receive connections for any protocol that is supported from an existing initiator that implements the protocol, independent of whether the initiator uses the Transport Services architecture or not.</t>
        <t>A Transport Services system makes decisions that select protocols and interfaces. In normal use, a given version of a Transport Services system SHOULD result in consistent protocol and interface selection decisions for the same network conditions given the same set of Properties. This is intended to provide predictable outcomes to the application using the API.</t>
      </section>
    </section>
    <section anchor="concepts">
      <name>Transport Services Architecture and Concepts</name>
      <t>This section and the remainder of this document describe the architecture non-normatively. The concepts defined in this document are intended primarily for use in the documents and specifications that describe the Transport Services system. This includes the architecture, the Transport Services API and the associated Transport Services implementation. While the specific terminology can be used in some implementations, it is expected that there will remain a variety of terms used by running code.</t>
      <t>The architecture divides the concepts for Transport Services system into two categories:</t>
      <ol spacing="normal" type="1"><li>API concepts, which are intended to be exposed to applications; and</li>
        <li>System-implementation concepts, which are intended to be internally used by a Transport Services implementation.</li>
      </ol>
      <t>The following diagram summarizes the top-level concepts in the architecture and how they relate to one another.</t>
      <figure anchor="fig-abstractions">
        <name>Concepts and Relationships in the Transport Services Architecture</name>
        <artwork><![CDATA[
  +-----------------------------------------------------+
  |                    Application                      |
  +-+----------------+------^-------+--------^----------+
    |                |      |       |        |
  pre-               |     data     |      events
  establishment      |   transfer   |        |
    |        establishment  |   termination  |
    |                |      |       |        |
    |             +--v------v-------v+       |
  +-v-------------+   Connection(s)  +-------+----------+
  |  Transport    +--------+---------+                  |
  |  Services              |                            |
  |  API                   |  +-------------+           |
  +------------------------+--+  Framer(s)  |-----------+
                           |  +-------------+
  +------------------------|----------------------------+
  |  Transport             |                            |
  |  System                |        +-----------------+ |
  |  Implementation        |        |     Cached      | |
  |                        |        |      State      | |
  |  (Candidate Gathering) |        +-----------------+ |
  |                        |                            |
  |  (Candidate Racing)    |        +-----------------+ |
  |                        |        |     System      | |
  |                        |        |     Policy      | |
  |             +----------v-----+  +-----------------+ |
  |             |    Protocol    |                      |
  +-------------+    Stack(s)    +----------------------+
                +-------+--------+
                        V
              Network Layer Interface
]]></artwork>
      </figure>
      <t>The Transport Services Implementation includes the Cached State and System Policy.</t>
      <t>The System Policy provides input from an operating system or other global preferences that can constrain or influence how an implementation will gather Candidate Paths and Protocol Stacks and race the candidates when establishing a Connection. As the details of System Policy configuration and enforcement are largely platform- and implementation- dependent, and do not affect application-level interoperability, the Transport Services API <xref target="I-D.ietf-taps-interface"/> does not specify an interface for reading or writing System Policy.</t>
      <t>The Cached State is the state and history that the implementation keeps for each set of associated endpoints that have previously been used.</t>
      <section anchor="transport-services-api-concepts">
        <name>Transport Services API Concepts</name>
        <t>Fundamentally, a Transport Services API needs to provide connection objects (<xref target="objects"/>) that allow applications to establish communication, and then send and receive data. These could be exposed as handles or referenced objects, depending on the chosen programming language.</t>
        <t>Beyond the connection objects, there are several high-level groups of actions that any Transport Services API needs to provide:</t>
        <ul spacing="normal">
          <li>Pre-establishment (<xref target="preestablishment"/>) encompasses the properties that an application can pass to describe its intent, requirements, prohibitions, and preferences for its networking operations. These properties apply to multiple transport protocols, unless otherwise specified. Properties specified during pre-establishment can have a large impact on the rest of the interface: they modify how establishment occurs, they influence the expectations around data transfer, and they determine the set of events that will be supported.</li>
          <li>Establishment (<xref target="establishment"/>) focuses on the actions that an application takes on the connection objects to prepare for data transfer.</li>
          <li>Data Transfer (<xref target="datatransfer"/>) consists of how an application represents the data to be sent and received, the functions required to send and receive that data, and how the application is notified of the status of its data transfer.</li>
          <li>Event Handling (<xref target="events"/>) defines categories of notifications that an application can receive during the lifetime of a Connection. Events also provide opportunities for the application to interact with the underlying transport by querying state or updating maintenance options.</li>
          <li>Termination (<xref target="termination"/>) focuses on the methods by which data transmission is stopped, and connection state is torn down.</li>
        </ul>
        <t>The diagram below provides a high-level view of the actions and events during the lifetime of a Connection object. Note that some actions are alternatives (e.g., whether to initiate a connection or to listen for incoming connections), while others are optional (e.g., setting Connection and Message Properties in pre-establishment) or have been omitted for brevity and simplicity.</t>
        <figure anchor="fig-lifetime">
          <name>The lifetime of a Connection object</name>
          <artwork><![CDATA[
     Pre-establishment     :       Established             : Termination
     -----------------     :       -----------             : -----------
                           :                               :
 +-- Local Endpoint        :           Message             :
 +-- Remote Endpoint       :    Receive() |                :
 +-- Transport Properties  :       Send() |                :
 +-- Security Parameters   :              |                :
 |                         :              |                :
 |               InitiateWithSend()       |        Close() :
 |   +---------------+   Initiate() +-----+------+ Abort() :
 +---+ Preconnection |------------->| Connection |-----------> Closed
     +---------------+ Rendezvous() +------------+         :
    Listen() |             :           |     |             :
             |             :           |     v             :
             v             :           | Connection        :
     +----------+          :           |   Ready           :
     | Listener |----------------------+                   :
     +----------+  Connection Received                     :
                           :                               :
]]></artwork>
        </figure>
        <t>In this diagram, the lifetime of a Connection object is broken into three phases:
pre-establishment, the Established state, and Termination.</t>
        <t>Pre-establishment is based around a Preconnection object, that contains various
sub-objects that describe the properties and parameters of desired Connections
(Local and Remote Endpoints, Transport Properties, and Security Parameters).
A Preconnection can be used to start listening for inbound connections,
in which case a Listener object is created, or can be used to establish a new
connection directly using <tt>Initiate</tt> (for outbound connections) or <tt>Rendezvous</tt>
(for peer-to-peer connections).</t>
        <t>Once a Connection is in the Established state, an application can send and receive
Message objects, and receive state updates.</t>
        <t>Closing or aborting a connection, either locally or from the peer, can terminate
a connection.</t>
        <section anchor="endpoint-objects">
          <name>Endpoint Objects</name>
          <ul spacing="normal">
            <li>Endpoint: An endpoint represents an identifier for one side of a transport connection.
Endpoints can be Local Endpoints or Remote Endpoints, and respectively represent an identity
that the application uses for the source or destination of a connection.
An endpoint can be specified at various levels of abstraction.
An endpoint at a higher level of abstraction (such as a hostname) can be resolved to more concrete identities (such as IP addresses). An endpoint may also represent a multicast group, in which case it selects a multicast transport for communication.</li>
            <li>Remote Endpoint: The Remote Endpoint represents the application's identifier for a peer that can participate in a transport connection; for example, the combination of a DNS name for the peer and a service name/port.</li>
            <li>Local Endpoint: The Local Endpoint represents the application's identifier for itself that it uses for transport connections; for example, a local IP address and port.</li>
          </ul>
        </section>
        <section anchor="objects">
          <name>Connections and Related Objects</name>
          <ul spacing="normal">
            <li>Connection: A Connection object represents one or more active transport protocol instances that can send and/or receive Messages between Local and Remote Endpoints. It is an abstraction that represents the communication. The Connection object holds state pertaining to the underlying transport protocol instances and any ongoing data transfers. For example, an active Connection can represent a connection-oriented protocol such as TCP, or can represent a fully-specified 5-tuple for a connectionless protocol such as UDP, where the Connection remains an abstraction at the endpoints. It can also represent a pool of transport protocol instances, e.g., a set of TCP and QUIC connections to equivalent endpoints, or a stream of a multi-streaming transport protocol instance. Connections can be created from a Preconnection or by a Listener.</li>
            <li>Preconnection: A Preconnection object is a representation of a Connection that has not yet been established. It has state that describes parameters of the Connection: the Local Endpoint from which that Connection will be established, the Remote Endpoint (<xref target="preestablishment"/>) to which it will connect, and Transport Properties that influence the paths and protocols a Connection will use. A Preconnection can be either fully specified (representing a single possible Connection), or it can be partially specified (representing a family of possible Connections). The Local Endpoint (<xref target="preestablishment"/>) is required for a Preconnection used to <tt>Listen</tt> for incoming Connections, but optional if it is used to <tt>Initiate</tt> a Connection. The Remote Endpoint is required in a Preconnection that used to <tt>Initiate</tt> a Connection, but is optional if it is used to <tt>Listen</tt> for incoming Connections. The Local Endpoint and the Remote Endpoint are both required if a peer-to-peer <tt>Rendezvous</tt> is to occur based on the Preconnection.</li>
            <li>
              <t>Transport Properties: Transport Properties allow the application to express their requirements, prohibitions, and preferences and configure a Transport Services system.  There are three kinds of Transport Properties:  </t>
              <ul spacing="normal">
                <li>Selection Properties (<xref target="preestablishment"/>): Selection Properties can only be specified on a Preconnection.</li>
                <li>Connection Properties (<xref target="preestablishment"/>): Connection Properties can be specified on a Preconnection and changed on the Connection.</li>
                <li>Message Properties (<xref target="datatransfer"/>): Message Properties can be specified as defaults on a Preconnection or a Connection, and can also be specified during data transfer to affect specific Messages.</li>
              </ul>
            </li>
            <li>Listener: A Listener object accepts incoming transport protocol connections from Remote Endpoints and generates corresponding Connection objects. It is created from a Preconnection object that specifies the type of incoming Connections it will accept.</li>
          </ul>
        </section>
        <section anchor="preestablishment">
          <name>Pre-establishment</name>
          <ul spacing="normal">
            <li>Selection Properties: The Selection Properties consist of the properties that an application can set to influence the selection of paths between the Local and Remote Endpoints, to influence the selection of transport protocols, or to configure the behavior of generic transport protocol features. These properties can take the form of requirements, prohibitions, or preferences. Examples of properties that influence path selection include the interface type (such as a Wi-Fi connection, or a Cellular LTE connection), requirements around the largest Message that can be sent, or preferences for throughput and latency. Examples of properties that influence protocol selection and configuration of transport protocol features include reliability, multipath support, and fast open support.</li>
            <li>Connection Properties: The Connection Properties are used to configure protocol-specific options and control per-connection behavior of a Transport Services implementation; for example, a protocol-specific Connection Property can express that if TCP is used, the implementation ought to use the User Timeout Option. Note that the presence of such a property does not require that a specific protocol will be used. In general, these properties do not explicitly determine the selection of paths or protocols, but can be used by an implementation during connection establishment. Connection Properties are specified on a Preconnection prior to Connection establishment, and can be modified on the Connection later. Changes made to Connection Properties after Connection establishment take effect on a best-effort basis.</li>
            <li>Security Parameters: Security Parameters define an application's requirements for authentication and encryption on a Connection. They are used by Transport Security protocols (such as those described in <xref target="RFC8922"/>) to establish secure Connections. Examples of parameters that can be set include local identities, private keys, supported cryptographic algorithms, and requirements for validating trust of remote identities. Security Parameters are primarily associated with a Preconnection object, but properties related to identities can be associated directly with endpoints.</li>
          </ul>
        </section>
        <section anchor="establishment">
          <name>Establishment Actions</name>
          <ul spacing="normal">
            <li>Initiate: The primary action that an application can take to create a Connection to a Remote Endpoint, and prepare any required local or remote state to enable the transmission of Messages. For some protocols, this will initiate a client-to-server style handshake; for other protocols, this will just establish local state (e.g., with connectionless protocols such as UDP). The process of identifying options for connecting, such as resolution of the Remote Endpoint, occurs in response to the <tt>Initiate</tt> call.</li>
            <li>Listen: Enables a Listener to accept incoming connections. The Listener will then create Connection objects as incoming connections are accepted (<xref target="events"/>). Listeners by default register with multiple paths, protocols, and Local Endpoints, unless constrained by Selection Properties and/or the specified Local Endpoint(s). Connections can be accepted on any of the available paths or endpoints.</li>
            <li>Rendezvous: The action of establishing a peer-to-peer connection with a
Remote Endpoint. It simultaneously attempts to initiate a connection to
a Remote Endpoint while listening for an incoming connection from that
endpoint.  The process of identifying options for the connection, such
as resolution of the Remote Endpoint, occurs in response to the <tt>Rendezvous</tt> call.
As with Listeners, the set of local paths and endpoints is constrained
by Selection Properties. If successful, the <tt>Rendezvous</tt> call returns a
Connection object to represent the established peer-to-peer connection.
The processes by which connections are initiated during a <tt>Rendezvous</tt>
action will depend on the set of Local and Remote Endpoints configured on
the Preconnection. For example, if the Local and Remote Endpoints are TCP
host candidates, then a TCP simultaneous open <xref target="RFC9293"/> will be performed.
However, if the set of Local Endpoints includes server reflexive
candidates, such as those provided by STUN (Session Traversal Utilities
for NAT) <xref target="RFC5389"/>, a <tt>Rendezvous</tt> action will race
candidates in the style of the ICE (Interactive Connection Establishment)
algorithm <xref target="RFC8445"/> to perform NAT
binding discovery and initiate a peer-to-peer connection.</li>
          </ul>
        </section>
        <section anchor="datatransfer">
          <name>Data Transfer Objects and Actions</name>
          <ul spacing="normal">
            <li>Message: A Message object is a unit of data that can be represented as bytes that can be transferred between two endpoints over a transport connection. The bytes within a Message are assumed to be ordered. If an application does not care about the order in which a peer receives two distinct spans of bytes, those spans of bytes are considered independent Messages. Messages are sent in the payload of IP packet. One packet can carry one or more Messages or parts of a Message.</li>
            <li>Message Properties: Message Properties are used to specify details about Message transmission. They can be specified directly on individual Messages, or can be set on a Preconnection or Connection as defaults. These properties might only apply to how a Message is sent (such as how the transport will treat prioritization and reliability), but can also include properties that specific protocols encode and communicate to the Remote Endpoint. When receiving Messages, Message Properties can contain information about the received Message, such as metadata generated at the receiver and information signalled by the Remote Endpoint. For example, a Message can be marked with a Message Property indicating that it is the final Message on a Connection.</li>
            <li>Send: The action to transmit a Message over a Connection to the Remote Endpoint. The interface to <tt>Send</tt> can accept Message Properties specific to how the Message content is to be sent. The status of the <tt>Send</tt> operation is delivered back to the sending application in an event (<xref target="events"/>).</li>
            <li>Receive: An action that indicates that the application is ready to asynchronously accept a Message over a Connection from a Remote Endpoint, while the Message content itself will be delivered in an event (<xref target="events"/>). The interface to <tt>Receive</tt> can include Message Properties specific to the Message that is to be delivered to the application.</li>
            <li>Framer: A Framer is a data translation layer that can be added to a Connection. Framers allow extending a Connection's Protocol Stack to define how to encapsulate or encode outbound Messages, and how to decapsulate or decode inbound data into Messages. In this way, message boundaries can be preserved when using a Connection object, even with a protocol that otherwise presents unstructured streams, such as TCP. This is designed based on the fact that many of the current application protocols evolved over TCP, which does not provide message boundary preservation, and since many of these protocols require message boundaries to function, each application layer protocol has defined its own framing. For example, when an HTTP application sends and receives HTTP messages over a byte-stream transport, it must parse the boundaries of HTTP messages from the stream of bytes.</li>
          </ul>
        </section>
        <section anchor="events">
          <name>Event Handling</name>
          <t>The following categories of events can be delivered to an application:</t>
          <ul spacing="normal">
            <li>Connection Ready: Signals to an application that a given Connection is ready to send and/or receive Messages. If the Connection relies on handshakes to establish state between peers, then it is assumed that these steps have been taken.</li>
            <li>Connection Closed: Signals to an application that a given Connection is no longer usable for sending or receiving Messages. The event delivers a reason or error to the application that describes the nature of the termination.</li>
            <li>Connection Received: Signals to an application that a given Listener has received a Connection.</li>
            <li>Message Received: Delivers received Message content to the application, based on a <tt>Receive</tt> action. This can include an error if the <tt>Receive</tt> action cannot be satisfied due to the Connection being closed.</li>
            <li>Message Sent: Notifies the application of the status of its <tt>Send</tt> action. This might indicate a failure if the Message cannot be sent, or an indication that the Message has been processed by the Transport Services system.</li>
            <li>Path Properties Changed: Notifies the application that a property of the Connection has changed that might influence how and where data is sent and/or received.</li>
          </ul>
        </section>
        <section anchor="termination">
          <name>Termination Actions</name>
          <ul spacing="normal">
            <li>Close: The action an application takes on a Connection to indicate that it no longer intends to send data, is no longer willing to receive data, and that the protocol should signal this state to the Remote Endpoint if the transport protocol allows this. (Note that this is distinct from the concept of "half-closing" a bidirectional connection, such as when a FIN is sent in one direction of a TCP connection <xref target="RFC9293"/>. The end of a stream can also be indicated using Message Properties when sending.)</li>
            <li>Abort: The action the application takes on a Connection to indicate a <tt>Close</tt> and also indicate that a Transport Services system should not attempt to deliver any outstanding data, and immediately drop the connection. This is intended for immediate, usually abnormal, termination of a connection.</li>
          </ul>
        </section>
        <section anchor="connection-groups">
          <name>Connection Groups</name>
          <t>A Connection Group is a set of Connections that shares Connection Properties and cached state generated by protocols.
A Connection Group represents state for managing Connections within a single application, and does not require end-to-end protocol signaling. For multiplexing transport protocols, only Connections within the same Connection Group are allowed to be multiplexed together.</t>
          <t>The API allows a Connection to be created from another Connection. This adds the new Connection to the Connection Group. A change to one of the Connection Properties on any Connection in the Connection Group automatically changes the Connection Property for all others. All Connections in a Connection Group share the same set of Connection Properties except for the Connection Priority. These Connection Properties are said to be entangled.</t>
          <t>For multiplexing transport protocols, only Connections within the same Connection Group are allowed to be multiplexed together. Passive Connections can also be added to a Connection Group, e.g., when a Listener receives a new Connection that is just a new stream of an already active multi-streaming protocol
instance.</t>
          <t>While Connection Groups are managed by the Transport Services system, an application can define different Connection Contexts for different Connection Groups to explicitly control caching boundaries, as discussed in <xref target="conn-context"/>.</t>
        </section>
      </section>
      <section anchor="transport-services-implementation">
        <name>Transport Services Implementation</name>
        <t>This section defines the key concepts of the Transport Services architecture.</t>
        <ul spacing="normal">
          <li>Transport Service implementation: This consists of all objects and protocol instances used internally to a system or library to implement the functionality needed to provide a transport service across a network, as required by the abstract interface.</li>
          <li>Transport Services system: This consists of the Transport Service implementation and the Transport Services API.</li>
          <li>Path: Represents an available set of properties that a Local Endpoint can use to communicate with a Remote Endpoint, such as routes, addresses, and physical and virtual network interfaces.</li>
          <li>Protocol Instance: A single instance of one protocol, including any state necessary to establish connectivity or send and receive Messages.</li>
          <li>Protocol Stack: A set of Protocol Instances (including relevant application, security, transport, or Internet protocols) that are used together to establish connectivity or send and receive Messages. A single stack can be simple (a single transport protocol instance over IP), or it can be complex (multiple application protocol streams going through a single security and transport protocol, over IP; or, a multi-path transport protocol over multiple transport sub-flows).</li>
          <li>Candidate Path: One path that is available to an application and conforms to the Selection Properties and System Policy, of which there can be several. Candidate Paths are identified during the gathering phase (<xref target="gathering"/>) and can be used during the racing phase (<xref target="racing"/>).</li>
          <li>Candidate Protocol Stack: One Protocol Stack that can be used by an application for a Connection, for which there can be several candidates. Candidate Protocol Stacks are identified during the gathering phase (<xref target="gathering"/>) and are started during the racing phase (<xref target="racing"/>).</li>
          <li>System Policy: The input from an operating system or other global preferences that can constrain or influence how an implementation will gather candidate paths and Protocol Stacks (<xref target="gathering"/>) and race the candidates during establishment (<xref target="racing"/>). Specific aspects of the System Policy either apply to all Connections or only certain ones, depending on the runtime context and properties of the Connection.</li>
          <li>Cached State: The state and history that the implementation keeps for each set of associated Endpoints that have been used previously. This can include DNS results, TLS session state, previous success and quality of transport protocols over certain paths, as well as other information.  This caching does not imply that the same decisions are necessarily made for subsequent connections, rather, it means that cached state is used by the Transport Services architecture to inform functions such as choosing the candidates to be raced, selecting appropriate transport parameters, etc. An application SHOULD NOT rely on specific caching behaviour, instead it ought to explicitly request any required or desired properties via the Transport Services API.</li>
        </ul>
        <section anchor="gathering">
          <name>Candidate Gathering</name>
          <ul spacing="normal">
            <li>Candidate Path Selection: Candidate Path Selection represents the act of choosing one or more paths that are available to use based on the Selection Properties and any available Local and Remote Endpoints provided by the application, as well as the policies and heuristics of a Transport Services implementation.</li>
            <li>Candidate Protocol Selection: Candidate Protocol Selection represents the act of choosing one or more sets of Protocol Stacks that are available to use based on the Transport Properties provided by the application, and the heuristics or policies within the Transport Services implementation.</li>
          </ul>
        </section>
        <section anchor="racing">
          <name>Candidate Racing</name>
          <t>Connection establishment attempts for a set of candidates may be performed simultaneously, synchronously, serially, or using some combination of all of these. We refer to this process as racing, borrowing terminology from Happy Eyeballs <xref target="RFC8305"/>.</t>
          <ul spacing="normal">
            <li>Protocol Option Racing: Protocol Option Racing is the act of attempting to establish, or scheduling attempts to establish, multiple Protocol Stacks that differ based on the composition of protocols or the options used for protocols.</li>
            <li>Path Racing: Path Racing is the act of attempting to establish, or scheduling attempts to establish, multiple Protocol Stacks that differ based on a selection from the available Paths. Since different Paths will have distinct configurations for local addresses and DNS servers, attempts across different Paths will perform separate DNS resolution steps, which can lead to further racing of the resolved Remote Endpoints.</li>
            <li>Remote Endpoint Racing: Remote Endpoint Racing is the act of attempting to establish, or scheduling attempts to establish, multiple Protocol Stacks that differ based on the specific representation of the Remote Endpoint, such as a particular IP address that was resolved from a DNS hostname.</li>
          </ul>
        </section>
        <section anchor="conn-context">
          <name>Separating Connection Contexts</name>
          <t>A Transport Services implementation can by default share stored properties across Connections within an application, such as cached protocol state, cached path state, and heuristics. This provides efficiency and convenience for the application, since the Transport Services system can automatically optimize behavior.</t>
          <t>The Transport Services API can allow applications to explicitly define Connection Contexts that force separation of Cached State and Protocol Stacks.
For example, a web browser application could use Connection Contexts with separate caches when implementing different tabs. Possible reasons to isolate Connections using separate Connection Contexts include:</t>
          <ul spacing="normal">
            <li>Privacy concerns about re-using cached protocol state that can lead to linkability. Sensitive state could include TLS session state <xref target="RFC8446"/> and HTTP cookies <xref target="RFC6265"/>. These concerns could be addressed using Connection Contexts with separate caches, such as for different browser tabs.</li>
            <li>Privacy concerns about allowing Connections to multiplex together, which can tell a Remote Endpoint that all of the Connections are coming from the same application. Using Connection Contexts avoids the Connections being multiplexed in a HTTP/2 or QUIC stream.</li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>RFC-EDITOR: Please remove this section before publication.</t>
      <t>This document has no actions for IANA.</t>
    </section>
    <section anchor="security-and-privacy-considerations">
      <name>Security and Privacy Considerations</name>
      <t>The Transport Services architecture does not recommend use of specific security
protocols or algorithms. Its goal is to offer ease of use for existing protocols
by providing a generic security-related interface. Each provided interface
translates to an existing protocol-specific interface provided by supported
security protocols. For example, trust verification callbacks are common parts
of TLS APIs; a Transport Services API exposes similar functionality
<xref target="RFC8922"/>.</t>
      <t>As described above in <xref target="equivalence"/>, if a Transport Services implementation races
between two different Protocol Stacks, both need to use the same security protocols
and options. However, a Transport Services implementation can race different security
protocols, e.g., if the application explicitly specifies that it considers them
equivalent.</t>
      <t>The application controls whether
information from previous racing attempts, or other information
about past communications that was cached by
the Transport Services system is used during establishment.
This allows applications to make
tradeoffs between efficiency (through racing) and privacy (via information that
might leak from the cache toward an on-path observer). Some applications have
native concepts (e.g. "incognito mode") that align with this functionality.</t>
      <t>Applications need to ensure that they use security APIs appropriately. In cases
where applications use an interface to provide sensitive keying material, e.g.,
access to private keys or copies of pre-shared keys (PSKs), key use needs to be
validated and scoped to the intended protocols and roles. For example, if an
application provides a certificate to only be used as client authentication for
outbound TLS and QUIC connections, the Transport Services system MUST NOT use this
automatically in other contexts (such as server authentication for inbound
connections, or in other another security protocol handshake that is not equivalent to TLS).</t>
      <t>A Transport Services system MUST NOT automatically fall back from
secure protocols to insecure protocols, or to weaker versions of secure
protocols (see <xref target="equivalence"/>). For example, if an application requests a specific version of TLS,
but the desired version of TLS is not available, its connection will fail.
As described in <xref target="equivalence"/>, the Transport Services API can allow applications
to specify minimum versions that are allowed to be used by the Transport Services system.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This work has received funding from the European Union's Horizon 2020 research
and innovation programme under grant agreements No. 644334 (NEAT), No. 688421
(MAMI) and No 815178 (5GENESIS).</t>
      <t>This work has been supported by Leibniz Prize project funds of DFG - German
Research Foundation: Gottfried Wilhelm Leibniz-Preis 2011 (FKZ FE 570/4-1).</t>
      <t>This work has been supported by the UK Engineering and Physical Sciences
Research Council under grant EP/R04144X/1.</t>
      <t>Thanks to Reese Enghardt, Max Franke, Mirja Kuehlewind, Jonathan Lennox, and
Michael Welzl for the discussions and feedback that helped shape the architecture
described here.
Particular thanks is also due to Philipp S. Tiesel and Christopher A. Wood,
who were both co-authors of this architecture specification as it progressed
through the TAPS working group.
Thanks as well to Stuart Cheshire, Josh Graessley, David Schinazi,
and Eric Kinnear for their implementation and design efforts, including Happy
Eyeballs, that heavily influenced this work.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="POSIX">
          <front>
            <title>IEEE Std. 1003.1-2008 Standard for Information Technology -- Portable Operating System Interface (POSIX).  Open group Technical Standard: Base Specifications, Issue 7</title>
            <author>
              <organization/>
            </author>
            <date year="2008"/>
          </front>
        </reference>
        <reference anchor="RFC8446">
          <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-interface">
          <front>
            <title>An Abstract Application Layer Interface to Transport Services</title>
            <author fullname="Brian Trammell" initials="B." surname="Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <author fullname="Reese Enghardt" initials="R." surname="Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Gorry Fairhurst" initials="G." surname="Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Mirja Kühlewind" initials="M." surname="Kühlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Colin Perkins" initials="C." surname="Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <author fullname="Philipp S. Tiesel" initials="P. S." surname="Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <date day="29" month="March" year="2023"/>
            <abstract>
              <t>   This document describes an abstract application programming
   interface, API, to the transport layer that enables the selection of
   transport protocols and network paths dynamically at runtime.  This
   API enables faster deployment of new protocols and protocol features
   without requiring changes to the applications.  The specified API
   follows the Transport Services architecture by providing
   asynchronous, atomic transmission of messages.  It is intended to
   replace the BSD sockets API as the common interface to the transport
   layer, in an environment where endpoints could select from multiple
   interfaces and potential transport protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-20"/>
        </reference>
        <reference anchor="I-D.ietf-taps-impl">
          <front>
            <title>Implementing Interfaces to Transport Services</title>
            <author fullname="Anna Brunstrom" initials="A." surname="Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Reese Enghardt" initials="R." surname="Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Philipp S. Tiesel" initials="P. S." surname="Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <date day="9" month="March" year="2023"/>
            <abstract>
              <t>   The Transport Services system enables applications to use transport
   protocols flexibly for network communication and defines a protocol-
   independent Transport Services Application Programming Interface
   (API) that is based on an asynchronous, event-driven interaction
   pattern.  This document serves as a guide to implementation on how to
   build such a system.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-15"/>
        </reference>
        <reference anchor="RFC8095">
          <front>
            <title>Services Provided by IETF Transport Protocols and Congestion Control Mechanisms</title>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="B. Trammell" initials="B." role="editor" surname="Trammell">
              <organization/>
            </author>
            <author fullname="M. Kuehlewind" initials="M." role="editor" surname="Kuehlewind">
              <organization/>
            </author>
            <date month="March" year="2017"/>
            <abstract>
              <t>This document describes, surveys, and classifies the protocol mechanisms provided by existing IETF protocols, as background for determining a common set of transport services.  It examines the Transmission Control Protocol (TCP), Multipath TCP, the Stream Control Transmission Protocol (SCTP), the User Datagram Protocol (UDP), UDP-Lite, the Datagram Congestion Control Protocol (DCCP), the Internet Control Message Protocol (ICMP), the Real-Time Transport Protocol (RTP), File Delivery over Unidirectional Transport / Asynchronous Layered Coding (FLUTE/ALC) for Reliable Multicast, NACK- Oriented Reliable Multicast (NORM), Transport Layer Security (TLS), Datagram TLS (DTLS), and the Hypertext Transport Protocol (HTTP), when HTTP is used as a pseudotransport.  This survey provides background for the definition of transport services within the TAPS working group.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8095"/>
          <seriesInfo name="DOI" value="10.17487/RFC8095"/>
        </reference>
        <reference anchor="RFC8923">
          <front>
            <title>A Minimal Set of Transport Services for End Systems</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl">
              <organization/>
            </author>
            <author fullname="S. Gjessing" initials="S." surname="Gjessing">
              <organization/>
            </author>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document recommends a minimal set of Transport Services offered by end systems and gives guidance on choosing among the available mechanisms and protocols. It is based on the set of transport features in RFC 8303.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8923"/>
          <seriesInfo name="DOI" value="10.17487/RFC8923"/>
        </reference>
        <reference anchor="RFC8922">
          <front>
            <title>A Survey of the Interaction between Security Protocols and Transport Services</title>
            <author fullname="T. Enghardt" initials="T." surname="Enghardt">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="C. Perkins" initials="C." surname="Perkins">
              <organization/>
            </author>
            <author fullname="K. Rose" initials="K." surname="Rose">
              <organization/>
            </author>
            <author fullname="C. Wood" initials="C." surname="Wood">
              <organization/>
            </author>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document provides a survey of commonly used or notable network security protocols, with a focus on how they interact and integrate with applications and transport protocols. Its goal is to supplement efforts to define and catalog Transport Services by describing the interfaces required to add security protocols. This survey is not limited to protocols developed within the scope or context of the IETF, and those included represent a superset of features a Transport Services system may need to support.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8922"/>
          <seriesInfo name="DOI" value="10.17487/RFC8922"/>
        </reference>
        <reference anchor="RFC8303">
          <front>
            <title>On the Usage of Transport Features Provided by IETF Transport Protocols</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl">
              <organization/>
            </author>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen">
              <organization/>
            </author>
            <author fullname="N. Khademi" initials="N." surname="Khademi">
              <organization/>
            </author>
            <date month="February" year="2018"/>
            <abstract>
              <t>This document describes how the transport protocols Transmission Control Protocol (TCP), MultiPath TCP (MPTCP), Stream Control Transmission Protocol (SCTP), User Datagram Protocol (UDP), and Lightweight User Datagram Protocol (UDP-Lite) expose services to applications and how an application can configure and use the features that make up these services.  It also discusses the service provided by the Low Extra Delay Background Transport (LEDBAT) congestion control mechanism.  The description results in a set of transport abstractions that can be exported in a transport services (TAPS) API.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8303"/>
          <seriesInfo name="DOI" value="10.17487/RFC8303"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC8170">
          <front>
            <title>Planning for Protocol Adoption and Subsequent Transitions</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>Over the many years since the introduction of the Internet Protocol, we have seen a number of transitions throughout the protocol stack, such as deploying a new protocol, or updating or replacing an existing protocol.  Many protocols and technologies were not designed to enable smooth transition to alternatives or to easily deploy extensions; thus, some transitions, such as the introduction of IPv6, have been difficult.  This document attempts to summarize some basic principles to enable future transitions, and it also summarizes what makes for a good transition plan.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8170"/>
          <seriesInfo name="DOI" value="10.17487/RFC8170"/>
        </reference>
        <reference anchor="RFC5482">
          <front>
            <title>TCP User Timeout Option</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="F. Gont" initials="F." surname="Gont">
              <organization/>
            </author>
            <date month="March" year="2009"/>
            <abstract>
              <t>The TCP user timeout controls how long transmitted data may remain unacknowledged before a connection is forcefully closed.  It is a local, per-connection parameter.  This document specifies a new TCP option -- the TCP User Timeout Option -- that allows one end of a TCP connection to advertise its current user timeout value.  This information provides advice to the other end of the TCP connection to adapt its user timeout accordingly.  Increasing the user timeouts on both ends of a TCP connection allows it to survive extended periods without end-to-end connectivity.  Decreasing the user timeouts allows busy servers to explicitly notify their clients that they will maintain the connection state only for a short time without connectivity.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5482"/>
          <seriesInfo name="DOI" value="10.17487/RFC5482"/>
        </reference>
        <reference anchor="RFC9293">
          <front>
            <title>Transmission Control Protocol (TCP)</title>
            <author fullname="W. Eddy" initials="W." role="editor" surname="Eddy">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies the Transmission Control Protocol (TCP).  TCP is an important transport-layer protocol in the Internet protocol stack, and it has continuously evolved over decades of use and growth of the Internet.  Over this time, a number of changes have been made to TCP as it was specified in RFC 793, though these have only been documented in a piecemeal fashion.  This document collects and brings those changes together with the protocol specification from RFC 793.  This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093, 6429, 6528, and 6691 that updated parts of RFC 793.  It updates RFCs 1011 and 1122, and it should be considered as a replacement for the portions of those documents dealing with TCP requirements.  It also updates RFC 5961 by adding a small clarification in reset handling while in the SYN-RECEIVED state.  The TCP header control bits from RFC 793 have also been updated based on RFC 3168.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="9293"/>
          <seriesInfo name="DOI" value="10.17487/RFC9293"/>
        </reference>
        <reference anchor="RFC5389">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="R. Mahy" initials="R." surname="Mahy">
              <organization/>
            </author>
            <author fullname="P. Matthews" initials="P." surname="Matthews">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <date month="October" year="2008"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with Network Address Translator (NAT) traversal.  It can be used by an endpoint to determine the IP address and port allocated to it by a NAT.  It can also be used to check connectivity between two endpoints, and as a keep-alive protocol to maintain NAT bindings.  STUN works with many existing NATs, and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself.  Rather, it is a tool to be used in the context of a NAT traversal solution.  This is an important change from the previous version of this specification (RFC 3489), which presented STUN as a complete solution.</t>
              <t>This document obsoletes RFC 3489.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5389"/>
          <seriesInfo name="DOI" value="10.17487/RFC5389"/>
        </reference>
        <reference anchor="RFC8445">
          <front>
            <title>Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal</title>
            <author fullname="A. Keranen" initials="A." surname="Keranen">
              <organization/>
            </author>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <date month="July" year="2018"/>
            <abstract>
              <t>This document describes a protocol for Network Address Translator (NAT) traversal for UDP-based communication.  This protocol is called Interactive Connectivity Establishment (ICE).  ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN).</t>
              <t>This document obsoletes RFC 5245.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8445"/>
          <seriesInfo name="DOI" value="10.17487/RFC8445"/>
        </reference>
        <reference anchor="RFC8305">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames.  These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics.  Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly.  This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs".  This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA9V97XYbR5bYfzxFR/ox5AiAJVmekelkMzRFyVzLEkek4t3N
SeIGUCB6BHRjuxukYFk5eYe8YZ4k97PqVnU3SXtmz+zqnBlLALqr6tb9/pxM
JqO2aNfuKDsus+N6vipaN293tcuWVZ1d1nnZbKu6zS5cfV3MXTPKZ7PaXR9l
l8fnF9EDo0U1L/MNvGlR58t2Urh2OWnzbTPJ4VeTJ89Hi7x1R6M5/P9VVe+P
sqZdjEbFtj7K2nrXtE8fP/768dNRXrv8KKw8uqnqD1d1tdvKmj/Cv4vyKnuF
n40+uD38YHGUnZWtq0vXTl7g6qNR0+bl4n/l66qEHe1h49viKPvvbTUfZw28
tnbLBv623+Bf/sdolO/aVVUfjbJsAv/LsqJsYL1pdp7v1nv6hM92WW02e/Np
XSHs3KJoq5o+qOorgOV2u3awpfmUPmtgOdceZW9LJ1+d5/WH7Mec3zEvWoDG
yW7r6rYoq3F2kq8LAH9Z5NnXXz1+8ox/Ve3KFsH2vgSQL7KLFgDZZNUyO964
upjn9Cu3yYs1AHSLO/xTjotN59UmPte3U4TvZuPWa3O0b+siL+Mv+k/3qqqu
4AwXN0X7s6vXAOfs1Wb2nV0fL/9PrbxqOl9FYHgFl51fT17t1uvJ+Tpvf86e
GDg8f/z4WfYvOzjRKj63WS8+zvEU9r4r4fV0UD3PcVnmyRe0/e/zeg0bWCAg
r13dwKrR9vzHrm2uckCj7KnZ3h++epI9f+5fkm7RLVxpAZHDJqYz3cSfPuS7
aePi7b+aZi/zol7t6qY1239VLWq45vgrOkDYN93+zNULJ6vqGV64bV63G1e2
+JPT8qooHSBJeRX96mWdN67O3lQzuM5vd8V6ob/gs+qrx9nxt0+fZV++P02O
O69auQ5/YCDtev8nV19N89minObz6e4DfQ83epSt2nZ79MUXNzc30/gnX8Qw
OQHKc0jnjYHISbUuyujzHnC8WufNVXUTnfNivqqqNX57Um22uxbZx8W8cOXc
mdPKk1n26snT7Pmf/9xLdd/DswvBJjnxvNn+Cf7H25rCloCplUC+m7yFjR3R
T8/fXpz9E/81y4ThPjg7PT0FMl5MsyePH385fTIBDvgc6bpc5PWCGPCZvqgC
ynTzVVmtq6t9Nplk58DEcry3t7ByzkfaN63bMCdc5nOXHdCyh9MMf1RmxEX5
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
E2i3mcFWUkqOrCFeqCi3O43FlyZpReICKM6IZsCkngGnD/zQqE8Y5wHRAzhA
9ssSxBWyBPHoJIYkRRevcjZPIjuQT5PSDJEixu5Ze5cHmnsrYx3T8HZ9V7RB
13L4Rc9CoUj/JhSFtGFjt4goxO0mSEok2OGzxLlUQhjDXoIVwRBPHQHeJ9Ex
jeN1htUb93HL0f0I/cdevHFkmRINwm2nzoSOzm9YcTePI6RIULoiew1ETUXG
dUV+72XNyWNBivSkpQA2tU6jwXcBwdsjjPpHQ4mXCZKqM70/ZwCz99Dd+gNF
Cz495JgCe/ZsLMBHEziUyqGBKGeUMkUY5WxkHmNWlDnAUYvjKE2I7Hybn8W7
1SxN0pIldotSxufnEWCiTwwqRVky4lRJcw0wLHJyTqu9f3E+yrKDdr+VWGKS
4BFScYDHfsAo8fqQ1g/P68/4267YpXNwtg/KC6+KCuTEigmZkYGDskkzw5yD
bAHYPceYFZ5JL1OeNck8+olPe4HTsRoP57kuctTmJEUF+Xm13knaqduOAdic
QSgJmWLdwRsYAhMfRG7a3Ywfv6b0iP/t/4xGjya/5c+j0S9Zzx+bRtz755ff
vJ5/Q/edfctkWbTQI/q4+9Gj7jK/cE49QMy/+xeQCZQOibj7C3/yAtCEwiv0
GT+nINbn7rVezz5vO1b3z90QfdT7HC2AhJH8QRq5bT167numnjeBnbCv8t9g
n531/2Y4K7uXdNiQ6/63Ws8S2qej7OGyuJooM6byiP/ywDBF4uoPPt8vXYnj
hw17JcmhZ/l+HMetOFiH39YlJiBq2K7Z8XmDAEjLDET1T1UBYvxgzJS1RPbR
vZlT8LcIPsVEts3cOkS8/4NzoX9DrBxIF/wPc4ae/Z/FiGDWg+cO3jdk2r54
cyFBUwqfXpxcwv+/OMG/X76Gr/78/uxknLl2fvjv9+z05+/BVVqqr2CWMoBA
d7GXO+P4Ni8gTs9OfEHohGNl8eQ2ZZGTiMnedCZlm/VU78roqSOiH6NFuys5
0etmVa3dNPt2L69DcYT+easykR1vkgli+43yHqKiI0pSFWcTgIYiNJKAsFQf
lk9vTzVWkwRP4UV/9thHml9xukw3+/t3nCG+Xk4H7yvhrgN5FOFn/dHdOB2H
Te5QM4N5WAOpB/4GycUXex42cBK1AxCt6LK8zWlirNZmtBFPqsXKS4CPvKWj
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

-->

</rfc>
