<?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-14" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="TAPS Implementation">Implementing Interfaces to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-14"/>
    <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="October" day="20"/>
    <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 (defined in Section 4.2.1 of <xref target="I-D.ietf-taps-arch"/>), to identify the paths, protocols, and endpoints to use (see <xref target="gathering"/>); and Candidate Racing (defined in 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 (see <xref target="racing"/>). Candidate Racing involves attempting multiple options for connection establishment, and choosing the first option to succeed as the Protocol Stack to use for the connection. These attempts are usually staggered, starting each next option after a delay, but they can also be performed in parallel or only after waiting for failures.</t>
      <t>For ease of illustration, this document structures the candidates for racing as a tree (see <xref target="tree-structure"/>).
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 (<xref target="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="tree-structure">
        <name>Structuring Candidates as a Tree</name>
        <t>As noted above, the consideration 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="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. This is signalled to the application using the Ready event in the API (<xref section="7.1" sectionFormat="of" target="I-D.ietf-taps-interface"/>).</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>On a per-protocol basis, implementations may select different criteria by which a leaf node is considered to be successfully connected. 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 the TLS handshake is complete.</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 report an EstablishmentError to the application. An EstablishmentError 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 delivered until data is received.
Instead, delivering 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 (such as UDP). 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 (such as TCP), 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 like HTTP/1.1) 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>
      <t>Messages themselves generally consist of bytes passed in the messageData parameter intended to be processed at an application layer. However, Message objects presented through the API
can carry associated Message Properties passed through the messageContext parameter.
When these are Protocol Specific Properties, they can include metadata that exists separately from a byte
encoding. For example, these Properties can include name-value pairs of information, like HTTP header fields. In such cases, Messages might be "empty",
insofar as they contain zero bytes in the messageData parameter, but can still include data in the messageContext that is interpreted by the Protocol Stack.</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>
          <t>The API allows various properties to be associated with each Message, which should be implemented as discussed below.</t>
          <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 Message Framer 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. 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). When racing connections, different leaf nodes have the opportunity to send the same data independently. If data is truly safely replayable, this is 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 API examples in this section use the notation conventions for the Transport
Services API defined in <xref section="1.1" sectionFormat="of" target="I-D.ietf-taps-interface"/>.</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>
        <t>Once the framer implementation has completed its setup or handshake, it can indicate to
the application that it is ready to handling data with this call.</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 call.</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. The parameters to the event
align with the Send call in the API (<xref section="9.2" sectionFormat="of" target="I-D.ietf-taps-interface"/>).</t>
        <artwork><![CDATA[
MessageFramer -> NewSentMessage<connection, messageData, messageContext, endOfMessage>
]]></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, messageData)
]]></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.
The parameters to the the events and calls for receiving data with a framer
align with the Receive call in the API (<xref section="9.3" sectionFormat="of" target="I-D.ietf-taps-interface"/>).</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) -> (messageData, messageContext, endOfMessage)
]]></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, endOfMessage)
MessageFramer.Deliver(connection, messageContext, messageData, endOfMessage)
]]></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>EstablishmentError:</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>, and actions for managing paths, such as <tt>AddRemote</tt> and <tt>RemoveRemote</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>EstablishmentError:</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>UDP Connections can only generate connection errors in response to <tt>Abort</tt> calls. (Once in use, UDP Connections can also generate <tt>SoftError</tt> Events (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 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. The Connection then issues a <tt>Closed</tt> event.</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>, except that the Connection will send a <tt>ConnectionError</tt> Event rather than a <tt>Closed</tt> Event.</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.</t>
          </dd>
        </dl>
      </section>
      <section anchor="udp-lite">
        <name>UDP-Lite</name>
        <t>Connectedness: Connectionless</t>
        <t>Data Unit: Datagram</t>
        <t>The Transport Services API mappings for UDP-Lite are identical to UDP. In addition,
UDP-Lite supports the <tt>msgChecksumLen</tt> and <tt>recvChecksumLen</tt> Properties
that allow an application to specify the minimum number of bytes in a message that
need to be covered by a checksum.</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 EstablishmentError.  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 EstablishmentError.  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>EstablishmentError:</dt>
          <dd>
            <t>UDP Multicast Receive Connections generate an EstablishmentError indicating that joining a multicast group failed if <tt>Initiate</tt> is called.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>The only ConnectionError generated by a UDP Multicast Receive Connection is in response to an <tt>Abort</tt> call.</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. The Connection then issues a <tt>Closed</tt> Event.</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>, except that the Connection will send a <tt>ConnectionError</tt> Event rather than a <tt>Closed</tt> Event.</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>EstablishmentError:</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>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>
        <t>In addition to the API mappings described above, when there are multiple Connection objects assigned to the same SCTP association, SCTP can support Connection properties such as <tt>connPriority</tt>and <tt>connScheduler</tt> where CONFIGURE_STREAM_SCHEDULER.SCTP can be called to adjust the priorities of streams 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" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell" initials="B." surname="Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom" initials="A." surname="Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Gorry Fairhurst" initials="G." surname="Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins" initials="C." surname="Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date day="27" month="September" 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-14"/>
        </reference>
        <reference anchor="I-D.ietf-taps-interface">
          <front>
            <title>An Abstract Application Layer Interface to Transport Services</title>
            <author fullname="Brian Trammell" initials="B." surname="Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <author fullname="Reese Enghardt" initials="R." surname="Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Gorry Fairhurst" initials="G." surname="Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Mirja Kühlewind" initials="M." surname="Kühlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Colin Perkins" initials="C." surname="Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <author fullname="Philipp S. Tiesel" initials="P. S." surname="Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <date day="27" month="September" year="2022"/>
            <abstract>
              <t>   This document describes an abstract application programming
   interface, API, to the transport layer that enables the selection of
   transport protocols and network paths dynamically at runtime.  This
   API enables faster deployment of new protocols and protocol features
   without requiring changes to the applications.  The specified API
   follows the Transport Services architecture by providing
   asynchronous, atomic transmission of messages.  It is intended to
   replace the BSD sockets API as the common interface to the transport
   layer, in an environment where endpoints could select from multiple
   interfaces and potential transport protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-17"/>
        </reference>
        <reference anchor="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" initials="J." surname="Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="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="Dr. Joseph D. Touch" initials="J. D." surname="Touch">
              <organization>Independent</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <author fullname="Safiqul Islam" initials="S." surname="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>EstablishmentError:</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:
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

-->

</rfc>
