<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.24 -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-arch-12" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" obsoletes="" updates="" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.0 -->
  <front>
    <title abbrev="TAPS Architecture">An Architecture for Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-12"/>
    <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="January" day="03"/>
    <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" numbered="true" toc="default">
      <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" format="default"/> 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" format="default"/> 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" format="default"/>).</t>
      <t>This document was developed in parallel with the specification of the Transport Services API <xref target="I-D.ietf-taps-interface" format="default"/> and implementation guidelines <xref target="I-D.ietf-taps-impl" format="default"/>. 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" numbered="true" toc="default">
        <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" format="default"/>, and the distilled minimal set of the features offered by transport protocols <xref target="RFC8923" format="default"/>. 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" format="default"/>.</t>
        <t>One of the key insights to come from identifying the minimal set of features provided by transport protocols <xref target="RFC8923" format="default"/> 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" numbered="true" toc="default">
        <name>Overview</name>
        <t>This document describes the Transport Services architecture in three sections:</t>
        <ul spacing="normal">
          <li>
            <xref target="model" format="default"/> 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" format="default"/> 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" format="default"/> 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" format="default"/> and implementation guidelines <xref target="I-D.ietf-taps-impl" format="default"/>. The Preconnection allows applications to configure Connection Properties.</li>
          <li>
            <xref target="concepts" format="default"/> 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" numbered="true" toc="default">
        <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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when,
they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="model" numbered="true" toc="default">
      <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" format="default"/> 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" format="default"/> 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" numbered="true" toc="default">
        <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.
In contrast to the Socket API, all interaction using the Transport Services API is expected to be asynchronous and use an event-driven model (see <xref target="events" format="default"/>). 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 API not directly related to events on the network or network interfaces.</t>
      </section>
      <section anchor="data-transfer-using-messages" numbered="true" toc="default">
        <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="RFC7230" format="default"/>; TLS record headers carry a version, content type, and length <xref target="RFC8446" format="default"/>; and HTTP/2 uses frames to segment its headers and bodies <xref target="RFC7540" format="default"/>.</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 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" format="default"/>) bridge the gap between the two abstractions.</t>
      </section>
      <section anchor="flexible-implementation" numbered="true" toc="default">
        <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" format="default"/> and <xref target="racing" format="default"/>). 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" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <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" format="default"/>.</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" numbered="true" toc="default">
        <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 be strictly required by an application and thus 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" numbered="true" toc="default">
        <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" format="default"/>), 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" format="default"/>). 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 that fallback to a specific other version of a protocol \, e.g., to allow fallback to TLS 1.2 if TLS 1.3 is not available.</t>
      </section>
      <section anchor="maintain-interoperability" numbered="true" toc="default">
        <name>Maintain Interoperability</name>
        <t>It is important to note that neither the Transport Services API <xref target="I-D.ietf-taps-interface" format="default"/> nor the guidelines for the Transport Service implementation <xref target="I-D.ietf-taps-impl" format="default"/> 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" numbered="true" toc="default">
      <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 aTransport 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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <name>Transport Services API Concepts</name>
        <t>Fundamentally, a Transport Services API needs to provide connection objects (<xref target="objects" format="default"/>) 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" format="default"/>) 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" format="default"/>) focuses on the actions that an application takes on the connection objects to prepare for data transfer.</li>
          <li>Data Transfer (<xref target="datatransfer" format="default"/>) 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" format="default"/>) defines categories of notifications which 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" format="default"/>) 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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" format="default"/>) 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" format="default"/>) 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" format="default"/>): Selection Properties can only be specified on a Preconnection.</li>
                <li>Connection Properties (<xref target="preestablishment" format="default"/>): Connection Properties can be specified on a Preconnection and changed on the Connection.</li>
                <li>Message Properties (<xref target="datatransfer" format="default"/>): 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 end points. 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" numbered="true" toc="default">
          <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" format="default"/>) 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" numbered="true" toc="default">
          <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" format="default"/>). 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="RFC0793" format="default"/> 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" format="default"/> to perform NAT
