<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-arch-15" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="TAPS Architecture">An Architecture for Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-15"/>
    <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="2022" month="October" day="20"/>
    <area>Transport</area>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes an architecture for exposing transport protocol features to applications for network communication, a Transport Services system. The Transport Services Application Programming Interface (API) is based on an asynchronous, event-driven interaction pattern. This API uses messages for representing data transfer to applications, and describes how implementations can use multiple IP addresses, multiple protocols, and multiple paths, and provide multiple application streams. This document further defines common terminology and concepts to be used in definitions of a Transport Service API and a Transport Services implementation.</t>
    </abstract>
  </front>
  <middle>
    <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>
    <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 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 represent 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. Providing a message-based abstraction provides many benefits, such as:</t>
        <ul spacing="normal">
          <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 gives the protocol stack additional information to allow it to make better use of modern transport services, while simplifying the application's role in parsing data. For protocols which 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>
    <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"/>.</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 explictly set properties that define any necssary 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; 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>
      </section>
      <section anchor="equivalence">
        <name>Select Equivalent Protocol Stacks</name>
        <t>A Transport Services implementation can select Protocol Stacks based on the Selection and Connection Properties communicated by the application, along with any security parameters. If two different Protocol Stacks can be safely swapped, or raced in parallel (see <xref target="racing"/>), then they are considered to be "equivalent". Equivalent Protocol Stacks are defined as stacks that can provide the same Transport Properties and interface expectations as requested by the application.</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>
      <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 transport objects. 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 state is torn down in the transport.</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>
        <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>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 Listen for incoming Connections, but optional if it is used to Initiate a Connection. The Remote Endpoint is required in a Preconnection that used to Initiate a Connection, but is optional if it is used to Listen for incoming Connections. The Local Endpoint and the Remote Endpoint are both required if a peer-to-peer Rendezvous 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>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>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 Initiate 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 Rendezvous call.
As with Listeners, the set of local paths and endpoints is constrained
by Selection Properties. If successful, the Rendezvous call returns a
Connection object to represent the established peer-to-peer connection.
The processes by which connections are initiated during a Rendezvous
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, a Rendezvous action will race
candidates in the style of the ICE 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.</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 Send can accept Message Properties specific to how the Message content is to be sent. The status of the Send 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 Receive 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 to define how application-layer Messages are transmitted over a transport stack. This is particularly relevant when using a protocol that otherwise presents unstructured streams, such as TCP.</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 Receive action. This can include an error if the Receive action cannot be satisfied due to the Connection being closed.</li>
            <li>Message Sent: Notifies the application of the status of its Send 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. 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 Close 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 properties and caches. 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>When the API clones an existing Connection, this adds a 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 Connection Contexts to 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 Service 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,  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: Represents 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.</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.
The Transport Services API MAY 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 Theresa 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="27" month="September" year="2022"/>
            <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-17"/>
        </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="31" month="August" year="2022"/>
            <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-13"/>
        </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="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="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="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:
H4sIAAAAAAAAA9V9a3fbRpbgd/4KrP1hpDbJ2I7TnSi7s63IsuOJH2pL2czM
nt0dkCyKaIMAGwClMLb3t+99Vt0qgJSS7j69o3MSSyRQj1u37vsxmUxGXdGV
7iQ7rbLTZr4qOjfvto3LlnWTXTV51W7qpssuXXNTzF07ymezxt2cZFenF5fR
C6NFPa/yNYy0aPJlNylct5x0+aad5PDU5MlXo0XeuZPRHP5/XTe7k6ztFqNR
sWlOsq7Ztt3Tx4+/efx0lDcuPwkzj27r5sN1U283MudP8HdRXWcv8bPRB7eD
BxYn2auqc03luslznH00aru8WvyfvKwrWNEOFr4pTrL/2dXzcdbCsI1btvDb
bo2//K/RKN92q7o5GWXZBP7LsqJqYb5pdpFvyx19wnu7qtfrnfm0qRF2blF0
dUMf1M01wHKzKR0saT6lz1qYznUn2bvKyVcXefMh+ynnMeZFB9A4225c0xVV
Pc7O8rIA8FdFnn3z1eMnz/ipelt1CLYfKwD5IrvsAJBtVi+z07VrinlOT7l1
XpQA0A2u8I85Tjad1+t4X99NEb7rtStLs7XvmiKv4i+Gd/eyrq9hD5e3RfeL
a0qAc/ZyPfvezo+H/8dOhprOVxEYXsJh5zeTl9uynFyUefdL9sTA4evHj59l
/76FHa3ifZv54u2cTmHt2wqGp43qfk6rKk++oOX/kDclLGCBgLxxTQuzRsvz
H7uuvc4BjbKnZnm//+pJ9vXXfpB0iW7hKguIHBYxneki/vgh305bFy//5TR7
kRfNatu0nVn+y3rRwDHHX9EGwrrp9GeuWTiZVffw3G3yplu7qsNHzqvronKA
JNV19NSLJm9dk72tZ3Cc322LcqFP8F516HF2+t3TZ9mXP54n253XnRyH3zBc
7Wb3R9dcT/PZoprm8+n2A30PJ3qSrbpuc/LFF7e3t9P4kS9imJzBzXN4z1sD
kbO6LKro8wFwvCzz9rq+jfZ5OV/VdYnfntXrzbZD8nE5L1w1d2a38maWvXzy
NPv6T38avHU/wLsLwSbZ8bzd/BH+42VNYUlA1Cq4vuu8g4Wd0KMX7y5f/Sv/
mmVCcB+8Oj8/h2u8mGZPHj/+cvpkAhTwa7zX1SJvFkSAX+lANdxMN19VdVlf
77LJJLsAIpbjub2DmXPe0q7t3Jop4TKfu+yIpj2eZvhQlREV5WGAXJR+Jrj6
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
xn+ue0q5Zej32dvaOETL5J7e5F6ulH4avhhmJTAqVE21L+CjUpmMu15x9IOX
EQxQZo5uDZ1/tBtgG90JOg2CwzOqpDuUDESsJlozC1XKEbLQmVnWbRi6Llj9
V3nlGbgejH0Dz2QmxebnUXHo/YE8FG2IriZDs9kSvziwVa0upGJFLzaQ1qIR
MVwbTLat3jNO6lpIBIG2xtbsLUMfFkLubJJQ0INsrhAhNx5bJKXsS11LGYI/
ERWMwiXmkhWtJ2CcIBbdc+SlEhFiU081b8+7mNRlyD0mWNpj86e3yA5FnAlu
DLgSfW+oAmjIkfVoMUfyyo9tX04yBRzag1VeLieI6rD2B+guKVjDKLg3UGIR
Qv4jVYBfvHrrzwv7nFUu82+KO/DsoqcIkty1DFEXNihJ4b8QTjkgTNxqii+2
0zvG46bEjVgoTVH1zvPOGWmkfFSbYsKhQkVyjFTbjG18LFqUIttj7fwOA0YW
Gu4j5dLXwJKkUcSiwYKPkf1toPAQxS3qW2MA0ZZb3c64zNI4qpnRC6JPQpCz
l5RrjIWf0g9ZsBJTjLW3suq1yrlsaFTelNruUZm63mgm1orxG/exzqv8Oo0O
8dYBbYAaFZXFS5e6YAEwaENxUV8UulDUbRH1JLVZ/zwcPtNKteaBdRAlx3D0
3pY4Oc8Xt5yFVqU/0yfXlKMHMP9JytByiR2gE66Nin7ZCD26rVRpMqcacn3t
KV0HgltLEXOlmj4RNldHzONWTOk5YmV/UXFD7XM1PDJXfkKLqpaDP4Xfo6Cf
5OLxHIRHAcY9dLMrdz8TtVIrdfQQmRN2ark44MjOC1/ICFR5RDBkK/9gFAHG
27ZxgF8bkcRh5eUl54f4lNDKBJUFw1cfj0TjIg9bbhomco9omJSldAk6TGPh
FCAjHwGHGF6U/e0zyOmS30MCGQ85PkU5s+I4Sok/swtFo1G0l25UrZg43nzb
tuoeRzo4mfPr1MVquLxFv6uzKbWmSdq4kw9uF4pJ3a8fZBLaPVxa8kREWpP4
ThfLmH8HQkqlEpmvoUXIItwJsLssZg06mrva9Jclc0/U8Uy6Q5gyHZGOK+uV
opS+E91YK1gXttuURHxGzRaHds+LHNj1IEB7JRn399PgMnss1p6AJGVT5YJf
MLQLiAMD0xwA34JxqGBl3+ji3cfA+AkfQ/NhOsHVri3U13JTNB1ab/v9bnj9
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

-->

</rfc>
