<?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-impl-13" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title abbrev="TAPS Implementation">Implementing Interfaces to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-13"/>
    <author initials="A." surname="Brunstrom" fullname="Anna Brunstrom" role="editor">
      <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="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="T." surname="Enghardt" fullname="Theresa Enghardt">
      <organization>Netflix</organization>
      <address>
        <postal>
          <street>121 Albright Way</street>
          <city>Los Gatos, CA 95032</city>
          <country>United States of America</country>
        </postal>
        <email>ietf@tenghardt.net</email>
      </address>
    </author>
    <author initials="P." surname="Tiesel" fullname="Philipp S. Tiesel">
      <organization>SAP SE</organization>
      <address>
        <postal>
          <street>Konrad-Zuse-Ring 10</street>
          <city>14469 Potsdam</city>
          <country>Germany</country>
        </postal>
        <email>philipp@tiesel.net</email>
      </address>
    </author>
    <author initials="M." surname="Welzl" fullname="Michael Welzl">
      <organization>University of Oslo</organization>
      <address>
        <postal>
          <street>PO Box 1080 Blindern</street>
          <city>0316  Oslo</city>
          <country>Norway</country>
        </postal>
        <email>michawe@ifi.uio.no</email>
      </address>
    </author>
    <date year="2022" month="September" day="01"/>
    <area>Transport</area>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <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>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The Transport Services architecture <xref target="I-D.ietf-taps-arch"/> defines a system that allows applications to flexibly use transport networking protocols. The API that such a system exposes to applications is defined as the Transport Services API <xref target="I-D.ietf-taps-interface"/>. This API is designed to be generic across multiple transport protocols and sets of protocol features.</t>
      <t>This document serves as a guide to implementation on how to build a system that provides a Transport Services API. It is the job of an implementation of a Transport Services system to turn the requests of an application into decisions on how to establish connections, and how to transfer data over those connections once established. The terminology used in this document is based on the Architecture <xref target="I-D.ietf-taps-arch"/>.</t>
    </section>
    <section anchor="implementing-connection-objects">
      <name>Implementing Connection Objects</name>
      <t>The connection objects that are exposed to applications for Transport Services are:</t>
      <ul spacing="normal">
        <li>the Preconnection, the bundle of properties that describes the application constraints on, and preferences for, the transport;</li>
        <li>the Connection, the basic object that represents a flow of data as Messages in either direction between the Local and Remote Endpoints;</li>
        <li>and the Listener, a passive waiting object that delivers new Connections.</li>
      </ul>
      <t>Preconnection objects should be implemented as bundles of properties that an application can both read and write. A Preconnection object influences a Connection only at one point in time: when the Connection is created. Connection objects represent the interface between the application and the implementation to manage transport state, and conduct data transfer. During the process of establishment (<xref target="conn-establish"/>), the Connection will not be bound to a specific transport protocol instance, since multiple candidate Protocol Stacks might be raced.</t>
      <t>Once a Preconnection has been used to create an outbound Connection or a Listener, the implementation should ensure that the copy of the properties held by the Connection or Listener cannot be mutated by the application making changes to the original Preconnection object. This may involve the implementation performing a deep-copy, copying the object with all the objects that it references.</t>
      <t>Once the Connection is established, the Transport Services implementation maps actions and events to the details of the chosen Protocol Stack. For example, the same Connection object may ultimately represent a single transport protocol instance (e.g., a TCP connection, a TLS session over TCP, a UDP flow with fully-specified Local and Remote Endpoints, a DTLS session, a SCTP stream, a QUIC stream, or an HTTP/2 stream).
The properties held by a Connection or Listener are independent of other connections that are not part of the same Connection Group.</t>
      <t>Connection establishment is only a local operation for a connectionless protocols, which serves to simplify the local send/receive functions and to filter the traffic for the specified addresses and ports <xref target="RFC8085"/> (for example using UDP or UDP-Lite transport without a connection handshake procedure).</t>
      <t>Once Initiate has been called, the Selection Properties and Endpoint information are immutable (i.e, an application is not able to later modify Selection Properties on the original Preconnection object).
Listener objects are created with a Preconnection, at which point their configuration should be considered immutable by the implementation. The process of listening is described in <xref target="listen"/>.</t>
    </section>
    <section anchor="implementing-pre-establishment">
      <name>Implementing Pre-Establishment</name>
      <t>During pre-establishment the application specifies one or more Endpoints to be used for communication as well as protocol preferences and constraints via Selection Properties and, if desired, also Connection Properties. Generally, Connection Properties should be configured as early as possible, because they can serve as input to decisions that are made by the implementation (e.g., the Capacity Profile can guide usage of a protocol offering scavenger-type congestion control).</t>
      <t>The implementation stores these properties as a part of the Preconnection object for use during connection establishment. For Selection Properties that are not provided by the application, the implementation uses the default values specified in the Transport Services API (<xref target="I-D.ietf-taps-interface"/>).</t>
      <section anchor="configuration-time-errors">
        <name>Configuration-time errors</name>
        <t>The Transport Services system should have a list of supported protocols available, which each have transport features reflecting the capabilities of the protocol. Once an application specifies its Transport Properties, the transport system matches the required and prohibited properties against the transport features of the available protocols (see Section 6.2 of <xref target="I-D.ietf-taps-interface"/> for the definition of property preferences).</t>
        <t>In the following cases, failure should be detected during pre-establishment:</t>
        <ul spacing="normal">
          <li>A request by an application for Protocol Properties that cannot be satisfied by any of the available protocols. For example, if an application requires <tt>perMsgReliability</tt>, but no such feature is available in any protocol on the host running the transport system this should result in an error, e.g., when SCTP is not supported by the operating system.</li>
          <li>A request by an application for Protocol Properties that are in conflict with each other, i.e., the required and prohibited properties cannot be satisfied by the same protocol. For example, if an application prohibits <tt>reliability</tt> but then requires <tt>perMsgReliability</tt>, this mismatch should result in an error.</li>
        </ul>
        <t>To avoid allocating resources that are not finally needed, it is important that configuration-time errors fail as early as possible.</t>
      </section>
      <section anchor="role-of-system-policy">
        <name>Role of system policy</name>
        <t>The properties specified during pre-establishment have a close relationship to system policy. The implementation is responsible for combining and reconciling several different sources of preferences when establishing Connections. These include, but are not limited to:</t>
        <ol spacing="normal" type="1"><li>Application preferences, i.e., preferences specified during the pre-establishment via Selection Properties.</li>
          <li>Dynamic system policy, i.e., policy compiled from internally and externally acquired information about available network interfaces, supported transport protocols, and current/previous Connections. Examples of ways to externally retrieve policy-support information are through OS-specific statistics/measurement tools and tools that reside on middleboxes and routers.</li>
          <li>Default implementation policy, i.e., predefined policy by OS or application.</li>
        </ol>
        <t>In general, any protocol or path used for a connection must conform to all three sources of constraints. A violation that occurs at any of the policy layers should cause a protocol or path to be considered ineligible for use. For an example of application preferences leading to constraints, an application may prohibit the use of metered network interfaces for a given Connection to avoid user cost. Similarly, the system policy at a given time may prohibit the use of such a metered network interface from the application's process. Lastly, the implementation itself may default to disallowing certain network interfaces unless explicitly requested by the application and allowed by the system.</t>
        <t>It is expected that the database of system policies and the method of looking up these policies will vary across various platforms. An implementation should attempt to look up the relevant policies for the system in a dynamic way to make sure it is reflecting an accurate version of the system policy, since the system's policy regarding the application's traffic may change over time due to user or administrative changes.</t>
      </section>
    </section>
    <section anchor="conn-establish">
      <name>Implementing Connection Establishment</name>
      <t>The process of establishing a network connection begins when an application expresses intent to communicate with a Remote Endpoint by calling Initiate,  at which point the Preconnection object contains all constraints or requirements the application has configured for the connection. The establishment process can be considered complete once there is at least one Protocol Stack that has completed any required setup to the point that it can transmit and receive the application's data.</t>
      <t>Connection establishment is divided into two top-level steps: Candidate Gathering, to identify the paths, protocols, and endpoints to use, and Candidate Racing (see Section 4.2.2 of <xref target="I-D.ietf-taps-arch"/>), in which the necessary protocol handshakes are conducted so that the transport system can select which set to use.</t>
      <t>For ease of illustration, this document structures the candidates for racing as a tree.
This is not meant to restrict implementations from structuring racing candidates differently.</t>
      <t>The most simple example of this process might involve identifying the single IP address to which the implementation wishes to connect, using the system's current default path (i.e., using the default interface), and starting a TCP handshake to establish a stream to the specified IP address. However, each step may also differ depending on the requirements of the connection: if the endpoint is defined as a hostname and port, then there may be multiple resolved addresses that are available; there may also be multiple paths available, (in this case using an interface other than the default system interface); and some protocols may not need any transport handshake to be considered "established" (such as UDP), while other connections may utilize layered protocol handshakes, such as TLS over TCP.</t>
      <t>Whenever an implementation has multiple options for connection establishment, it can view the set of all individual connection establishment options as a single, aggregate connection establishment. The aggregate set conceptually includes every valid combination of endpoints, paths, and protocols. As an example, consider an implementation that initiates a TCP connection to a hostname + port endpoint, and has two valid interfaces available (Wi-Fi and LTE). The hostname resolves to a single IPv4 address on the Wi-Fi network, and resolves to the same IPv4 address on the LTE network, as well as a single IPv6 address. The aggregate set of connection establishment options can be viewed as follows:</t>
      <artwork><![CDATA[
Aggregate [Endpoint: www.example.com:80] [Interface: Any]   [Protocol: TCP]
|-> [Endpoint: 192.0.2.1:80]       [Interface: Wi-Fi] [Protocol: TCP]
|-> [Endpoint: 192.0.2.1:80]       [Interface: LTE]   [Protocol: TCP]
|-> [Endpoint: 2001:DB8::1.80]     [Interface: LTE]   [Protocol: TCP]
]]></artwork>
      <t>Any one of these sub-entries on the aggregate connection attempt would satisfy the original application intent. The concern of this section is the algorithm defining which of these options to try, when, and in what order.</t>
      <t>During Candidate Gathering, an implementation prunes and sorts branches according