binding discovery and initiate a peer-to-peer connection.</li>
          </ul>
        </section>
        <section anchor="datatransfer" numbered="true" toc="default">
          <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" format="default"/>).</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" format="default"/>). 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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" format="default"/>.</t>
        </section>
      </section>
      <section anchor="transport-services-implementation" numbered="true" toc="default">
        <name>Transport Services Implementation</name>
        <t>This section defines the key concepts of the Transport Services architecture.</t>
        <ul spacing="normal">
          <li>Transport Service implementaion: 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 implementaion 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" format="default"/>) and can be used during the racing phase (<xref target="racing" format="default"/>).</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" format="default"/>) and are started during the racing phase (<xref target="racing" format="default"/>).</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" format="default"/>) and race the candidates during establishment (<xref target="racing" format="default"/>). 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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" format="default"/>.</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" numbered="true" toc="default">
          <name>Separating Connection Contexts</name>
          <t>By default, stored properties of the implementation, such as cached protocol state, cached path state, and heuristics, may be shared (e.g. across multiple connections in an application). 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" format="default"/> and HTTP cookies <xref target="RFC6265" format="default"/>. 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" numbered="true" toc="default">
      <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" numbered="true" toc="default">
      <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" format="default"/>.</t>
      <t>As described above in <xref target="equivalence" format="default"/>, 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. For example, applications ought not to use PSK material created for
the Encapsulating Security Protocol (ESP, part of IPsec) <xref target="RFC4303" format="default"/> with QUIC,
and applications ought not to use private keys intended for server
authentication as keys for client authentication.</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" format="default"/>). For example, if an application requests a specific version of TLS,
but the desired version of TLS is not available, its connection will fail.
Applications are thus responsible for implementing security protocol fallback
or version fallback by creating multiple Connections, if so
desired. Alternatively, the Transport Services API MAY allow applications to
specify that fallback to a specific other version of a protocol is allowed by the Transport Services system.</t>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <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="I-D.ietf-taps-interface">
          <front>
            <title>An Abstract Application Layer Interface to Transport Services</title>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Michael Welzl">
              <organization>University of Oslo</organization>
            </author>
            <author fullname="Theresa Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Godred Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Mirja Kuehlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <author fullname="Philipp S. Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Kyle Rose">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="3" month="January" 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-14"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <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-impl">
          <front>
            <title>Implementing Interfaces to Transport Services</title>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Theresa Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Karl-Johan Grinnemo">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tom Jones">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Philipp S. Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <author fullname="Michael Welzl">
              <organization>University of Oslo</organization>
            </author>
            <date day="12" month="July" year="2021"/>
            <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-10"/>
        </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="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <author fullname="M. Belshe" initials="M." surname="Belshe">
              <organization/>
            </author>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <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 perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7540"/>
          <seriesInfo name="DOI" value="10.17487/RFC7540"/>
        </reference>
        <reference anchor="RFC0793">
          <front>
            <title>Transmission Control Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel">
              <organization/>
            </author>
            <date month="September" year="1981"/>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="793"/>
          <seriesInfo name="DOI" value="10.17487/RFC0793"/>
        </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>
        <reference anchor="RFC4303">
          <front>
            <title>IP Encapsulating Security Payload (ESP)</title>
            <author fullname="S. Kent" initials="S." surname="Kent">
              <organization/>
            </author>
            <date month="December" year="2005"/>
            <abstract>
              <t>This document describes an updated version of the Encapsulating Security Payload (ESP) protocol, which is designed to provide a mix of security services in IPv4 and IPv6.  ESP is used to provide confidentiality, data origin authentication, connectionless integrity, an anti-replay service (a form of partial sequence integrity), and limited traffic flow confidentiality.  This document obsoletes RFC 2406 (November 1998).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4303"/>
          <seriesInfo name="DOI" value="10.17487/RFC4303"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