to the Selection Property preferences (Section 6.2 of <xref target="I-D.ietf-taps-interface"/>.
It first excludes all protocols and paths that match a Prohibit property or do not
match all Require properties. Then it will sort branches according to Preferred
properties, Avoided properties, and possibly other criteria.</t>
      <section anchor="structuring-candidates-as-a-tree">
        <name>Structuring Candidates as a Tree</name>
        <t>As noted above, the considereration of multiple candidates in a gathering and racing process can be conceptually structured as a tree; this terminological convention is used throughout this document.</t>
        <t>Each leaf node of the tree represents a single, coherent connection attempt, with an endpoint, a network path, and a set of protocols that can directly negotiate and send data on the network. Each node in the tree that is not a leaf represents a connection attempt that is either underspecified, or else includes multiple distinct options. For example, when connecting on an IP network, a connection attempt to a hostname and port is underspecified, because the connection attempt requires a resolved IP address as its Remote Endpoint. In this case, the node represented by the connection attempt to the hostname is a parent node, with child nodes for each IP address. Similarly, an implementation that is allowed to connect using multiple interfaces will have a parent node of the tree for the decision between the network paths, with a branch for each interface.</t>
        <t>The example aggregate connection attempt above can be drawn as a tree by grouping the addresses resolved on the same interface into branches:</t>
        <artwork><![CDATA[
                             ||
                +==========================+
                |  www.example.com:80/Any  |
                +==========================+
                  //                    \\
+==========================+       +==========================+
| www.example.com:80/Wi-Fi |       |  www.example.com:80/LTE  |
+==========================+       +==========================+
             ||                      //                    \\
  +====================+  +====================+  +======================+
  | 192.0.2.1:80/Wi-Fi |  |  192.0.2.1:80/LTE  |  |  2001:DB8::1.80/LTE  |
  +====================+  +====================+  +======================+
]]></artwork>
        <t>The rest of this section will use a notation scheme to represent this tree. The parent (or trunk) node of the tree will be represented by a single integer, such as "1". ("1" is used assuming that this is the first connection made by the system; future connections created by the application would allocate numbers in an increasing manner.) Each child of that node will have an integer that identifies it, from 1 to the number of children. That child node will be uniquely identified by concatenating its integer to it's parents identifier with a dot in between, such as "1.1" and "1.2". Each node will be summarized by a tuple of three elements: endpoint, path (labeled here by interface), and protocol. The above example can now be written more succinctly as:</t>
        <artwork><![CDATA[
1 [www.example.com:80, Any, TCP]
  1.1 [www.example.com:80, Wi-Fi, TCP]
    1.1.1 [192.0.2.1:80, Wi-Fi, TCP]
  1.2 [www.example.com:80, LTE, TCP]
    1.2.1 [192.0.2.1:80, LTE, TCP]
    1.2.2 [2001:DB8::1.80, LTE, TCP]
]]></artwork>
        <t>When an implementation is asked to establish a single connection, only one of the leaf nodes in the candidate set is needed to transfer data. Thus, once a single leaf node becomes ready to use, then the connection establishment tree is considered ready. One way to implement this is by having every leaf node update the state of its parent node when it becomes ready, until the trunk node of the tree is ready, which then notifies the application that the connection as a whole is ready to use.</t>
        <t>A connection establishment tree may be degenerate, and only have a single leaf node, such as a connection attempt to an IP address over a single interface with a single protocol.</t>
        <artwork><![CDATA[
1 [192.0.2.1:80, Wi-Fi, TCP]
]]></artwork>
        <t>A parent node may also only have one child (or leaf) node, such as a when a hostname resolves to only a single IP address.</t>
        <artwork><![CDATA[
1 [www.example.com:80, Wi-Fi, TCP]
  1.1 [192.0.2.1:80, Wi-Fi, TCP]
]]></artwork>
        <section anchor="branch-types">
          <name>Branch Types</name>
          <t>There are three types of branching from a parent node into one or more child nodes. Any parent node of the tree must only use one type of branching.</t>
          <section anchor="derived-endpoints">
            <name>Derived Endpoints</name>
            <t>If a connection originally targets a single endpoint, there may be multiple endpoints of different types that can be derived from the original. This creates an ordered list of the derived endpoints according to application preference, system policy and expected performance.</t>
            <t>DNS hostname-to-address resolution is the most common method of endpoint derivation. When trying to connect to a hostname endpoint on a traditional IP network, the implementation should send DNS queries for both A (IPv4) and AAAA (IPv6) records if both are supported on the local interface. The algorithm for ordering and racing these addresses should follow the recommendations in Happy Eyeballs <xref target="RFC8305"/>.</t>
            <artwork><![CDATA[
1 [www.example.com:80, Wi-Fi, TCP]
  1.1 [2001:DB8::1.80, Wi-Fi, TCP]
  1.2 [192.0.2.1:80, Wi-Fi, TCP]
  1.3 [2001:DB8::2.80, Wi-Fi, TCP]
  1.4 [2001:DB8::3.80, Wi-Fi, TCP]
]]></artwork>
            <t>DNS-Based Service Discovery <xref target="RFC6763"/> can also provide an endpoint derivation step. When trying to connect to a named service, the client may discover one or more hostname and port pairs on the local network using multicast DNS <xref target="RFC6762"/>. These hostnames should each be treated as a branch that can be attempted independently from other hostnames. Each of these hostnames might resolve to one or more addresses, which would create multiple layers of branching.</t>
            <artwork><![CDATA[
1 [term-printer._ipp._tcp.meeting.ietf.org, Wi-Fi, TCP]
  1.1 [term-printer.meeting.ietf.org:631, Wi-Fi, TCP]
    1.1.1 [31.133.160.18.631, Wi-Fi, TCP]
]]></artwork>
            <t>Applications can influence which derived endpoints are allowed and preferred via Selection Properties set on the Preconnection. For example, setting a preference for <tt>useTemporaryLocalAddress</tt> would prefer the use of IPv6 over IPv4, and requiring <tt>useTemporaryLocalAddress</tt> would eliminate IPv4 options, since IPv4 does not support temporary addresses.</t>
          </section>
          <section anchor="network-paths">
            <name>Network Paths</name>
            <t>If a client has multiple network paths available to it, e.g., a mobile client with intefaces for both Wi-Fi and Cellular connectivity, it can attempt a connection over any of the paths. This represents a branch point in the connection establishment. Similar to a derived endpoint, the paths should be ranked based on preference, system policy, and performance. Attempts should be started on one path (e.g., a specific interface), and then successively on other paths (or interfaces) after delays based on expected path round-trip-time or other available metrics.</t>
            <artwork><![CDATA[
1 [192.0.2.1:80, Any, TCP]
  1.1 [192.0.2.1:80, Wi-Fi, TCP]
  1.2 [192.0.2.1:80, LTE, TCP]
]]></artwork>
            <t>This same approach applies to any situation in which the client is aware of multiple links or views of the network. A single interface may be shared by
multiple network paths, each with a coherent set of addresses, routes, DNS server, and more. A path may also represent a virtual interface service such as a Virtual Private Network (VPN).</t>
            <t>The list of available paths should be constrained by any requirements the application sets, as well as by the system policy.</t>
          </section>
          <section anchor="protocol-options">
            <name>Protocol Options</name>
            <t>Differences in possible protocol compositions and options can also provide a branching point in connection establishment. This allows clients to be resilient to situations in which a certain protocol is not functioning on a server or network.</t>
            <t>This approach is commonly used for connections with optional proxy server configurations. A single connection might have several options available: an HTTP-based proxy, a SOCKS-based proxy, or no proxy. These options should be ranked and attempted in succession.</t>
            <artwork><![CDATA[
1 [www.example.com:80, Any, HTTP/TCP]
  1.1 [192.0.2.8:80, Any, HTTP/HTTP Proxy/TCP]
  1.2 [192.0.2.7:10234, Any, HTTP/SOCKS/TCP]
  1.3 [www.example.com:80, Any, HTTP/TCP]
    1.3.1 [192.0.2.1:80, Any, HTTP/TCP]
]]></artwork>
            <t>This approach also allows a client to attempt different sets of application and transport protocols that, when available, could provide preferable features. For example, the protocol options could involve QUIC <xref target="I-D.ietf-quic-transport"/> over UDP on one branch, and HTTP/2 <xref target="RFC7540"/> over TLS over TCP on the other:</t>
            <artwork><![CDATA[
1 [www.example.com:443, Any, Any HTTP]
  1.1 [www.example.com:443, Any, QUIC/UDP]
    1.1.1 [192.0.2.1:443, Any, QUIC/UDP]
  1.2 [www.example.com:443, Any, HTTP2/TLS/TCP]
    1.2.1 [192.0.2.1:443, Any, HTTP2/TLS/TCP]
]]></artwork>
            <t>Another example is racing SCTP with TCP:</t>
            <artwork><![CDATA[
1 [www.example.com:80, Any, Any Stream]
  1.1 [www.example.com:80, Any, SCTP]
    1.1.1 [192.0.2.1:80, Any, SCTP]
  1.2 [www.example.com:80, Any, TCP]
    1.2.1 [192.0.2.1:80, Any, TCP]
]]></artwork>
            <t>Implementations that support racing protocols and protocol options should maintain a history of which protocols and protocol options successfully established, on a per-network and per-endpoint basis (see <xref target="performance-caches"/>). This information can influence future racing decisions to prioritize or prune branches.</t>
          </section>
        </section>
        <section anchor="branching-order-of-operations">
          <name>Branching Order-of-Operations</name>
          <t>Branch types ought to occur in a specific order relative to one another to avoid creating leaf nodes with invalid or incompatible settings. In the example above, it would be invalid to branch for derived endpoints (the DNS results for www.example.com) before branching between interface paths, since there are situations when the results will be different across networks due to private names or different supported IP versions. Implementations need to be careful to branch in a consistent order that results in usable leaf nodes whenever there are multiple branch types that could be used from a single node.</t>
          <t>This document recommends the following order of operations for branching:</t>
          <ol spacing="normal" type="1"><li>Network Paths</li>
            <li>Protocol Options</li>
            <li>Derived Endpoints</li>
          </ol>
          <t>where a lower number indicates higher precedence and therefore higher placement in the tree. Branching between paths is the first in the list because results across multiple interfaces are likely not related to one another: endpoint resolution may return different results, especially when using locally resolved host and service names, and which protocols are supported and preferred may differ across interfaces. Thus, if multiple paths are attempted, the overall connection can be seen as a race between the available paths or interfaces.</t>
          <t>Protocol options are next checked in order. Whether or not a set of protocol, or protocol-specific options, can successfully connect is generally not dependent on which specific IP address is used. Furthermore, the Protocol Stacks being attempted may influence or altogether change the endpoints being used. Adding a proxy to a connection's branch will change the endpoint to the proxy's IP address or hostname. Choosing an alternate protocol may also modify the ports that should be selected.</t>
          <t>Branching for derived endpoints is the final step, and may have multiple layers of derivation or resolution, such as DNS service resolution and DNS hostname resolution.</t>
          <t>For example, if the application has indicated both a preference for WiFi over LTE and for a feature only available in SCTP, branches will be first sorted accord to path selection, with WiFi at the top. Then, branches with SCTP will be sorted to the top within their subtree according to the properties influencing protocol selection. However, if the implementation has current cache information that SCTP is not available on the path over WiFi, there is no SCTP node in the WiFi subtree. Here, the path over WiFi will be tried first, and, if connection establishment succeeds, TCP will be used. So the Selection Property of preferring WiFi takes precedence over the Property that led to a preference for SCTP.</t>
          <artwork><![CDATA[
1. [www.example.com:80, Any, Any Stream]
1.1 [192.0.2.1:80, Wi-Fi, Any Stream]
1.1.1 [192.0.2.1:80, Wi-Fi, TCP]
1.2 [192.0.3.1:80, LTE, Any Stream]
1.2.1 [192.0.3.1:80, LTE, SCTP]
1.2.2 [192.0.3.1:80, LTE, TCP]
]]></artwork>
        </section>
        <section anchor="branch-sorting">
          <name>Sorting Branches</name>
          <t>Implementations should sort the branches of the tree of connection options in order of their preference rank, from most preferred to least preferred.
Leaf nodes on branches with higher rankings represent connection attempts that will be raced first.
Implementations should order the branches to reflect the preferences expressed by the application for its new connection, including Selection Properties, which are specified in <xref target="I-D.ietf-taps-interface"/>.</t>
          <t>In addition to the properties provided by the application, an implementation may include additional criteria such as cached performance estimates, see <xref target="performance-caches"/>, or system policy, see <xref target="role-of-system-policy"/>, in the ranking.
Two examples of how Selection and Connection Properties may be used to sort branches are provided below:</t>
          <ul spacing="normal">
            <li>"Interface Instance or Type":
If the application specifies an interface type to be preferred or avoided, implementations should accordingly rank the paths.
If the application specifies an interface type to be required or prohibited, an implementation is expected to exclude the non-conforming paths.</li>
            <li>
              <t>"Capacity Profile":
An implementation can use the Capacity Profile to prefer paths that match an application's expected traffic pattern. This match will use cached performance estimates, see <xref target="performance-caches"/>. Some examples of path preferences based on Capacity Profiles include:  </t>
              <ul spacing="normal">
                <li>Low Latency/Interactive:
Prefer paths with the lowest expected Round Trip Time, based on observed round trip time estimates;</li>
                <li>Low Latency/Non-Interactive:
Prefer paths with a low expected Round Trip Time, but can tolerate delay variation;</li>
                <li>Constant-Rate Streaming:
Prefer paths that are expected to satisfy the requested Stream Send or Stream Receive Bitrate, based on the observed maximum throughput;</li>
                <li>Capacity-Seeking:
Prefer adapting to paths to determine the highest available capacity, based on the observed maximum throughput.</li>
              </ul>
            </li>
          </ul>
          <t>As another example, branch sorting can also be influenced by bounds on the Send or Receive rate (Selection Properties <tt>minSendRate</tt> / <tt>minRecvRate</tt> / <tt>maxSendRate</tt> / <tt>maxRecvRate</tt>): if the application indicates a bound on the expected Send or Receive bitrate, an implementation may prefer a path that can likely provide the desired bandwidth, based on cached maximum throughput, see <xref target="performance-caches"/>. The application may know the Send or Receive Bitrate from metadata in adaptive HTTP streaming, such as MPEG-DASH.</t>
          <t>Implementations process the Properties (Section 6.2 of <xref target="I-D.ietf-taps-interface"/>) in the following order: Prohibit, Require, Prefer, Avoid.
If Selection Properties contain any prohibited properties, the implementation should first purge branches containing nodes with these properties. For required properties, it should only keep branches that satisfy these requirements. Finally, it should order the branches according to the preferred properties, and finally use any avoided properties as a tiebreaker.
When ordering branches, an implementation can give more weight to properties that the application has explicitly set, than to the properties that are default.</t>
          <t>The available protocols and paths on a specific system and in a specific context can change; therefore, the result of sorting and the outcome of racing may vary, even when using the same Selection and Connection Properties. However, an implementation ought to provide a consistent outcome to applications, e.g., by preferring protocols and paths that are already used by existing Connections that specified similar Properties.</t>
        </section>
      </section>
      <section anchor="gathering">
        <name>Candidate Gathering</name>
        <t>The step of gathering candidates involves identifying which paths, protocols, and endpoints may be used for a given Connection. This list is determined by the requirements, prohibitions, and preferences of the application as specified in the Selection Properties.</t>
        <section anchor="gathering-endpoint-candidates">
          <name>Gathering Endpoint Candidates</name>
          <t>Both Local and Remote Endpoint Candidates must be discovered during connection establishment.  To support Interactive Connectivity Establishment (ICE) <xref target="RFC8445"/>, or similar protocols that involve out-of-band indirect signalling to exchange candidates with the Remote Endpoint, it is important to query the set of candidate Local Endpoints, and provide the Protocol Stack with a set of candidate Remote Endpoints, before the Local Endpoint attempts to establish connections.</t>
          <section anchor="local-endpoint-candidates">
            <name>Local Endpoint candidates</name>
            <t>The set of possible Local Endpoints is gathered.  In the simple case, this merely enumerates the local interfaces and protocols, and allocates ephemeral source ports.  For example, a system that has WiFi and Ethernet and supports IPv4 and IPv6 might gather four candidate Local Endpoints (IPv4 on Ethernet, IPv6 on Ethernet, IPv4 on WiFi, and IPv6 on WiFi) that can form the source for a transient.</t>
            <t>If NAT traversal is required, the process of gathering Local Endpoints becomes broadly equivalent to the ICE candidate gathering phase (see Section 5.1.1. of <xref target="RFC8445"/>).  The endpoint determines its server reflexive Local Endpoints (i.e., the translated address of a Local Endpoint, on the other side of a NAT, e.g via a STUN sever <xref target="RFC5389"/>) and relayed Local Endpoints (e.g., via a TURN server <xref target="RFC5766"/> or other relay), for each interface and network protocol.  These are added to the set of candidate Local Endpoints for this connection.</t>
            <t>Gathering Local Endpoints is primarily a local operation, although it might involve exchanges with a STUN server to derive server reflexive Local Endpoints, or with a TURN server or other relay to derive relayed Local Endpoints.  However, it does not involve communication with the Remote Endpoint.</t>
          </section>
          <section anchor="remote-endpoint-candidates">
            <name>Remote Endpoint Candidates</name>
            <t>The Remote Endpoint is typically a name that needs to be resolved into a set of possible addresses that can be used for communication.  Resolving the Remote Endpoint is the process of recursively performing such name lookups, until fully resolved, to return the set of candidates for the Remote Endpoint of this connection.</t>
            <t>How this resolution is done will depend on the type of the Remote Endpoint, and can also be specific to each Local Endpoint.  A common case is when the Remote Endpoint is a DNS name, in which case it is resolved to give a set of IPv4 and IPv6 addresses representing that name.  Some types of Remote Endpoint might require more complex resolution.  Resolving the Remote Endpoint for a peer-to-peer connection might involve communication with a rendezvous server, which in turn contacts the peer to gain consent to communicate and retrieve its set of candidate Local Endpoints, which are returned and form the candidate remote addresses for contacting that peer.</t>
            <t>Resolving the Remote Endpoint is not a local operation.  It will involve a directory service, and can require communication with the Remote Endpoint to rendezvous and exchange peer addresses.  This can expose some or all of the candidate Local Endpoints to the Remote Endpoint.</t>
          </section>
        </section>
      </section>
      <section anchor="candidate-racing">
        <name>Candidate Racing</name>
        <t>The primary goal of the Candidate Racing process is to successfully negotiate a Protocol Stack to an endpoint over an interface to connect a single leaf node of the tree with as little delay and as few unnecessary connections attempts as possible. Optimizing these two factors improves the user experience, while minimizing network load.</t>
        <t>This section covers the dynamic aspect of connection establishment. The tree described above is a useful conceptual and architectural model. However, an implementation is unable to know the full tree before it is formed and many of the possible branches ultimately might not be used.</t>
        <t>There are three different approaches to racing the attempts for different nodes of the connection establishment tree:</t>
        <ol spacing="normal" type="1"><li>Simultaneous</li>
          <li>Staggered</li>
          <li>Failover</li>
        </ol>
        <t>Each approach is appropriate in different use-cases and branch types. However, to avoid consuming unnecessary network resources, implementations should not use simultaneous racing as a default approach.</t>
        <t>The timing algorithms for racing should remain independent across branches of the tree. Any timer or racing logic is isolated to a given parent node, and is not ordered precisely with regards to other children of other nodes.</t>
        <section anchor="simultaneous">
          <name>Simultaneous</name>
          <t>Simultaneous racing is when multiple alternate branches are started without waiting for any one branch to make progress before starting the next alternative. This means the attempts are effectively simultaneous. Simultaneous racing should be avoided by implementations, since it consumes extra network resources and establishes state that might not be used.</t>
        </section>
        <section anchor="staggered">
          <name>Staggered</name>
          <t>Staggered racing can be used whenever a single node of the tree has multiple child nodes. Based on the order determined when building the tree, the first child node will be initiated immediately, followed by the next child node after some delay. Once that second child node is initiated, the third child node (if present) will begin after another delay, and so on until all child nodes have been initiated, or one of the child nodes successfully completes its negotiation.</t>
          <t>Staggered racing attempts can proceed in parallel. Implementations should not terminate an earlier child connection attempt upon starting a secondary child.</t>
          <t>If a child node fails to establish connectivity (as in <xref target="determining-successful-establishment"/>) before the delay time has expired for the next child, the next child should be started immediately.</t>
          <t>Staggered racing between IP addresses for a generic Connection should follow the Happy Eyeballs algorithm described in <xref target="RFC8305"/>. <xref target="RFC8421"/> provides guidance for racing when performing Interactive Connectivity Establishment (ICE).</t>
          <t>Generally, the delay before starting a given child node ought to be based on the length of time the previously started child node is expected to take before it succeeds or makes progress in connection establishment. Algorithms like Happy Eyeballs choose a delay based on how long the transport connection handshake is expected to take. When performing staggered races in multiple branch types (such as racing between network interfaces, and then racing between IP addresses), a longer delay may be chosen for some branch types. For example, when racing between network interfaces, the delay should also take into account the amount of time it takes to prepare the network interface (such as radio association) and name resolution over that interface, in addition to the delay that would be added for a single transport connection handshake.</t>
          <t>Since the staggered delay can be chosen based on dynamic information, such as predicted round-trip time, implementations should define upper and lower bounds for delay times. These bounds are implementation-specific, and may differ based on which branch type is being used.</t>
        </section>
        <section anchor="failover">
          <name>Failover</name>
          <t>If an implementation or application has a strong preference for one branch over another, the branching node may choose to wait until one child has failed before starting the next. Failure of a leaf node is determined by its protocol negotiation failing or timing out; failure of a parent branching node is determined by all of its children failing.</t>
          <t>An example in which failover is recommended is a race between a Protocol Stack that uses a proxy and a Protocol Stack that bypasses the proxy. Failover is useful in case the proxy is down or misconfigured, but any more aggressive type of racing may end up unnecessarily avoiding a proxy that was preferred by policy.</t>
        </section>
      </section>
      <section anchor="completing-establishment">
        <name>Completing Establishment</name>
        <t>The process of connection establishment completes when one leaf node of the tree has successfully completed negotiation with the Remote Endpoint, or else all nodes of the tree have failed to connect. The first leaf node to complete its connection is then used by the application to send and receive data.</t>
        <t>Successes and failures of a given attempt should be reported up to parent nodes (towards the trunk of the tree). For example, in the following case, if 1.1.1 fails to connect, it reports the failure to 1.1. Since 1.1 has no other child nodes, it also has failed and reports that failure to 1. Because 1.2 has not yet failed, 1 is not considered to have failed. Since 1.2 has not yet started, it is started and the process continues. Similarly, if 1.1.1 successfully connects, then it marks 1.1 as connected, which propagates to the trunk node 1. At this point, the connection as a whole is considered to be successfully connected and ready to process application data.</t>
        <artwork><![CDATA[
1 [www.example.com:80, Any, TCP]
  1.1 [www.example.com:80, Wi-Fi, TCP]
    1.1.1 [192.0.2.1:80, Wi-Fi, TCP]
  1.2 [www.example.com:80, LTE, TCP]
...
]]></artwork>
        <t>If a leaf node has successfully completed its connection, all other attempts should be made ineligible for use by the application for the original request.
New connection attempts that involve transmitting data on the network ought not to be started after another leaf node has already successfully completed, because the connection as a whole has now been established.
An implementation could choose to let certain handshakes and negotiations complete to gather metrics that influence future connections.
Keeping additional connections is generally not recommended, because those attempts were slower to connect and may exhibit less desirable properties.</t>
        <section anchor="determining-successful-establishment">
          <name>Determining Successful Establishment</name>
          <t>Implementations may select the criteria by which a leaf node is considered to be successfully connected differently on a per-protocol basis. If the only protocol being used is a transport protocol with a clear handshake, like TCP, then the obvious choice is to declare that node "connected" when the last packet of the three-way handshake has been received. If the only protocol being used is an connectionless protocol, like UDP, the implementation may consider the node fully "connected" the moment it determines a route is present, before sending any packets on the network, see further <xref target="connectionless-racing"/>.</t>
          <t>For Protocol Stacks with multiple handshakes, the decision becomes more nuanced. If the Protocol Stack involves both TLS and TCP, an implementation could determine that a leaf node is connected after the TCP handshake is complete, or it can wait for the TLS handshake to complete as well. The benefit of declaring completion when the TCP handshake finishes, and thus stopping the race for other branches of the tree, is reduced burden on the network and Remote Endpoints from further connection attempts that are likely to be abandoned. On the other hand, by waiting until the TLS handshake is complete, an implementation avoids the scenario in which a TCP handshake completes quickly, but TLS negotiation is either very slow or fails altogether in particular network conditions or to a particular endpoint. To avoid the issue of TLS possibly failing, the implementation should not generate a Ready event for the Connection until TLS is established.</t>
          <t>If all of the leaf nodes fail to connect during racing, i.e. none of the configurations that satisfy all requirements given in the Transport Properties actually work over the available paths, then the transport system should notify the application with an InitiateError event. An InitiateError event should also be generated in case the transport system finds no usable candidates to race.</t>
        </section>
      </section>
      <section anchor="establish-mux">
        <name>Establishing multiplexed connections</name>
        <t>Multiplexing several Connections over a single underlying transport connection requires that the Connections to be multiplexed belong to the same Connection Group (as is indicated by the application using the Clone call). When the underlying transport connection supports multi-streaming, the Transport Services System can map each Connection in the Connection Group to a different stream.
Thus, when the Connections that are offered to an application by the Transport Services API are multiplexed,
the Transport Services implementation can establish a new Connection by simply beginning to use
a new stream of an already established transport Connection and there is no need for a connection establishment
procedure. This, then, also means that there may not
be any "establishment" message (like a TCP SYN), but the application can simply start sending
or receiving. Therefore, when the Initiate action of a Transport Services API is called without Messages being
handed over, it cannot be guaranteed that the Remote Endpoint will have any way to know about this, and hence
a passive endpoint's ConnectionReceived event might not be called until data is received.
Instead, calling the ConnectionReceived event could be delayed until the first Message arrives.</t>
      </section>
      <section anchor="connectionless-racing">
        <name>Handling connectionless protocols</name>
        <t>While protocols that use an explicit handshake to validate a Connection to a peer can be used for racing multiple establishment attempts in parallel, connectionless protocols such as raw UDP do not offer a way to validate the presence of a peer or the usability of a Connection without application feedback. An implementation should consider such a Protocol Stack to be established as soon as the Transport Services system has selected a path on which to send data.</t>
        <t>However, this can cause a problem if a specific peer is not reachable over the network using the connectionless protocol, or data cannot be exchanged with the peer for any other reason. To mitigate this, an application can use a Message Framer <xref target="message-framers"/> on top of a connectionless protocol to only mark a specific connection attempt as ready when some data has been received, or after some application-level handshake has been performed.</t>
      </section>
      <section anchor="listen">
        <name>Implementing listeners</name>
        <t>When an implementation is asked to Listen, it registers with the system to wait for incoming traffic to the Local Endpoint. If no Local Endpoint is specified, the implementation should use an ephemeral port.</t>
        <t>If the Selection Properties do not require a single network interface or path, but allow the use of multiple paths, the Listener object should register for incoming traffic on all of the network interfaces or paths that conform to the Properties. The set of available paths can change over time, so the implementation should monitor network path changes, and change the registration of the Listener across all usable paths as appropriate. When using multiple paths, the Listener is generally expected to use the same port for listening on each.</t>
        <t>If the Selection Properties allow multiple protocols to be used for listening, and the implementation supports it, the Listener object should support receiving inbound connections for each eligible protocol on each eligible path.</t>
        <section anchor="implementing-listeners-for-connected-protocols">
          <name>Implementing listeners for Connected Protocols</name>
          <t>Connected protocols such as TCP and TLS-over-TCP have a strong mapping between the Local and Remote Endpoints (four-tuple) and their protocol connection state. These map into Connection objects. Whenever a new inbound handshake is being started, the Listener should generate a new Connection object and pass it to the application.</t>
        </section>
        <section anchor="implementing-listeners-for-connectionless-protocols">
          <name>Implementing listeners for Connectionless Protocols</name>
          <t>Connectionless protocols such as UDP and UDP-lite generally do not provide the same mechanisms that connected protocols do to offer Connection objects.  Implementations should wait for incoming packets for connectionless protocols on a listening port and should perform four-tuple matching of packets to existing Connection objects if possible. If a matching Connection object does not exist, an incoming packet from a connectionless protocol should cause a new Connection object to be created.</t>
        </section>
        <section anchor="implementing-listeners-for-multiplexed-protocols">
          <name>Implementing listeners for Multiplexed Protocols</name>
          <t>Protocols that provide multiplexing of streams into a single four-tuple can listen both for entirely new connections (a new HTTP/2 stream on a new TCP connection, for example) and for new sub-connections (a new HTTP/2 stream on an existing connection). If the abstraction of Connection presented to the application is mapped to the multiplexed stream, then the Listener should deliver new Connection objects in the same way for either case. The implementation should allow the application to introspect the Connection Group marked on the Connections to determine the grouping of the multiplexing.</t>
        </section>
      </section>
    </section>
    <section anchor="implementing-sending-and-receiving-data">
      <name>Implementing Sending and Receiving Data</name>
      <t>The most basic mapping for sending a Message is an abstraction of datagrams, in which the transport protocol naturally deals in discrete packets. Each Message here corresponds to a single datagram. Generally, these will be short enough that sending and receiving will always use a complete Message.</t>
      <t>For protocols that expose byte-streams, the only delineation provided by the protocol is the end of the stream in a given direction. Each Message in this case corresponds to the entire stream of bytes in a direction. These Messages may be quite long, in which case they can be sent in multiple parts.</t>
      <t>Protocols that provide the framing (such as length-value protocols, or protocols that use delimiters) may support Message sizes that do not fit within a single datagram. Each Message for framing protocols corresponds to a single frame, which may be sent either as a complete Message in the underlying protocol, or in multiple parts.</t>
      <section anchor="sending-messages">
        <name>Sending Messages</name>
        <t>The effect of the application sending a Message is determined by the top-level protocol in the established Protocol Stack. That is, if the top-level protocol provides an abstraction of framed messages over a connection, the receiving application will be able to obtain multiple Messages on that connection, even if the framing protocol is built on a byte-stream protocol like TCP.</t>
        <section anchor="msg-properties">
          <name>Message Properties</name>
          <ul spacing="normal">
            <li>
              <tt>msgLifetime</tt>: this should be implemented by removing the Message from the queue of pending Messages after the Lifetime has expired. A queue of pending Messages within the transport system implementation that have yet to be handed to the Protocol Stack can always support this property, but once a Message has been sent into the send buffer of a protocol, only certain protocols may support removing a message. For example, an implementation cannot remove bytes from a TCP send buffer, while it can remove data from a SCTP send buffer using the partial reliability extension <xref target="RFC8303"/>. When there is no standing queue of Messages within the system, and the Protocol Stack does not support the removal of a Message from the stack's send buffer, this property may be ignored.</li>
            <li>
              <tt>msgPriority</tt>: this represents the ability to prioritize a Message over other Messages. This can be implemented by the system re-ordering Messages that have yet to be handed to the Protocol Stack, or by giving relative priority hints to protocols that support priorities per Message. For example, an implementation of HTTP/2 could choose to send Messages of different Priority on streams of different priority.</li>
            <li>
              <tt>msgOrdered</tt>: when this is false, this disables the requirement of in-order-delivery for protocols that support configurable ordering. When the Protocol Stack does not support configurable ordering, this property may be ignored.</li>
            <li>
              <tt>safelyReplayable</tt>: when this is true, this means that the Message can be used by a transport mechanism that might transfer it multiple times -- e.g., as a result of racing multiple transports or as part of TCP Fast Open. Also, protocols that do not protect against duplicated messages, such as UDP (when used directly, without a protocol layered atop), can only be used with Messages that are Safely Replayable. When a transport system is permitted to replay messages, replay protection could be provided by the application.</li>
            <li>
              <tt>final</tt>: when this is true, this means that the sender will not send any further messages. The Connection need not be closed (in case the Protocol Stack supports half-close operation, like TCP). Any messages sent after a Final message will result in a SendError.</li>
            <li>
              <tt>msgChecksumLen</tt>: when this is set to any value other than <tt>Full Coverage</tt>, it sets the minimum protection in protocols that allow limiting the checksum length (e.g. UDP-Lite). If the Protocol Stack does not support checksum length limitation, this property may be ignored.</li>
            <li>
              <tt>msgReliable</tt>: When true, the property specifies that the Message must be reliably transmitted. When false, and if unreliable transmission is supported by the underlying protocol, then the Message should be unreliably transmitted. If the underlying
protocol does not support unreliable transmission, the Message should be reliably transmitted.</li>
            <li>
              <tt>msgCapacityProfile</tt>: When true, this expresses a wish to override the
Generic Connection Property <tt>Capacity Profile</tt> for this Message. Depending on the
value, this can, for example, be implemented by changing the DSCP value of the
associated packet (note that the guidelines in Section 6 of <xref target="RFC7657"/> apply; e.g.,
the DSCP value should not be changed for different packets within a reliable
transport protocol session or DCCP connection).</li>
            <li>
              <tt>noFragmentation</tt>: Setting this avoids network-layer fragmentation. Messages exceeding the transport's current estimate of its maximum packet size (the <tt>singularTransmissionMsgMaxLen</tt> Connection Property) can result in transport segmentation when permitted, or generate an error. When used with transports running over IP version 4 the Don't Fragment bit will be set to avoid on-path IP fragmentation (<xref target="RFC8304"/>).</li>
            <li>
              <tt>noSegmentation</tt>: When set, this property limits the message size to the transport's current estimate of its maximum packet size (the <tt>singularTransmissionMsgMaxLen</tt> Connection Property). Messages larger than this size generate an error. Setting this avoids transport-layer segmentation and network-layer fragmentation. When used with transports running over IP version 4 the Don't Fragment bit will be set to avoid on-path IP fragmentation (<xref target="RFC8304"/>).</li>
          </ul>
        </section>
        <section anchor="send-completion">
          <name>Send Completion</name>
          <t>The application should be notified whenever a Message or partial Message has been consumed by the Protocol Stack, or has failed to send. The time at which a Message is considered to have been consumed by the Protocol Stack may vary depending on the protocol. For example, for a basic datagram protocol like UDP, this may correspond to the time when the packet is sent into the interface driver. For a protocol that buffers data in queues, like TCP, this may correspond to when the data has entered the send buffer. The time at which a message failed to send is when Transport Services implementation (including the Protocol Stack) has not successfully sent the entire Message content or partial Message content on any open candidate connection; this can depend on protocol-specific timeouts.</t>
        </section>
        <section anchor="batching-sends">
          <name>Batching Sends</name>
          <t>Since sending a Message may involve a context switch between the application and the Transport Services system, sending patterns that involve multiple small Messages can incur high overhead if each needs to be enqueued separately. To avoid this, the application can indicate a batch of Send actions through the API. When this is used, the implementation can defer the processing of Messages until the batch is complete.</t>
        </section>
      </section>
      <section anchor="receiving-messages">
        <name>Receiving Messages</name>
        <t>Similar to sending, receiving a Message is determined by the top-level protocol in the established Protocol Stack. The main difference with receiving is that the size and boundaries of the Message are not known beforehand. The application can communicate in its Receive action the parameters for the Message, which can help the Transport Services implementation know how much data to deliver and when. For example, if the application only wants to receive a complete Message, the implementation should wait until an entire Message (datagram, stream, or frame) is read before delivering any Message content to the application. This requires the implementation to understand where messages end, either via a supplied  or because the top-level protocol in the established Protocol Stack preserves message boundaries. If the top-level protocol only supports a byte-stream and no framers were supported, the application can control the flow of received data by specifying the minimum number of bytes of Message content it wants to receive at one time.</t>
        <t>If a Connection finishes before a requested Receive action can be satisfied, the Transport Services API should deliver any partial Message content outstanding, or if none is available, an indication that there will be no more received Messages.</t>
      </section>
      <section anchor="fastopen">
        <name>Handling of data for fast-open protocols</name>
        <t>Several protocols allow sending higher-level protocol or application data during their protocol establishment, such as TCP Fast Open <xref target="RFC7413"/> and TLS 1.3 <xref target="RFC8446"/>. This approach is referred to as sending Zero-RTT (0-RTT) data. This is a desirable feature, but poses challenges to an implementation that uses racing during connection establishment.</t>
        <t>The amount of data that can be sent as 0-RTT data varies by protocol and can be queried by the application using the <tt>zeroRttMsgMaxLen</tt> Connection Property. An implementation can set this property according to the protocols that it will race based on the given Selection Properties when the application requests to establish a connection.</t>
        <t>If the application has 0-RTT data to send during handshake(s), it needs to provide this data before the handshakes have begun. When racing, this means that the data should be provided before the process of connection establishment has begun. If the application wants to send 0-RTT data, it must indicate this to the implementation by setting the <tt>Safely Replayable</tt> send parameter to true when sending the data. In general, 0-RTT data may be replayed (for example, if a TCP SYN contains data, and the SYN is retransmitted, the data will be retransmitted as well but may be considered as a new connection instead of a retransmission). Also, when racing connections, different leaf nodes have the opportunity to send the same data independently. If data is truly safely replayable, this should be permissible.</t>
        <t>Once the application has provided its 0-RTT data, a Transport Services implementation should keep a copy of this data and provide it to each new leaf node that is started and for which a protocol instance supporting 0-RTT is being used.</t>
        <t>It is also possible for Protocol Stacks within a particular leaf node to use 0-RTT handshakes without any safely replayable application data if a protocol in the stack has idempotent handshake data to send. For example, TCP Fast Open could use a Client Hello from TLS as its 0-RTT data, shortening the cumulative handshake time.</t>
        <t>0-RTT handshakes often rely on previous state, such as TCP Fast Open cookies, previously established TLS tickets, or out-of-band distributed pre-shared keys (PSKs). Implementations should be aware of security concerns around using these tokens across multiple addresses or paths when racing. In the case of TLS, any given ticket or PSK should only be used on one leaf node, since servers will likely reject duplicate tickets in order to prevent replays (see section-8.1 <xref target="RFC8446"/>). If implementations have multiple tickets available from a previous connection, each leaf node attempt can use a different ticket. In effect, each leaf node will send the same early application data, yet encoded (encrypted) differently on the wire.</t>
      </section>
    </section>
    <section anchor="message-framers">
      <name>Implementing Message Framers</name>
      <t>Message Framers are functions that define
simple transformations between application Message data and raw transport
protocol data. A Framer can encapsulate or encode outbound Messages,
decapsulate or decode inbound data into Messages, and implement parts of
protocols that do not directly map to application Messages (such as
protocol handshakes or preludes before Message exchange).</t>
      <t>While many protocols can be represented as Message Framers, for the
purposes of the Transport Services API, these are ways for applications
or application frameworks to define their own Message parsing to be
included within a Connection's Protocol Stack. As an example, TLS
is exposed as a protocol that is natively supported by the Transport Services
API, even though it could also serve the purpose of framing data over TCP.</t>
      <t>Most Message Framers fall into one of two categories:</t>
      <ul spacing="normal">
        <li>Header-prefixed record formats, such as a basic Type-Length-Value (TLV) structure</li>
        <li>Delimiter-separated formats, such as HTTP/1.1.</li>
      </ul>
      <t>Common Message Framers can be provided by a Transport Services implementation,
but an implementation ought to allow custom Message Framers to be defined by
the application or some other piece of software. This section describes one
possible API for defining Message Framers as an example.</t>
      <section anchor="defining-message-framers">
        <name>Defining Message Framers</name>
        <t>A Message Framer is primarily defined by the code that handles events
for a framer implementation, specifically how it handles inbound and outbound data
parsing. The function that implements custom framing logic will be referred to
as the "framer implementation", which may be provided by a Transport Services
implementation or the application itself. The Message Framer refers to the object
or function within the main Connection implementation that delivers events
to the custom framer implementation whenever data is ready to be parsed or framed.</t>
        <t>The Transport Services implementation needs to ensure that all of the
events and actions taken on a Message Framer are synchronized to ensure
consistent behavior. For example, some of the actions defined below (such as
PrependFramer and StartPassthrough) modify how data flows in a protocol
stack, and require synchronization with sending and parsing data in the
Message Framer.</t>
        <t>When a Connection establishment attempt begins, an event can be delivered to
notify the framer implementation that a new Connection is being created.
Similarly, a stop event can be delivered when a Connection is being torn down.
The framer implementation can use the Connection object to look up specific
properties of the Connection or the network being used that may influence how
to frame Messages.</t>
        <artwork><![CDATA[
MessageFramer -> Start<Connection>
MessageFramer -> Stop<Connection>
]]></artwork>
        <t>When a Message Framer generates a <tt>Start</tt> event, the framer implementation
has the opportunity to start writing some data prior to the Connection delivering
its <tt>Ready</tt> event. This allows the implementation to communicate control data to the
Remote Endpoint that can be used to parse Messages.</t>
        <artwork><![CDATA[
MessageFramer.MakeConnectionReady(Connection)
]]></artwork>
        <t>Similarly, when a Message Framer generates a <tt>Stop</tt> event, the framer implementation has the opportunity to write some final data or clear up its local state before the <tt>Closed</tt> event is delivered to the Application. The framer implementation can indicate that it has finished with this.</t>
        <artwork><![CDATA[
MessageFramer.MakeConnectionClosed(Connection)
]]></artwork>
        <t>At any time if the implementation encounters a fatal error, it can also cause the Connection
to fail and provide an error.</t>
        <artwork><![CDATA[
MessageFramer.FailConnection(Connection, Error)
]]></artwork>
        <t>Should the framer implementation deem the candidate selected during racing unsuitable, it can signal this to the Transport Services API by failing the Connection prior to marking it as ready.
If there are no other candidates available, the Connection will fail. Otherwise, the Connection will select a different candidate and the Message Framer will generate a new <tt>Start</tt> event.</t>
        <t>Before an implementation marks a Message Framer as ready, it can also dynamically
add a protocol or framer above it in the stack. This allows protocols that need to add TLS conditionally,
like STARTTLS <xref target="RFC3207"/>, to modify the Protocol Stack based on a handshake result.</t>
        <artwork><![CDATA[
otherFramer := NewMessageFramer()
MessageFramer.PrependFramer(Connection, otherFramer)
]]></artwork>
        <t>A Message Framer might also choose to go into a passthrough mode once an initial exchange or handshake has been completed, such as the STARTTLS case mentioned above.
This can also be useful for proxy protocols like SOCKS <xref target="RFC1928"/> or HTTP CONNECT <xref target="RFC7230"/>. In such cases, a Message Framer implementation can intercept
sending and receiving of messages at first, but then indicate that no more processing is needed.</t>
        <artwork><![CDATA[
MessageFramer.StartPassthrough()
]]></artwork>
      </section>
      <section anchor="send-framing">
        <name>Sender-side Message Framing</name>
        <t>Message Framers generate an event whenever a Connection sends a new Message.</t>
        <artwork><![CDATA[
MessageFramer -> NewSentMessage<Connection, MessageData, MessageContext, IsEndOfMessage>
]]></artwork>
        <t>Upon receiving this event, a framer implementation is responsible for
performing any necessary transformations and sending the resulting data back to the Message Framer, which will in turn send it to the next protocol.
To improve performance, implementations should ensure that there is a way to pass the original data
through without copying.</t>
        <artwork><![CDATA[
MessageFramer.Send(Connection, Data)
]]></artwork>
        <t>To provide an example, a simple protocol that adds a length as a header would receive
the <tt>NewSentMessage</tt> event, create a data representation of the length of the Message
data, and then send a block of data that is the concatenation of the length header and the original
Message data.</t>
      </section>
      <section anchor="receive-framing">
        <name>Receiver-side Message Framing</name>
        <t>In order to parse a received flow of data into Messages, the Message Framer
notifies the framer implementation whenever new data is available to parse.</t>
        <artwork><![CDATA[
MessageFramer -> HandleReceivedData<Connection>
]]></artwork>
        <t>Upon receiving this event, the framer implementation can inspect the inbound data. The
data is parsed from a particular cursor representing the unprocessed data. The
application requests a specific amount of data it needs to have available in order to parse.
If the data is not available, the parse fails.</t>
        <artwork><![CDATA[
MessageFramer.Parse(Connection, MinimumIncompleteLength, MaximumLength) -> (Data, MessageContext, IsEndOfMessage)
]]></artwork>
        <t>The framer implementation can directly advance the receive cursor once it has
parsed data to effectively discard data (for example, discard a header
once the content has been parsed).</t>
        <t>To deliver a Message to the application, the framer implementation can either directly
deliver data that it has allocated, or deliver a range of data directly from the underlying
transport and simultaneously advance the receive cursor.</t>
        <artwork><![CDATA[
MessageFramer.AdvanceReceiveCursor(Connection, Length)
MessageFramer.DeliverAndAdvanceReceiveCursor(Connection, MessageContext, Length, IsEndOfMessage)
MessageFramer.Deliver(Connection, MessageContext, Data, IsEndOfMessage)
]]></artwork>
        <t>Note that <tt>MessageFramer.DeliverAndAdvanceReceiveCursor</tt> allows the framer implementation
to earmark bytes as part of a Message even before they are received by the transport. This allows the delivery
of very large Messages without requiring the implementation to directly inspect all of the bytes.</t>
        <t>To provide an example, a simple protocol that parses a length as a header value would
receive the <tt>HandleReceivedData</tt> event, and call <tt>Parse</tt> with a minimum and maximum
set to the length of the header field. Once the parse succeeded, it would call
<tt>AdvanceReceiveCursor</tt> with the length of the header field, and then call
<tt>DeliverAndAdvanceReceiveCursor</tt> with the length of the body that was parsed from
the header, marking the new Message as complete.</t>
      </section>
    </section>
    <section anchor="implementing-connection-management">
      <name>Implementing Connection Management</name>
      <t>Once a Connection is established, the Transport Services API allows applications to interact with the Connection by modifying or inspecting
Connection Properties. A Connection can also generate events in the form of Soft Errors.</t>
      <t>The set of Connection Properties that are supported for setting and getting on a Connection are described in <xref target="I-D.ietf-taps-interface"/>. For
any properties that are generic, and thus could apply to all protocols being used by a Connection, the Transport Services implementation should store the properties
in storage common to all protocols, and notify all protocol instances in the Protocol Stack whenever the properties have been modified by the application.
For protocol-specfic properties, such as the User Timeout that applies to TCP, the Transport Services implementation only needs to update the relevant protocol instance.</t>
      <t>If an error is encountered in setting a property (for example, if the application tries to set a TCP-specific property on a Connection that is
not using TCP), the action should fail gracefully. The application may be informed of the error, but the Connection itself should not be terminated.</t>
      <t>The Transport Services API should allow protocol instances in the Protocol Stack to pass up arbitrary generic or protocol-specific
errors that can be delivered to the application as Soft Errors. These allow the application to be informed of ICMP errors, and other similar events.</t>
      <section anchor="pooled-connections">
        <name>Pooled Connection</name>
        <t>For applications that do not need in-order delivery of Messages, the Transport Services implementation may distribute Messages of a single Connection across several underlying transport connections or multiple streams of multi-streaming connections between endpoints, as long as all of these satisfy the Selection Properties.
The Transport Services implementation will then hide this connection management and only expose a single Connection object, which we here call a "Pooled Connection". This is in contrast to Connection Groups, which explicitly expose combined treatment of Connections, giving the application control over multiplexing, for example.</t>
        <t>Pooled Connections can be useful when the application using the Transport Services system implements a protocol such as HTTP, which employs request/response pairs and does not require in-order delivery of responses.
This enables implementations of Transport Services systems to realize transparent connection coalescing, connection migration, and to perform per-message endpoint and path selection by choosing among multiple underlying connections.</t>
      </section>
      <section anchor="handling-path-changes">
        <name>Handling Path Changes</name>
        <t>When a path change occurs, e.g., when the IP address of an interface changes or a new interface becomes available, the Transport Services implementation is responsible for notifying the Protocol Instance of the change. The path change may interrupt connectivity on a path for an active connection or provide an opportunity for a transport that supports multipath or migration to adapt to the new paths. Note that, in the model of the Transport Services API, migration is considered a part of multipath connectivity; it is just a limiting policy on multipath usage. If the <tt>multipath</tt> Selection Property is set to <tt>Disabled</tt>, migration is disallowed.</t>
        <t>For protocols that do not support multipath or migration, the Protocol Instances should be informed of the path change, but should not be forcibly disconnected if the previously used path becomes unavailable. There are many common user scenarios that can lead to a path becoming temporarily unavailable, and then recovering before the transport protocol reaches a timeout error. These are particularly common using mobile devices. Examples include: an Ethernet cable becoming unplugged and then plugged back in; a device losing a Wi-Fi signal while a user is in an elevator, and reattaching when the user leaves the elevator; and a user losing the radio signal while riding a train through a tunnel. If the device is able to rejoin a network with the same IP address, a stateful transport connection can generally resume. Thus, while it is useful for a Protocol Instance to be aware of a temporary loss of connectivity, the Transport Services implementation should not aggressively close connections in these scenarios.</t>
        <t>If the Protocol Stack includes a transport protocol that supports multipath connectivity, the Transport Services implementation should also inform the Protocol Instance about potentially new paths that become permissible based on the <tt>multipath</tt> Selection Property and the <tt>multipathPolicy</tt> Connection Property choices made by the application.
A protocol can then establish new subflows over new paths while an active path is still available or, if migration is supported, also after a break has been detected, and should attempt to tear down subflows over paths that are no longer used. The Connection Property <tt>multipathPolicy</tt> of the Transport Services API
allows an application to indicate when and how different paths should be used. However, detailed handling of these policies is still implementation-specific.
For example, if the <tt>multipath</tt> Selection Property is set to <tt>active</tt>, the decision about when to create a new path or to announce a new path or set of paths to the Remote Endpoint, e.g., in the form of additional IP addresses, is implementation-specific.
If the Protocol Stack includes a transport protocol that does not support multipath, but does support migrating between paths, the update to the set of available paths can trigger the connection to be migrated.</t>
        <t>In the case of a Pooled Connection <xref target="pooled-connections"/>, the Transport Services implementation may add connections over new paths to the pool if permissible based on the multipath policy and Selection Properties.
In the case that a previously used path becomes unavailable, the transport system may disconnect all connections that require this path, but should not disconnect the pooled connection object exposed to the application.
The strategy to do so is implementation-specific, but should be consistent with the behavior of multipath transports.</t>
      </section>
    </section>
    <section anchor="implementing-connection-termination">
      <name>Implementing Connection Termination</name>
      <t>With TCP, when an application closes a connection, this
means that it has no more data to send (but expects all data that has been
handed over to be reliably delivered). However, with TCP only, "close" does
not mean that the application will stop receiving data. This is related to TCP's ability to
support half-closed connections.</t>
      <t>SCTP is an example of a protocol that does not support such half-closed connections.
Hence, with SCTP, the meaning of "close" is stricter: an application has no more data
to send (but expects all data that has been handed over to be reliably delivered), and will
also not receive any more data.</t>
      <t>Implementing a protocol independent transport system means that the exposed
semantics must be the strictest subset of the semantics of all supported protocols.
Hence, as is common with all reliable transport protocols, after a Close action, the
application can expect to have its reliability requirements honored regarding the data
provided to the Transport Services API, but it cannot expect to be able to read any
more data after calling Close.</t>
      <t>Abort differs from Close only in that no guarantees are given regarding any data
that the application sent to the Transport Services API before calling Abort.</t>
      <t>As explained in <xref target="establish-mux"/>, when a new stream is multiplexed on an already
existing connection of a Transport Protocol Instance, there is no need for a connection
establishment procedure. Because the Connections that are offered by a Transport Services implementation
can be implemented as streams that are multiplexed on a transport protocol's connection,
it can therefore not be guaranteed an Initiate action from one endpoint
provokes a ConnectionReceived event at its peer.</t>
      <t>For Close (provoking a Finished event) and Abort (provoking a ConnectionError event), the
same logic applies: while it is desirable to be informed when a peer closes or aborts a
Connection, whether this is possible depends on the underlying protocol, and no guarantees
can be given. With SCTP, the transport system can use the stream reset procedure to cause
a Finish event upon a Close action from the peer <xref target="NEAT-flow-mapping"/>.</t>
    </section>
    <section anchor="cached-state">
      <name>Cached State</name>
      <t>Beyond a single Connection's lifetime, it is useful for an implementation to keep state and history. This cached
state can help improve future Connection establishment due to re-using results and credentials, and favoring paths and protocols that performed well in the past.</t>
      <t>Cached state may be associated with different endpoints for the same Connection, depending on the protocol generating the cached content.
For example, session tickets for TLS are associated with specific endpoints, and thus should be cached based on a Connection's
hostname endpoint (if applicable). However, performance characteristics of a path are more likely tied to the IP address
and subnet being used.</t>
      <section anchor="protocol-state-caches">
        <name>Protocol state caches</name>
        <t>Some protocols will have long-term state to be cached in association with endpoints. This state often has some time after which
it is expired, so the implementation should allow each protocol to specify an expiration for cached content.</t>
        <t>Examples of cached protocol state include:</t>
        <ul spacing="normal">
          <li>The DNS protocol can cache resolution answers (A and AAAA queries, for example), associated with a Time To Live (TTL) to
be used for future hostname resolutions without requiring asking the DNS resolver again.</li>
          <li>TLS caches session state and tickets based on a hostname, which can be used for resuming sessions with a server.</li>
          <li>TCP can cache cookies for use in TCP Fast Open.</li>
        </ul>
        <t>Cached protocol state is primarily used during Connection establishment for a single Protocol Stack, but may be used to influence an
implementation's preference between several candidate Protocol Stacks. For example, if two IP address endpoints are otherwise
equally preferred, an implementation may choose to attempt a connection to an address for which it has a TCP Fast Open cookie.</t>
        <t>Applications can use the Transport Services API to request that a Connection Group maintain a separate cache for
protocol state. Connections in the group will not use cached state
from connections outside the group, and connections outside the group will not
use state cached from connections inside the group. This may be necessary, for
example, if application-layer identifiers rotate and clients wish to avoid
linkability via trackable TLS tickets or TFO cookies.</t>
      </section>
      <section anchor="performance-caches">
        <name>Performance caches</name>
        <t>In addition to protocol state, Protocol Instances should provide data into a performance-oriented cache to help guide future protocol and path selection. Some performance information can be gathered generically across several protocols to allow predictive comparisons between protocols on given paths:</t>
        <ul spacing="normal">
          <li>Observed Round Trip Time</li>
          <li>Connection Establishment latency</li>
          <li>Connection Establishment success rate</li>
        </ul>
        <t>These items can be cached on a per-address and per-subnet granularity, and averaged between different values. The information should be cached on a per-network basis, since it is expected that different network attachments will have different performance characteristics. Besides Protocol Instances, other system entities may also provide data into performance-oriented caches. This could for instance be signal strength information reported by radio modems like Wi-Fi and mobile broadband or information about the battery-level of the device. Furthermore, the system may cache the observed maximum throughput on a path as an estimate of the available bandwidth.</t>
        <t>An implementation should use this information, when possible, to influence preference between candidate paths, endpoints, and protocol options. Eligible options that historically had significantly better performance than others should be selected first when gathering candidates (see <xref target="gathering"/>) to ensure better performance for the application.</t>
        <t>The reasonable lifetime for cached performance values will vary depending on the nature of the value. Certain information, like the connection establishment success rate to a Remote Endpoint using a given Protocol Stack, can be stored for a long period of time (hours or longer), since it is expected that the capabilities of the Remote Endpoint are not changing very quickly. On the other hand, the Round Trip Time observed by TCP over a particular network path may vary over a relatively short time interval. For such values, the implementation should remove them from the cache more quickly, or treat older values with less confidence/weight.</t>
        <t><xref target="I-D.ietf-tcpm-2140bis"/> provides guidance about sharing of TCP Control Block information between connections on initialization.</t>
      </section>
    </section>
    <section anchor="specific-transport-protocol-considerations">
      <name>Specific Transport Protocol Considerations</name>
      <t>Each protocol that is supported by a Transport Services implementation should have a well-defined API mapping.
API mappings for a protocol are important for Connections in which a given protocol is the "top" of the Protocol Stack.
For example, the mapping of the <tt>Send</tt> function for TCP applies to Connections in which the application directly sends over TCP.</t>
      <t>Each protocol has a notion of Connectedness. Possible values for Connectedness are:</t>
      <ul spacing="normal">
        <li>Connectionless. Connectionless protocols do not establish explicit state between endpoints, and do not perform a handshake during Connection establishment.</li>
        <li>Connected. Connected protocols establish state between endpoints, and perform a handshake during Connection establishment. The handshake may be 0-RTT to send data or resume a session, but bidirectional traffic is required to confirm connectedness.</li>
        <li>Multiplexing Connected. Multiplexing Connected protocols share properties with Connected protocols, but also explictly support opening multiple application-level flows. This means that they can support cloning new Connection objects without a new explicit handshake.</li>
      </ul>
      <t>Protocols also have a notion of Data Unit. Possible values for Data Unit are:</t>
      <ul spacing="normal">
        <li>Byte-stream. Byte-stream protocols do not define any Message boundaries of their own apart from the end of a stream in each direction.</li>
        <li>Datagram. Datagram protocols define Message boundaries at the same level of transmission, such that only complete (not partial) Messages are supported.</li>
        <li>Message. Message protocols support Message boundaries that can be sent and received either as complete or partial Messages. Maximum Message lengths can be defined, and Messages can be partially reliable.</li>
      </ul>
      <t>Below, terms in capitals with a dot (e.g., "CONNECT.SCTP") refer to the primitives with the same name in section 4 of <xref target="RFC8303"/>. For further implementation details, the description of these primitives in <xref target="RFC8303"/> points to section 3 of <xref target="RFC8303"/> and section 3 of <xref target="RFC8304"/>, which refers back to the relevant specifications for each protocol. This back-tracking method applies to all elements of <xref target="RFC8923"/> (see appendix D of <xref target="I-D.ietf-taps-interface"/>): they are listed in appendix A of <xref target="RFC8923"/> with an implementation hint in the same style, pointing back to section 4 of <xref target="RFC8303"/>.</t>
      <t>This document defines the API mappings for protocols defined in <xref target="RFC8923"/>. Other protocol mappings can be provided as separate documents, following the mapping template <xref target="appendix-mapping-template"/>.</t>
      <section anchor="tcp">
        <name>TCP</name>
        <t>Connectedness: Connected</t>
        <t>Data Unit: Byte-stream</t>
        <t>API mappings for TCP are as follows:</t>
        <dl>
          <dt>Connection Object:</dt>
          <dd>
            <t>TCP connections between two hosts map directly to Connection objects.</t>
          </dd>
          <dt>Initiate:</dt>
          <dd>
            <t>CONNECT.TCP. Calling <tt>Initiate</tt> on a TCP Connection causes it to reserve a local port, and send a SYN to the Remote Endpoint.</t>
          </dd>
          <dt>InitiateWithSend:</dt>
          <dd>
            <t>CONNECT.TCP with parameter <tt>user message</tt>. Early safely replayable data is sent on a TCP Connection in the SYN, as TCP Fast Open data.</t>
          </dd>
          <dt>Ready:</dt>
          <dd>
            <t>A TCP Connection is ready once the three-way handshake is complete.</t>
          </dd>
          <dt>InitiateError:</dt>
          <dd>
            <t>Failure of CONNECT.TCP. TCP can throw various errors during connection setup. Specifically, it is important to handle a RST being sent by the peer during the handshake.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>Once established, TCP throws errors whenever the connection is disconnected, such as due to receiving a RST from the peer.</t>
          </dd>
          <dt>Listen:</dt>
          <dd>
            <t>LISTEN.TCP. Calling <tt>Listen</tt> for TCP binds a local port and prepares it to receive inbound SYN packets from peers.</t>
          </dd>
          <dt>ConnectionReceived:</dt>
          <dd>
            <t>TCP Listeners will deliver new connections once they have replied to an inbound SYN with a SYN-ACK.</t>
          </dd>
          <dt>Clone:</dt>
          <dd>
            <t>Calling <tt>Clone</tt> on a TCP Connection creates a new Connection with equivalent parameters. These Connections, and Connections generated via later calls to <tt>Clone</tt> on an Establied Connection, form a Connection Group. To realize entanglement for these Connections, with the exception of <tt>connPriority</tt>, changing a Connection Property on one of them must affect the Connection Properties of the others too. No guarantees of honoring the Connection Property <tt>connPriority</tt> are given, and thus it is safe for an implementation of a transport system to ignore this property. When it is reasonable to assume that Connections traverse the same path (e.g., when they share the same encapsulation), support for it can also experimentally be implemented using a congestion control coupling mechanism (see for example <xref target="TCP-COUPLING"/> or <xref target="RFC3124"/>).</t>
          </dd>
          <dt>Send:</dt>
          <dd>
            <t>SEND.TCP. TCP does not on its own preserve Message boundaries. Calling <tt>Send</tt> on a TCP connection lays out the bytes on the TCP send stream without any other delineation. Any Message marked as Final will cause TCP to send a FIN once the Message has been completely written, by calling CLOSE.TCP immediately upon successful termination of SEND.TCP. Note that transmitting a Message marked as Final should not cause the <tt>Closed</tt> event to be delivered to the application, as it will still be possible to receive data until the peer closes or aborts the TCP connection.</t>
          </dd>
          <dt>Receive:</dt>
          <dd>
            <t>With RECEIVE.TCP, TCP delivers a stream of bytes without any Message delineation. All data delivered in the <tt>Received</tt> or <tt>ReceivedPartial</tt> event will be part of a single stream-wide Message that is marked Final (unless a Message Framer is used). EndOfMessage will be delivered when the TCP Connection has received a FIN (CLOSE-EVENT.TCP) from the peer. Note that reception of a FIN should not cause the <tt>Closed</tt> event to be delivered to the application, as it will still be possible for the application to send data.</t>
          </dd>
          <dt>Close:</dt>
          <dd>
            <t>Calling <tt>Close</tt> on a TCP Connection indicates that the Connection should be gracefully closed (CLOSE.TCP) by sending a FIN to the peer. It will then still be possible to receive data until the peer closes or aborts the TCP connection. The <tt>Closed</tt> event will be issued upon reception of a FIN.</t>
          </dd>
          <dt>Abort:</dt>
          <dd>
            <t>Calling <tt>Abort</tt> on a TCP Connection indicates that the Connection should be immediately closed by sending a RST to the peer (ABORT.TCP).</t>
          </dd>
          <dt>CloseGroup:</dt>
          <dd>
            <t>Calling <tt>CloseGroup</tt> on a TCP Connection (CLOSE.TCP) is identical to calling <tt>Close</tt> on this Connection and on all Connections in the same ConnectionGroup.</t>
          </dd>
          <dt>AbortGroup:</dt>
          <dd>
            <t>Calling <tt>AbortGroup</tt> on a TCP Connection (ABORT.TCP) is identical to calling <tt>Abort</tt> on this Connection and on all Connections in the same ConnectionGroup.</t>
          </dd>
        </dl>
      </section>
      <section anchor="mptcp">
        <name>MPTCP</name>
        <t>Connectedness: Connected</t>
        <t>Data Unit: Byte-stream</t>
        <t>the Transport Services API mappings for MPTCP are identical to TCP. MPTCP adds support for multipath properties,
such as <tt>multipath</tt> and <tt>multipathPolicy</tt>.</t>
      </section>
      <section anchor="udp">
        <name>UDP</name>
        <t>Connectedness: Connectionless</t>
        <t>Data Unit: Datagram</t>
        <t>API mappings for UDP are as follows:</t>
        <dl>
          <dt>Connection Object:</dt>
          <dd>
            <t>UDP Connections represent a pair of specific IP addresses and ports on two hosts.</t>
          </dd>
          <dt>Initiate:</dt>
          <dd>
            <t>CONNECT.UDP. Calling <tt>Initiate</tt> on a UDP Connection causes it to reserve a local port, but does not generate any traffic.</t>
          </dd>
          <dt>InitiateWithSend:</dt>
          <dd>
            <t>Early data on a UDP Connection does not have any special meaning. The data is sent whenever the Connection is Ready.</t>
          </dd>
          <dt>Ready:</dt>
          <dd>
            <t>A UDP Connection is ready once the system has reserved a local port and has a path to send to the Remote Endpoint.</t>
          </dd>
          <dt>InitiateError:</dt>
          <dd>
            <t>UDP Connections can only generate errors on initiation due to port conflicts on the local system.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>Once in use, UDP throws "soft errors" (ERROR.UDP(-Lite)) upon receiving ICMP notifications indicating failures in the network. Additional information can also be provided when this is available to the system (e.g. ICMP error code and quoted packet header).</t>
          </dd>
          <dt>Listen:</dt>
          <dd>
            <t>LISTEN.UDP. Calling <tt>Listen</tt> for UDP binds a local port and prepares it to receive inbound UDP datagrams from peers.</t>
          </dd>
          <dt>ConnectionReceived:</dt>
          <dd>
            <t>UDP Listeners will deliver new connections once they have received traffic from a new Remote Endpoint.</t>
          </dd>
          <dt>Clone:</dt>
          <dd>
            <t>Calling <tt>Clone</tt> on a UDP Connection creates a new Connection with equivalent parameters. The two Connections are otherwise independent.</t>
          </dd>
          <dt>Send:</dt>
          <dd>
            <t>SEND.UDP(-Lite). Calling <tt>Send</tt> on a UDP connection sends the data as the payload of a complete UDP datagram. Marking Messages as Final does not change anything in the datagram's contents. Upon sending a UDP datagram, some relevant fields and flags in the IP header can be controlled: DSCP (SET_DSCP.UDP(-Lite)), DF in IPv4 (SET_DF.UDP(-Lite)) and ECN flag (SET_ECN.UDP(-Lite)).</t>
          </dd>
          <dt>Receive:</dt>
          <dd>
            <t>RECEIVE.UDP(-Lite). UDP only delivers complete Messages to <tt>Received</tt>, each of which represents a single datagram received in a UDP packet. Upon receiving a UDP datagram, the ECN flag from the IP header can be obtained (GET_ECN.UDP(-Lite)).</t>
          </dd>
          <dt>Close:</dt>
          <dd>
            <t>Calling <tt>Close</tt> on a UDP Connection (ABORT.UDP(-Lite)) releases the local port reservation.</t>
          </dd>
          <dt>Abort:</dt>
          <dd>
            <t>Calling <tt>Abort</tt> on a UDP Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt>.</t>
          </dd>
          <dt>CloseGroup:</dt>
          <dd>
            <t>Calling <tt>CloseGroup</tt> on a UDP Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt> on this Connection and on all Connections in the same ConnectionGroup.</t>
          </dd>
          <dt>AbortGroup:</dt>
          <dd>
            <t>Calling <tt>AbortGroup</tt> on a UDP Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt> on this Connection and on all Connections in the same ConnectionGroup.
## UDP-Lite</t>
          </dd>
        </dl>
        <t>Connectedness: Connectionless</t>
        <t>Data Unit: Datagram</t>
        <t>The Transport Services API mappings for UDP-Lite are identical to UDP. Properties that require checksum coverage are not supported
by UDP-Lite, such as <tt>msgChecksumLen</tt>, <tt>fullChecksumSend</tt>,
<tt>recvChecksumLen</tt>, and <tt>fullChecksumRecv</tt>.</t>
      </section>
      <section anchor="udp-multicast-receive">
        <name>UDP Multicast Receive</name>
        <t>Connectedness: Connectionless</t>
        <t>Data Unit: Datagram</t>
        <t>API mappings for Receiving Multicast UDP are as follows:</t>
        <dl>
          <dt>Connection Object:</dt>
          <dd>
            <t>Established UDP Multicast Receive connections represent a pair of specific IP addresses and ports.  The <tt>direction</tt> Selection Property must be set to <tt>unidirectional receive</tt>, and the Local Endpoint must be configured with a group IP address and a port.</t>
          </dd>
          <dt>Initiate:</dt>
          <dd>
            <t>Calling <tt>Initiate</tt> on a UDP Multicast Receive Connection causes an immediate InitiateError.  This is an unsupported operation.</t>
          </dd>
          <dt>InitiateWithSend:</dt>
          <dd>
            <t>Calling <tt>InitiateWithSend</tt> on a UDP Multicast Receive Connection causes an immediate InitiateError.  This is an unsupported operation.</t>
          </dd>
          <dt>Ready:</dt>
          <dd>
            <t>A UDP Multicast Receive Connection is ready once the system has received traffic for the appropriate group and port.</t>
          </dd>
          <dt>InitiateError:</dt>
          <dd>
            <t>UDP Multicast Receive Connections generate an InitiateError if Initiate is called.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>Once in use, UDP throws "soft errors" (ERROR.UDP(-Lite)) upon receiving ICMP notifications indicating failures in the network.</t>
          </dd>
          <dt>Listen:</dt>
          <dd>
            <t>LISTEN.UDP. Calling <tt>Listen</tt> for UDP Multicast Receive binds a local port, prepares it to receive inbound UDP datagrams from peers, and issues a multicast host join.  If a Remote Endpoint with an address is supplied, the join is Source-specific Multicast, and the path selection is based on the route to the Remote Endpoint.  If a Remote Endpoint is not supplied, the join is Any-source Multicast, and the path selection is based on the outbound route to the group supplied in the Local Endpoint.</t>
          </dd>
        </dl>
        <t>There are cases where it is required to open multiple connections for the same address(es).
For example, one Connection might be opened for a multicast group to for a multicast control bus,
and another application later opens a separate Connection to the same group to send signals to and/or receive signals from the common bus.
In such cases, the Transport Services system needs to explicitly enable re-use of the same set of addresses (equivalent to setting SO_REUSEADDR
in the socket API).</t>
        <dl>
          <dt>ConnectionReceived:</dt>
          <dd>
            <t>UDP Multicast Receive Listeners will deliver new connections once they have received traffic from a new Remote Endpoint.</t>
          </dd>
          <dt>Clone:</dt>
          <dd>
            <t>Calling <tt>Clone</tt> on a UDP Multicast Receive Connection creates a new Connection with equivalent parameters. The two Connections are otherwise independent.</t>
          </dd>
          <dt>Send:</dt>
          <dd>
            <t>SEND.UDP(-Lite). Calling <tt>Send</tt> on a UDP Multicast Receive connection causes an immediate SendError.  This is an unsupported operation.</t>
          </dd>
          <dt>Receive:</dt>
          <dd>
            <t>RECEIVE.UDP(-Lite). The Receive operation in a UDP Multicast Receive connection only delivers complete Messages to <tt>Received</tt>, each of which represents a single datagram received in a UDP packet. Upon receiving a UDP datagram, the ECN flag from the IP header can be obtained (GET_ECN.UDP(-Lite)).</t>
          </dd>
          <dt>Close:</dt>
          <dd>
            <t>Calling <tt>Close</tt> on a UDP Multicast Receive Connection (ABORT.UDP(-Lite)) releases the local port reservation and leaves the group.</t>
          </dd>
          <dt>Abort:</dt>
          <dd>
            <t>Calling <tt>Abort</tt> on a UDP Multicast Receive Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt>.</t>
          </dd>
          <dt>CloseGroup:</dt>
          <dd>
            <t>Calling <tt>CloseGroup</tt> on a UDP Multicast Receive Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt> on this Connection and on all Connections in the same ConnectionGroup.</t>
          </dd>
          <dt>AbortGroup:</dt>
          <dd>
            <t>Calling <tt>AbortGroup</tt> on a UDP Multicast Receive Connection (ABORT.UDP(-Lite)) is identical to calling <tt>Close</tt>
on this Connection and on all Connections in the same ConnectionGroup.</t>
          </dd>
        </dl>
      </section>
      <section anchor="sctp">
        <name>SCTP</name>
        <t>Connectedness: Connected</t>
        <t>Data Unit: Message</t>
        <t>API mappings for SCTP are as follows:</t>
        <dl>
          <dt>Connection Object:</dt>
          <dd>
            <t>Connection objects can be mapped to an SCTP association or a stream in an SCTP association. Mapping Connection objects to SCTP streams is called "stream mapping" and has additional requirements as follows. The following explanation assumes a client-server communication model.</t>
          </dd>
        </dl>
        <t>Stream mapping requires an association to already be in place between the client and the server, and it requires the server to understand that a new incoming stream should be represented as a new Connection Object by the Transport Services system. A new SCTP stream is created by sending an SCTP message with a new stream id. Thus, to implement stream mapping, the Transport Services API must provide a newly created Connection Object to the application upon the reception of such a message. The necessary semantics to implement a Transport Services system Close and Abort primitives are provided by the stream reconfiguration (reset) procedure described in <xref target="RFC6525"/>. This also allows to re-use a stream id after resetting ("closing") the stream. To implement this functionality, SCTP stream reconfiguration <xref target="RFC6525"/> must be supported by both the client and the server side.</t>
        <t>To avoid head-of-line blocking, stream mapping should only be implemented when both sides support message interleaving <xref target="RFC8260"/>. This allows a sender to schedule transmissions between multiple streams without risking that transmission of a large message on one stream might block transmissions on other streams for a long time.</t>
        <t>To avoid conflicts between stream ids, the following procedure is recommended: the first Connection, for which the SCTP association has been created, must always use stream id zero. All additional Connections are assigned to unused stream ids in growing order. To avoid a conflict when both endpoints map new Connections simultaneously, the peer which initiated association must use even stream ids whereas the remote side must map its Connections to odd stream ids. Both sides maintain a status map of the assigned stream ids. Generally, new streams should consume the lowest available (even or odd, depending on the side) stream id; this rule is relevant when lower ids become available because Connection objects associated with the streams are closed.</t>
        <t>SCTP stream mapping as described here has been implemented in a research prototype; a desription of this implementation is given in <xref target="NEAT-flow-mapping"/>.</t>
        <dl>
          <dt>Initiate:</dt>
          <dd>
            <t>If this is the only Connection object that is assigned to the SCTP Association or stream mapping is
not used, CONNECT.SCTP is called. Else, unless the Selection Property <tt>activeReadBeforeSend</tt>
is Preferred or Required, a new stream is used: if there are enough streams
available, <tt>Initiate</tt> is a local operation that assigns a new stream id to the Connection object.
The number of streams is negotiated as a parameter of the prior CONNECT.SCTP call, and it represents a
trade-off between local resource usage and the number of Connection objects that can be mapped
without requiring a reconfiguration signal. When running out of streams, ADD_STREAM.SCTP must be called.</t>
          </dd>
          <dt>InitiateWithSend:</dt>
          <dd>
            <t>If this is the only Connection object that is assigned to the SCTP association or stream mapping is not used, CONNECT.SCTP is called with the "user message" parameter. Else, a new stream
is used (see <tt>Initiate</tt> for how to handle running out of streams), and this just sends the first message
on a new stream.</t>
          </dd>
          <dt>Ready:</dt>
          <dd>
            <t><tt>Initiate</tt> or <tt>InitiateWithSend</tt> returns without an error, i.e. SCTP's four-way handshake has completed. If an association with the peer already exists, stream mapping is used and enough streams are available, a Connection Object instantly becomes Ready after calling <tt>Initiate</tt> or <tt>InitiateWithSend</tt>.</t>
          </dd>
          <dt>InitiateError:</dt>
          <dd>
            <t>Failure of CONNECT.SCTP.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>TIMEOUT.SCTP or ABORT-EVENT.SCTP.</t>
          </dd>
          <dt>Listen:</dt>
          <dd>
            <t>LISTEN.SCTP. If an association with the peer already exists and stream mapping is used, <tt>Listen</tt> just expects to receive a new message with a new stream id (chosen in accordance with the stream id assignment procedure described above).</t>
          </dd>
          <dt>ConnectionReceived:</dt>
          <dd>
            <t>LISTEN.SCTP returns without an error (a result of successful CONNECT.SCTP from the peer), or, in case of stream mapping, the first message has arrived on a new stream (in this case, <tt>Receive</tt> is also invoked).</t>
          </dd>
          <dt>Clone:</dt>
          <dd>
            <t>Calling <tt>Clone</tt> on an SCTP association creates a new Connection object and assigns it a new stream id in accordance with the stream id assignment procedure described above. If there are not enough streams available, ADD_STREAM.SCTP must be called.</t>
          </dd>
          <dt>Priority (Connection):</dt>
          <dd>
            <t>When this value is changed, or a Message with Message Property <tt>msgPriority</tt> is sent, and there are multiple
Connection objects assigned to the same SCTP association,
CONFIGURE_STREAM_SCHEDULER.SCTP is called to adjust the priorities of streams in the SCTP association.</t>
          </dd>
          <dt>Send:</dt>
          <dd>
            <t>SEND.SCTP. Message Properties such as <tt>msgLifetime</tt> and <tt>msgOrdered</tt> map to parameters of this primitive.</t>
          </dd>
          <dt>Receive:</dt>
          <dd>
            <t>RECEIVE.SCTP. The "partial flag" of RECEIVE.SCTP invokes a <tt>ReceivedPartial</tt> event.</t>
          </dd>
        </dl>
        <t>Close:
If this is the only Connection object that is assigned to the SCTP association, CLOSE.SCTP is called, and the <tt>Closed</tt> event will be delivered to the application upon the ensuing CLOSE-EVENT.SCTP. Else, the Connection object is one out of several Connection objects that are assigned to the same SCTP assocation, and RESET_STREAM.SCTP must be called, which informs the peer that the stream will no longer be used for mapping and can be used by future <tt>Initiate</tt>, <tt>InitiateWithSend</tt> or <tt>Listen</tt> calls. At the peer, the event RESET_STREAM-EVENT.SCTP will fire, which the peer must answer by issuing RESET_STREAM.SCTP too. The resulting local RESET_STREAM-EVENT.SCTP informs the Transport Services system that the stream id can now be re-used by the next <tt>Initiate</tt>, <tt>InitiateWithSend</tt> or <tt>Listen</tt> calls, and invokes a <tt>Closed</tt> event towards the application.</t>
        <t>Abort:
If this is the only Connection object that is assigned to the SCTP association, ABORT.SCTP is called. Else, the Connection object is one out of several Connection objects that are assigned to the same SCTP assocation, and shutdown proceeds as described under <tt>Close</tt>.</t>
        <t>CloseGroup:
Calling <tt>CloseGroup</tt> calls CLOSE.SCTP, closing all Connections in the SCTP association.</t>
        <t>AbortGroup:
Calling <tt>AbortGroup</tt> calls ABORT.SCTP, immediately closing all Connections in the SCTP association.</t>
      </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-considerations">
      <name>Security Considerations</name>
      <t><xref target="I-D.ietf-taps-arch"/> outlines general security consideration and requirements for any system that implements the Transport Services archtecture. <xref target="I-D.ietf-taps-interface"/> provides further discussion on security and privacy implications of the Transport Services API. This document provides additional guidance on implementation specifics for the Transport Services API and as such the security considerations in both of these documents apply. The next two subsections discuss further considerations that are specific to mechanisms specified in this document.</t>
      <section anchor="considerations-for-candidate-gathering">
        <name>Considerations for Candidate Gathering</name>
        <t>Implementations should avoid downgrade attacks that allow network interference to cause the implementation to select less secure, or entirely insecure, combinations of paths and protocols.</t>
      </section>
      <section anchor="considerations-for-candidate-racing">
        <name>Considerations for Candidate Racing</name>
        <t>See <xref target="fastopen"/> for security considerations around racing with 0-RTT data.</t>
        <t>An attacker that knows a particular device is racing several options during connection establishment may be able to block packets for the first connection attempt, thus inducing the device to fall back to a secondary attempt. This is a problem if the secondary attempts have worse security properties that enable further attacks. Implementations should ensure that all options have equivalent security properties to avoid incentivizing attacks.</t>
        <t>Since results from the network can determine how a connection attempt tree is built, such as when DNS returns a list of resolved endpoints, it is possible for the network to cause an implementation to consume significant on-device resources. Implementations should limit the maximum amount of state allowed for any given node, including the number of child nodes, especially when the state is based on results from the network.</t>
      </section>
    </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 agreement No. 644334 (NEAT) 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>This work has been supported by the Research Council of Norway under its "Toppforsk"
programme through the "OCARINA" project.</t>
      <t>Thanks to Colin Perkins, Tom Jones, Karl-Johan Grinnemo, Gorry Fairhurst, for their contributions to the design of this specification.
Thanks also 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-arch">
          <front>
            <title>An Architecture for Transport Services</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Godred Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date day="27" month="June" year="2022"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication, a
   Transport Services system.  The Transport Services Application
   Programming Interface (API) is based on an asynchronous, event-driven
   interaction pattern.  This API uses messages for representing data
   transfer to applications, and describes how implementations can use
   multiple IP addresses, multiple protocols, and multiple paths, and
   provide multiple application streams.  This document further defines
   common terminology and concepts to be used in definitions of a
   Transport Service API and a Transport Services implementation.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-13"/>
        </reference>
        <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="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <date day="7" month="March" 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-15"/>
        </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="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="RFC8421">
          <front>
            <title>Guidelines for Multihomed and IPv4/IPv6 Dual-Stack Interactive Connectivity Establishment (ICE)</title>
            <author fullname="P. Martinsen" initials="P." surname="Martinsen">
              <organization/>
            </author>
            <author fullname="T. Reddy" initials="T." surname="Reddy">
              <organization/>
            </author>
            <author fullname="P. Patil" initials="P." surname="Patil">
              <organization/>
            </author>
            <date month="July" year="2018"/>
            <abstract>
              <t>This document provides guidelines on how to make Interactive Connectivity Establishment (ICE) conclude faster in multihomed and IPv4/IPv6 dual-stack scenarios where broken paths exist.  The provided guidelines are backward compatible with the original ICE specification (see RFC 5245).</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="217"/>
          <seriesInfo name="RFC" value="8421"/>
          <seriesInfo name="DOI" value="10.17487/RFC8421"/>
        </reference>
        <reference anchor="RFC8303">
          <front>
            <title>On the Usage of Transport Features Provided by IETF Transport Protocols</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl">
              <organization/>
            </author>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen">
              <organization/>
            </author>
            <author fullname="N. Khademi" initials="N." surname="Khademi">
              <organization/>
            </author>
            <date month="February" year="2018"/>
            <abstract>
              <t>This document describes how the transport protocols Transmission Control Protocol (TCP), MultiPath TCP (MPTCP), Stream Control Transmission Protocol (SCTP), User Datagram Protocol (UDP), and Lightweight User Datagram Protocol (UDP-Lite) expose services to applications and how an application can configure and use the features that make up these services.  It also discusses the service provided by the Low Extra Delay Background Transport (LEDBAT) congestion control mechanism.  The description results in a set of transport abstractions that can be exported in a transport services (TAPS) API.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8303"/>
          <seriesInfo name="DOI" value="10.17487/RFC8303"/>
        </reference>
        <reference anchor="RFC8304">
          <front>
            <title>Transport Features of the User Datagram Protocol (UDP) and Lightweight UDP (UDP-Lite)</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="T. Jones" initials="T." surname="Jones">
              <organization/>
            </author>
            <date month="February" year="2018"/>
            <abstract>
              <t>This is an informational document that describes the transport protocol interface primitives provided by the User Datagram Protocol (UDP) and the Lightweight User Datagram Protocol (UDP-Lite) transport protocols.  It identifies the datagram services exposed to applications and how an application can configure and use the features offered by the Internet datagram transport service.  RFC 8303 documents the usage of transport features provided by IETF transport protocols, describing the way UDP, UDP-Lite, and other transport protocols expose their services to applications and how an application can configure and use the features that make up these services.  This document provides input to and context for that document, as well as offers a road map to documentation that may help users of the UDP and UDP-Lite protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8304"/>
          <seriesInfo name="DOI" value="10.17487/RFC8304"/>
        </reference>
        <reference anchor="RFC7413">
          <front>
            <title>TCP Fast Open</title>
            <author fullname="Y. Cheng" initials="Y." surname="Cheng">
              <organization/>
            </author>
            <author fullname="J. Chu" initials="J." surname="Chu">
              <organization/>
            </author>
            <author fullname="S. Radhakrishnan" initials="S." surname="Radhakrishnan">
              <organization/>
            </author>
            <author fullname="A. Jain" initials="A." surname="Jain">
              <organization/>
            </author>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document describes an experimental TCP mechanism called TCP Fast Open (TFO).  TFO allows data to be carried in the SYN and SYN-ACK packets and consumed by the receiving end during the initial connection handshake, and saves up to one full round-trip time (RTT) compared to the standard TCP, which requires a three-way handshake (3WHS) to complete before data can be exchanged.  However, TFO deviates from the standard TCP semantics, since the data in the SYN could be replayed to an application in some rare circumstances.  Applications should not use TFO unless they can tolerate this issue, as detailed in the Applicability section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7413"/>
          <seriesInfo name="DOI" value="10.17487/RFC7413"/>
        </reference>
        <reference anchor="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="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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.ietf-quic-transport">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="Jana Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Martin Thomson">
              <organization>Mozilla</organization>
            </author>
            <date day="14" month="January" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration.  QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-34"/>
        </reference>
        <reference anchor="I-D.ietf-tcpm-2140bis">
          <front>
            <title>TCP Control Block Interdependence</title>
            <author fullname="Joe Touch">
              <organization>Independent</organization>
            </author>
            <author fullname="Michael Welzl">
              <organization>University of Oslo</organization>
            </author>
            <author fullname="Safiqul Islam">
              <organization>University of Oslo</organization>
            </author>
            <date day="12" month="April" year="2021"/>
            <abstract>
              <t>This memo provides guidance to TCP implementers that is intended to help improve connection convergence to steady-state operation without affecting interoperability.  It updates and replaces RFC 2140's description of sharing TCP state, as typically represented in TCP Control Blocks, among similar concurrent or consecutive connections.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tcpm-2140bis-11"/>
        </reference>
        <reference anchor="NEAT-flow-mapping">
          <front>
            <title>Transparent Flow Mapping for NEAT</title>
            <author>
              <organization/>
            </author>
            <date year="2017"/>
          </front>
          <seriesInfo name="IFIP NETWORKING 2017 Workshop on Future of Internet Transport (FIT 2017)" value=""/>
        </reference>
        <reference anchor="TCP-COUPLING">
          <front>
            <title>ctrlTCP: Reducing Latency through Coupled, Heterogeneous Multi-Flow TCP Congestion Control</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="IEEE INFOCOM Global Internet Symposium (GI) workshop (GI 2018)" value=""/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd">
              <organization/>
            </author>
            <date month="March" year="2017"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="RFC6763">
          <front>
            <title>DNS-Based Service Discovery</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document specifies how DNS resource records are named and structured to facilitate service discovery.  Given a type of service that a client is looking for, and a domain in which the client is looking for that service, this mechanism allows clients to discover a list of named instances of that desired service, using standard DNS queries. This mechanism is referred to as DNS-based Service Discovery, or DNS-SD.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6763"/>
          <seriesInfo name="DOI" value="10.17487/RFC6763"/>
        </reference>
        <reference anchor="RFC6762">
          <front>
            <title>Multicast DNS</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>As networked devices become smaller, more portable, and more ubiquitous, the ability to operate with less configured infrastructure is increasingly important.  In particular, the ability to look up DNS resource record data types (including, but not limited to, host names) in the absence of a conventional managed DNS server is useful.</t>
              <t>Multicast DNS (mDNS) provides the ability to perform DNS-like operations on the local link in the absence of any conventional Unicast DNS server.  In addition, Multicast DNS designates a portion of the DNS namespace to be free for local use, without the need to pay any annual fee, and without the need to set up delegations or otherwise configure a conventional DNS server to answer for those names.</t>
              <t>The primary benefits of Multicast DNS names are that (i) they require little or no administration or configuration to set them up, (ii) they work when no infrastructure is present, and (iii) they work during infrastructure failures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6762"/>
          <seriesInfo name="DOI" value="10.17487/RFC6762"/>
        </reference>
        <reference anchor="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="RFC5389">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="R. Mahy" initials="R." surname="Mahy">
              <organization/>
            </author>
            <author fullname="P. Matthews" initials="P." surname="Matthews">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <date month="October" year="2008"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with Network Address Translator (NAT) traversal.  It can be used by an endpoint to determine the IP address and port allocated to it by a NAT.  It can also be used to check connectivity between two endpoints, and as a keep-alive protocol to maintain NAT bindings.  STUN works with many existing NATs, and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself.  Rather, it is a tool to be used in the context of a NAT traversal solution.  This is an important change from the previous version of this specification (RFC 3489), which presented STUN as a complete solution.</t>
              <t>This document obsoletes RFC 3489.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5389"/>
          <seriesInfo name="DOI" value="10.17487/RFC5389"/>
        </reference>
        <reference anchor="RFC5766">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="R. Mahy" initials="R." surname="Mahy">
              <organization/>
            </author>
            <author fullname="P. Matthews" initials="P." surname="Matthews">
              <organization/>
            </author>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <date month="April" year="2010"/>
            <abstract>
              <t>If a host is located behind a NAT, then in certain situations it can be impossible for that host to communicate directly with other hosts (peers).  In these situations, it is necessary for the host to use the services of an intermediate node that acts as a communication relay.  This specification defines a protocol, called TURN (Traversal Using Relays around NAT), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay.  TURN differs from some other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5766"/>
          <seriesInfo name="DOI" value="10.17487/RFC5766"/>
        </reference>
        <reference anchor="RFC7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author fullname="D. Black" initials="D." role="editor" surname="Black">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>This memo describes the interaction between Differentiated Services (Diffserv) network quality-of-service (QoS) functionality and real- time network communication, including communication based on the Real-time Transport Protocol (RTP).  Diffserv is based on network nodes applying different forwarding treatments to packets whose IP headers are marked with different Diffserv Codepoints (DSCPs). WebRTC applications, as well as some conferencing applications, have begun using the Session Description Protocol (SDP) bundle negotiation mechanism to send multiple traffic streams with different QoS requirements using the same network 5-tuple.  The results of using multiple DSCPs to obtain different QoS treatments within a single network 5-tuple have transport protocol interactions, particularly with congestion control functionality (e.g., reordering).  In addition, DSCP markings may be changed or removed between the traffic source and destination.  This memo covers the implications of these Diffserv aspects for real-time network communication, including WebRTC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7657"/>
          <seriesInfo name="DOI" value="10.17487/RFC7657"/>
        </reference>
        <reference anchor="RFC3207">
          <front>
            <title>SMTP Service Extension for Secure SMTP over Transport Layer Security</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="February" year="2002"/>
            <abstract>
              <t>This document describes an extension to the SMTP (Simple Mail Transfer Protocol) service that allows an SMTP server and client to use TLS (Transport Layer Security) to provide private, authenticated communication over the Internet.  This gives SMTP agents the ability to protect some or all of their communications from eavesdroppers and attackers.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3207"/>
          <seriesInfo name="DOI" value="10.17487/RFC3207"/>
        </reference>
        <reference anchor="RFC1928">
          <front>
            <title>SOCKS Protocol Version 5</title>
            <author fullname="M. Leech" initials="M." surname="Leech">
              <organization/>
            </author>
            <author fullname="M. Ganis" initials="M." surname="Ganis">
              <organization/>
            </author>
            <author fullname="Y. Lee" initials="Y." surname="Lee">
              <organization/>
            </author>
            <author fullname="R. Kuris" initials="R." surname="Kuris">
              <organization/>
            </author>
            <author fullname="D. Koblas" initials="D." surname="Koblas">
              <organization/>
            </author>
            <author fullname="L. Jones" initials="L." surname="Jones">
              <organization/>
            </author>
            <date month="March" year="1996"/>
            <abstract>
              <t>This memo describes a protocol that is an evolution of the previous version of the protocol, version 4 [1]. This new protocol stems from active discussions and prototype implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1928"/>
          <seriesInfo name="DOI" value="10.17487/RFC1928"/>
        </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="RFC3124">
          <front>
            <title>The Congestion Manager</title>
            <author fullname="H. Balakrishnan" initials="H." surname="Balakrishnan">
              <organization/>
            </author>
            <author fullname="S. Seshan" initials="S." surname="Seshan">
              <organization/>
            </author>
            <date month="June" year="2001"/>
            <abstract>
              <t>This document describes the Congestion Manager (CM), an end-system module that enables an ensemble of multiple concurrent streams from a sender destined to the same receiver and sharing the same congestion properties to perform proper congestion avoidance and control, and allows applications to easily adapt to network congestion.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3124"/>
          <seriesInfo name="DOI" value="10.17487/RFC3124"/>
        </reference>
        <reference anchor="RFC6525">
          <front>
            <title>Stream Control Transmission Protocol (SCTP) Stream Reconfiguration</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart">
              <organization/>
            </author>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen">
              <organization/>
            </author>
            <author fullname="P. Lei" initials="P." surname="Lei">
              <organization/>
            </author>
            <date month="February" year="2012"/>
            <abstract>
              <t>Many applications that use the Stream Control Transmission Protocol (SCTP) want the ability to "reset" a stream.  The intention of resetting a stream is to set the numbering sequence of the stream back to 'zero' with a corresponding notification to the application layer that the reset has been performed.  Applications requiring this feature want it so that they can "reuse" streams for different purposes but still utilize the stream sequence number so that the application can track the message flows.  Thus, without this feature, a new use of an old stream would result in message numbers greater than expected, unless there is a protocol mechanism to "reset the streams back to zero".  This document also includes methods for resetting the transmission sequence numbers, adding additional streams, and resetting all stream sequence numbers.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6525"/>
          <seriesInfo name="DOI" value="10.17487/RFC6525"/>
        </reference>
        <reference anchor="RFC8260">
          <front>
            <title>Stream Schedulers and User Message Interleaving for the Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart">
              <organization/>
            </author>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen">
              <organization/>
            </author>
            <author fullname="S. Loreto" initials="S." surname="Loreto">
              <organization/>
            </author>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann">
              <organization/>
            </author>
            <date month="November" year="2017"/>
            <abstract>
              <t>The Stream Control Transmission Protocol (SCTP) is a message-oriented transport protocol supporting arbitrarily large user messages.  This document adds a new chunk to SCTP for carrying payload data.  This allows a sender to interleave different user messages that would otherwise result in head-of-line blocking at the sender.  The interleaving of user messages is required for WebRTC data channels.</t>
              <t>Whenever an SCTP sender is allowed to send user data, it may choose from multiple outgoing SCTP streams.  Multiple ways for performing this selection, called stream schedulers, are defined in this document.  A stream scheduler can choose to either implement, or not implement, user message interleaving.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8260"/>
          <seriesInfo name="DOI" value="10.17487/RFC8260"/>
        </reference>
      </references>
    </references>
    <section anchor="appendix-mapping-template">
      <name>API Mapping Template</name>
      <t>Any protocol mapping for the Transport Services API should follow a common template.</t>
      <t>Connectedness: (Connectionless/Connected/Multiplexing Connected)</t>
      <t>Data Unit: (Byte-stream/Datagram/Message)</t>
      <t>Connection Object:</t>
      <t>Initiate:</t>
      <t>InitiateWithSend:</t>
      <t>Ready:</t>
      <t>InitiateError:</t>
      <t>ConnectionError:</t>
      <t>Listen:</t>
      <t>ConnectionReceived:</t>
      <t>Clone:</t>
      <t>Send:</t>
      <t>Receive:</t>
      <t>Close:</t>
      <t>Abort:</t>
      <t>CloseGroup:</t>
      <t>AbortGroup:</t>
    </section>
    <section anchor="appendix-reasons-errors">
      <name>Reasons for errors</name>
      <t>The Transport Services API <xref target="I-D.ietf-taps-interface"/> allows for the several generic error types to specify a more detailed reason about why an error occurred. This appendix lists some of the possible reasons.</t>
      <ul spacing="normal">
        <li>InvalidConfiguration:
The transport properties and endpoints provided by the application are either contradictory or incomplete. Examples include the lack of a Remote Endpoint on an active open or using a multicast group address while not requesting a unidirectional receive.</li>
        <li>NoCandidates:
The configuration is valid, but none of the available transport protocols can satisfy the transport properties provided by the application.</li>
        <li>ResolutionFailed:
The remote or local specifier provided by the application can not be resolved.</li>
        <li>EstablishmentFailed:
The Transport Services system was unable to establish a transport-layer connection to the Remote Endpoint specified by the application.</li>
        <li>PolicyProhibited:
The system policy prevents the transport system from performing the action requested by the application.</li>
        <li>NotCloneable:
The Protocol Stack is not capable of being cloned.</li>
        <li>MessageTooLarge:
The message size is too big for the transport system to handle.</li>
        <li>ProtocolFailed:
The underlying Protocol Stack failed.</li>
        <li>InvalidMessageProperties:
The Message Properties either contradict the Transport Properties or they can not be satisfied by the transport system.</li>
        <li>DeframingFailed:
The data that was received by the underlying Protocol Stack could not be processed by the Message Framer.</li>
        <li>ConnectionAborted:
The connection was aborted by the peer.</li>
        <li>Timeout:
Delivery of a message was not possible after a timeout.</li>
      </ul>
    </section>
    <section anchor="appendix-implementations">
      <name>Existing Implementations</name>
      <t>This appendix gives an overview of existing implementations, at the time of writing, of transport systems that are (to some degree) in line with this document.</t>
      <ul spacing="normal">
        <li>
          <t>Apple's Network.framework:
          </t>
          <ul spacing="normal">
            <li>Network.framework is a transport-level API built for C, Objective-C, and Swift. It a connect-by-name API that supports transport security protocols. It provides userspace implementations of TCP, UDP, TLS, DTLS, proxy protocols, and allows extension via custom framers.</li>
            <li>Documentation: <eref target="https://developer.apple.com/documentation/network">https://developer.apple.com/documentation/network</eref></li>
          </ul>
        </li>
        <li>
          <t>NEAT and NEATPy:
          </t>
          <ul spacing="normal">
            <li>NEAT is the output of the European H2020 research project "NEAT"; it is a user-space library for protocol-independent communication on top of TCP, UDP and SCTP, with many more features, such as a policy manager.</li>
            <li>Code: <eref target="https://github.com/NEAT-project/neat">https://github.com/NEAT-project/neat</eref></li>
            <li>NEAT project: <eref target="https://www.neat-project.org">https://www.neat-project.org</eref></li>
            <li>NEATPy is a Python shim over NEAT which updates the NEAT API to be in line with version 6 of the Transport Services API draft.</li>
            <li>Code: <eref target="https://github.com/theagilepadawan/NEATPy">https://github.com/theagilepadawan/NEATPy</eref></li>
          </ul>
        </li>
        <li>
          <t>PyTAPS:
          </t>
          <ul spacing="normal">
            <li>A TAPS implementation based on Python asyncio, offering protocol-independent communication to applications on top of TCP, UDP and TLS, with support for multicast.</li>
            <li>Code: <eref target="https://github.com/fg-inet/python-asyncio-taps">https://github.com/fg-inet/python-asyncio-taps</eref></li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+S963YbV5Ym+B9PES3/MFkFQFc7nXR3ddEUJbMsSxyRTs9U
da1kAAiQkQIikBEBUbBSveY15vXmSWbfzz4nAhTtdFfXWpOrKlMEAnFu++z7
/vZkMhl1ZbcqjrKz9WZVrIuqK6vr7KzqimaZz4s26+rsssmrdlM3XXZRNO9L
+HSUz2ZN8f4ouzw+vwg/zbuyrkaLel7la3jlosmX3aQsuuWkyzftpITnJo+f
jhZ5VxyN5vDf13WzO8rKalmPRuWmOcq6Ztt2Tx49+uOjJ6O8KfKjMPjotm7e
XTf1diPD/gx/42Rf4mejd8UOHlgc8dyrops8x+FHo7bLq8Wf81VdwZR2MPdN
eZT9W1fPx1kLr22KZQv/2q3xH/8+GuXb7qZujkZZNoH/z2By7VF2PM2+a7ZV
2zX1mj7lBR5XVZ580dS4mcWi7OqGPqib66Psh7xZwTwW2U9V+b5o2rLb0Zfw
u6LojsLHRdde5zDh7Al9P4cHj7Kvv3qcffONvYS/qbdVh5t3cVssioo+K9Z5
uTrKcpjVdKaz+ud3+XbaFvF6LqfZeb5d7dxaLuv1euc+HV7I8QaOGrZ4Po3m
/6Yq5KvzvHmX/Zzv3PRPtpuiAbKqx9lJviqXdVOVefbHrx49fhYvBXahKxbZ
BdAREF69zI7XRVPOc7+4boMz/OccB5vOadPjdZ1W1zd5s+j80m6Kpmjz+Cta
zmugzVX5IVrL4yePs+PVrCmvb7pkJa/qNnuZdzUQzMkxruDpk1+/ArwP/9wV
MpcpUGq8hvNpdlkWbbFyKzi/KVflZpNdRN/REi6Oz7OL02gFP9RVky8m/7pt
i8lbvCGPH7lFPH727Os/Zud11y7ydTz9l0Wzzqudn+2GR/7njobtz/bHafZz
sfrFT/bHcn6TFyv3OU00kD5uzJt2VUeTPn+TfVd/gKl+8yj7blVWC7jEbtaP
nj7+Ogu/sim/rpvbPJrxGoe/Lf65XJbTbVlPK+AtVQ0L62D8I3rybPJ8GthS
3sxvhj4vlQkeAXMCFjX8ir9uy/mkUyaVvme+WU+ePH72aFa2/NXr0+PLyXJV
307WQMNwOPxxlgkbZnYHrK/qshfwWPYjP5bB+PRjebwFuipanBZwvBdn5/Dd
5c9v3v5w9vpl9uTR4z8Qd2xv6k1WV9mLbbdtCtx2ZY6Opx+8OLuknxzKq5kD
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
OvWQrkknmszMBc2HXmQRjzwoo84cyDlamVj30+zMKZlM3rTJtovB8TQ8+c5L
9FJi3kg3+BqhlPkNZkbjB6yckRbv9Xvn89unqrTmBwtWiyjFdkJOByEmIqEO
N6GI7kPUk1MNouRLT86tUrxwpLAIG1EMOTXe7hROxEr08i+a/LYKVx03m4o2
zR9l9oSdqlwNUnmCNUDeAeWYseKR3fWfv/2t9/0//re9//nH3sN/ywZ0mIco
wbO/881Z9vDh0Iz/x/8Y3fWe+wz1t6E5s5r5tzvXheokrOvvHT85geGT2bv6
PS//x1/5OU/kb5HaFzYB/i/6gldO/xdreLonv+OsvC54SbZ82/UUM7riHBgB
9i/eZyD+dcEOmpBgjbITXTmc98Xc4AAvP2hW7w77jIHePOsxQTMZ8NJdoztC
DdYHjx9MswP4b5PEedtu13yHc5mCKJKsVPlQkktrYtv922zJFYjeitZUuYEo
AWu7EqEG1rVdzzB6xJFsEFnwS2aUObyumR6yMGWuTOvOhTs6rlnpKoX/sr+J
k17G7OV6rPyfByRLCd8J+4tbjZLeGL/t6bYq/7rFpFt7Iy0JdSCsWeQIO0oq
G76GP9FbT+fWht81ypQXNUXthXv7U5nCiaBIhX89eeB1CJ0NHNI6b8pf9IC7
rbnekBAKlkPtkdN02AsG9m2BIV3y58x2Pe9XyGQgi5I4vgoH5PxVfYvjYykC
rJrT/2Dec1QwKPwfc/DH2b/1mdEYjcMxW09wWad7HqIbbY/Rg/iov9zpQ7Bd
w++Cqx696Un/Tf1H4F0xx/AP+av+s0Qt+ikHefuOJX/kOeTb6DNGKY84WI5B
4W1VbQxlBqicoupI6Rq9Kic8uG075niBjRUUaNDG6jVJ5XyxM9+5egj3uwyI
wZStd6rRK6YECiARL9sA4xxAYnAv8W6wfyhMZLuh1RD3wKoCcn93baT13Ipp
FU16DHexK1fC9oAT9hlhaY+aKxlJVxhByoZciUTQeVCxub3B5JUy3izQmI4/
s03iZF0UHKHXqhY6ZNHt0nMJt3+vtl15tZjcjBFjZ21KWIt8brc5vZT7L1Hk
zogOw7y/YR1IscwrUSzhYg57q+GQ3rD3TNLne0GA3nw/zx8+wxv8sr4AC/o7
Vogvd5uCEzrR382pIGie4cdIUayXUl0+So5YJyfN1edBO3sBQ8y7vRo8ZWHQ
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
6yu4ncOr74PVwmYYDTmwYuOFtNCw9jHHFqgntih2NMduMFF4ttMe8Uw4PU/8
Fb/fNAt6T7MVq0ivna6a+sxLGuPYH4i4U9k5j97uZaIxWCWSdkNqZTWqW+NX
dO+d73ActtuaYfrvtbiYrrhiiwXrkyItcWpcVnKFDoc77WXkozjUoIrHHHPp
b2PnX3OFokQ6lBBE0hO0OA5r0r52mmImVqEhqqLyfra0EiLYcpTVfDqNnY7Q
n6M11HYlUXI0eqNwX+lVMZJERdLTzmCJ1rA+Rl2m8GZudob2TtP1XU04q1Zs
lVsP6sPZIxHwC9KEWq1O/ZHWlKJ94KbzjFMorzMGbseqOMMZXu6puiefp6s/
jtCGUBnjIRwHsGhXNXAOfZFYLuNFZBYt567Si2K9qTu+5prS7FlXolPHQnMe
SieykxV2Bcm+BzKvOS5PRf9t72gpEY6TdCmksgWjk2PWrqCLFane4utlRyUt
jF6hYImczr1Pss/r+h21BHPYil6JxWnC9qMbmoFHXXOeBVYilHBrGex3AtPA
C/uu2LXZwfnFD+3hXtRQTAu65XJSxP/cUtyboK8b6jxPaeQmKil0/q7Ab7jC
IUD+Go6mFW+4ez/VFjcUsuMC9THRBks8Xhj+FGYbNWfTUGidoG8p9i6j60tb
cMEMaApObNYwre5baE7M0IRUNchU2XJ7FsEVn3wzfRy6JX1NnVmAu6QwfXH7
dR0kFKJIEoudf5RWhXc8XCOtkwo1WoE58otpCzl3rfdrWnzMIBH8dde7Z2NK
1wBzvEZudgD/aHYboJrDFHEF33ML1ls/NzauHaPsraR4bDRKn0H6Wm4rX8HM
2IYjaXnEgX7FTGwDiJ2bv77UmCaWMZpT2UXdSLAea3Eb1S1X83zT4v0lBy6v
H28QV0modTAeLYroQfiTm6TzcyJ0gHjsFxx51P3h5EOg71Gi8UkigSYDUC1H
Vw8tL8CGhhV5zkL9tLGJrJlpui9aLYgOby5MXUvPRU3JZJXYModYpCdnNVZX
yGizbVjNF0/MsHWn+cN4xJSwtowtnnaUWEBEJRg0kCztpaRogymEnh2dDuxk
Kxr0rBhJ49xFEEZBQf+y7bmfqEeqkwavLkYcD6XUgbztOZsxKyxXbPA0Utxf
+IgWTpmRofPPPKA5EFNixZU3UVM4A2AWWsKcFflj7UqT9cYsc2qUQRWWHA69
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
z7YDsTdkUIKm0ZVBaAajckSOhu0MXZQRrAwGaC3+JISEvlLQ+sibY4cc2oyj
z2GC4W/5ATMLWTj6/GTnSlUvbMe0ZLtjJOWuYA2OKsAY2JXkMkW+RnxBpLnP
Z1rBctiaYDaCUlorHJ/09y7FT0MNHxOyGJlXF92A/OUm3hd192LZPRo/z19f
xD4m+hleo3q15dBx1d6iJnFwzNwa/iMIZ23cdnDco7acEj4Q4PQVapoHl5ev
DlFZ9+1d5YIbSYWRh7Lp8tYyrnDm9DDlaWKXjCmuiepNyE+u9yIwHr0hvjxH
xvXgm1EvdHTUUgElv63VlTEGDA2JcOu2cwKpQz9GLg6kFHf9MD6Snowvwuc2
Hlx6tpf3scIiDDrFfXZwWlpdGWpc8yopZ/8SBy8UNVWdJZouEArBEpymAVTR
29rHGgMTJLWokxK0ERwoeV83Wq8/1EeHYJatXsm6eic+GFQEZbQATqVJvYN4
R6iE+gwNL3D36LIkYih2rS6QNMhPZfvU1Co3dF8hCSpOiQ57GqmNImWoXWTo
VIIzmjuJMyJBHrl+tl2rzfrox5K1edcj9v4Rvt/xSkm5j1398W+F8QlVWX0N
cYFRBBTn+6cTSntJgnhZIiOBndALOSdgrNY6RRAO8gjMhXdqaSEWK/ake0ca
ncOjQt3t8sUbvW8iBLywEQlwVpmH0rd6UmCs/ZFHDRiH6ozcS7MJgqKQrs6n
jLYiai7UHkLZWgQPGacCTLMLiTTYlFlVDVYo6ow5Ke8LTZuiW5Nk8zgdprYU
rWJRahR8DdRYtj5HJ/wCRmLDj1QiEgtvZsTbFtlbKtG4bMoN8XH4yhH9acSK
0DFTzXd3PSLY41lD+iXHLEtKx5ClChlyNL9oJnqraeuw5oYF/zXcUIxwUniI
YoDcxmZhqws6GCU+S2sfv7k9TccGNYyAvEUwbsb7MiHOoWR2FNkg+hMOXq6F
oFXPcHGF/ZoQmpQtdWHsk+NYs9LYOsB7REma5AwmIL0ene6nUmvAxkmGnPfL
oTFEOuWoKRodlA3tt6wpAkARx1gxr2EttZkc66WccA40z5o6XxBOHI0R3sNB
CvKTEsz6TsBrax+DBbnC7ZlQJ2QzybmO5b7dIJCKkKp2spDY7mbbuawQAcdx
zS/Im2GefpzmbbmgVu59uFWhFRYQFLm2xYinQq3DcSxkBwRqEKQSh0jU8FDU
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
4Ou05JEmOlIOw9eTb3cHOtcMlQEA

-->

</rfc>
