<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.34 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-impl-16" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.2 -->
  <front>
    <title abbrev="TAPS Implementation">Implementing Interfaces to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-16"/>
    <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="R." surname="Enghardt" fullname="Reese 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="2023" month="June" day="05"/>
    <area>Transport</area>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 100?>

<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 implementing such a system.</t>
    </abstract>
  </front>
  <middle>
    <?line 106?>

<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 implementing a system that provides a Transport Services API. This guide offers suggestions to developers, but it is not prescriptive: implementations are free to take any desired form as long as the API specification in <xref target="I-D.ietf-taps-interface"/> is honored. 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 Transport Services 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 necessarily be immediately bound to a 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 Connection 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 <tt>Initiate</tt> has been called, the Selection Properties and Endpoint information of the created Connection are immutable (i.e, an application is not able to later modify the properties of a Connection by manipulating 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>The pre-establishment phase allows applications to specify properties for the Connections that they are about to make, or to query the API about potential Connections they could make.</t>
      <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. Section 4 of <xref target="I-D.ietf-taps-interface"/> states that Connection Properties should preferably be configured during pre-establishment, 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 Services 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 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 Services system this should result in an error.</li>
          <li>A request by an application for properties that are in conflict with each other, such as specifying required and prohibited properties that cannot be satisfied by any 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. If such a violation prevents a Connection from being established, this should be communicated to the application, e.g. via the <tt>EstablishmentError</tt> event. 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.</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 <tt>Initiate</tt>, at which point the Preconnection object contains all constraints or requirements the application has configured. 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 Services 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 path |
              +=============================+
                 //                     \\
+==========================+       +==========================+
| 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 root node (or parent 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 its parent's 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. In Protocol Stacks, the layers are separated by '/' and ordered with the protocol closest to the application first. The above example can now be written more succinctly as:</t>
        <artwork><![CDATA[
1 [www.example.com:80, any path, 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 root 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 consist of only a single 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 root 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 all applicable DNS queries. Commonly, this will include both A (IPv4) and AAAA (IPv6) records if both address families are supported on the local interface. This can also include SRV records <xref target="RFC2782"/>, SVCB and HTTPS records <xref target="I-D.ietf-dnsop-svcb-https"/>, or other future record types. 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 interfaces 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 the expected path round-trip-time or other available metrics.</t>
            <artwork><![CDATA[
1 [192.0.2.1:80, any path, TCP]
  1.1 [192.0.2.1:80, Wi-Fi, TCP]
  1.2 [192.0.2.1:80, LTE, TCP]
]]></artwork>
            <t>The 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. As above, these options should be ranked based on preference, system policy, and performance and attempted in succession.</t>
            <artwork><![CDATA[
1 [www.example.com:80, any path, HTTP/TCP]
  1.1 [192.0.2.8:80, any path, HTTP/HTTP Proxy/TCP]
  1.2 [192.0.2.7:10234, any path, HTTP/SOCKS/TCP]
  1.3 [www.example.com:80, any path, HTTP/TCP]
    1.3.1 [192.0.2.1:80, any path, 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="RFC9000"/> 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 path, HTTP]
  1.1 [www.example.com:443, any path, HTTP3/QUIC/UDP]
    1.1.1 [192.0.2.1:443, any path, HTTP3/QUIC/UDP]
  1.2 [www.example.com:443, any path, HTTP2/TLS/TCP]
    1.2.1 [192.0.2.1:443, any path, HTTP2/TLS/TCP]
]]></artwork>
            <t>Another example is racing SCTP with TCP:</t>
            <artwork><![CDATA[
1 [www.example.com:80, any path, reliable-inorder-stream]
  1.1 [www.example.com:80, any path, SCTP]
    1.1.1 [192.0.2.1:80, any path, SCTP]
  1.2 [www.example.com:80, any path, TCP]
    1.2.1 [192.0.2.1:80, any path, TCP]
]]></artwork>
            <t>Implementations that support racing protocols and protocol options should maintain a history of which protocols and protocol options were 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 establishment process 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 protocols, 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 attempted first. Then, branches with SCTP will be attempted first 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 would be no SCTP node in the WiFi subtree. Here, the path over WiFi will be attempted first, and, if connection establishment succeeds, TCP will be used. Thus, the Selection Property preferring WiFi takes precedence over the Property that led to a preference for SCTP.</t>
          <artwork><![CDATA[
1. [www.example.com:80, any path, reliable-inorder-stream]
1.1 [192.0.2.1:80, Wi-Fi, reliable-inorder-stream]
1.1.1 [192.0.2.1:80, Wi-Fi, TCP]
1.2 [192.0.3.1:80, LTE, reliable-inorder-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 as
specified by Selection Properties <xref target="I-D.ietf-taps-interface"/>.
Leaf nodes on branches with higher rankings represent connection attempts that will be raced first.</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" (property name <tt>interface</tt>):
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" (property name <tt>connCapacityProfile</tt>):
An implementation can use the capacity profile to prefer paths that match an application's expected traffic profile. 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 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 a 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 all of the nodes that will be used until steps like name resolution have occurred, and many of the possible branches ultimately might not be attempted.</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 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 preferred Protocol Stack that uses a proxy and an alternate 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 <tt>Ready</tt> 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 root 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 root 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 three-way handshake has been completed. 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>When the <tt>Initiate</tt> action is called without any Messages being sent at the same time, depending on the
protocols involved, it is not guaranteed that the Remote Endpoint will be notified of this, and hence a passive
endpoint's application may not receive a <tt>ConnectionReceived</tt> event until it receives the first Message on the new Connection.</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 <tt>Ready</tt> 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 Services system should report an <tt>EstablishmentError</tt> to the application. An <tt>EstablishmentError</tt> event should also be generated in case the Transport Services 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 <tt>Clone</tt> action). When the underlying transport connection supports multi-streaming, the Transport Services System can map each Connection in the Connection Group to a different stream of this connection.</t>
        <t>For such streams, there is often no explicit connection
establishment procedure for the new stream prior to sending data on it (e.g., with SCTP). In this case, the same
considerations apply to determining stream establishment as apply to establishing a UDP connection, as
discussed in <xref target="determining-successful-establishment"/>.
This means that there might not
be any "establishment" message (like a TCP SYN).</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 handle the lack of an explicit handshake in the underlying protocol, 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 by the Message Framer.</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 can listen for entirely new connections as well as for new sub-connections (streams of an already existing connection). A new stream arrival on an existing connection is presented to the application as a new Connection. This new Connection is grouped with all other Connections that are multiplexed via the same protocol.</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.</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 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 Services 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 it from their send buffer. For example, a Transport Services 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 Transport Services system by 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 deliver 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 Services 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 Message marked <tt>final</tt> 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>connCapacityProfile</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 should 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 should 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 (using a <tt>Sent</tt>, <tt>Expired</tt> or <tt>SendError</tt> event) 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 the Transport Services implementation (including the Protocol Stack) has experienced a failure related to sending; 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 <tt>Send</tt> 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 <tt>Receive</tt> 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. The application can also control the flow of received data by specifying the minimum and maximum number of bytes of Message content it wants to receive at one time.</t>
        <t>If a Connection finishes before a requested <tt>Receive</tt> action can be satisfied, the Transport Services system 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 application can express its preference for sending messagess as 0-RTT data by using the <tt>zeroRttMsg</tt> Selection Property on the Preconnection. Then, the application can provide the message to send as 0-RTT data via the <tt>InitiateWithSend</tt> action. In order to be sent as 0-RTT data, the message needs to be marked with the <tt>safelyReplayable</tt> send paramteter. 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. Note that the amount of data that can actually be sent as 0-RTT data varies by protocol, so any given Protocol Stack might only consume part of the saved data prior to becoming established. The implementation needs to keep track of how much data a particular Protocol Stack has consumed, and ensure that any pending 0-RTT-eligible data from the application is handled before subsequent Messages.</t>
        <t>It is also possible for Protocol Stacks within a particular leaf node to use a 0-RTT handshakes in a lower-level protocol without any safely replayable application data if a higher-level 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, without any data being provided by the application.</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. Generally, a Message Framer implements a simple
application protocol that can either be provided by the Transport Services
implementation or by the application. It is optional for Transport Services system implementations to provide Message Framers: the specification <xref target="I-D.ietf-taps-interface"/> does not prescribe any particular Message Framers to be implemented.
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 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 for 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 <tt>Send</tt> action 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 the length of the Message data as a header would receive
the <tt>NewSentMessage</tt> event, create a data representation of the length of the Message
data, and then send a block of data that is the concatenation of the length header and the original
Message data.</t>
      </section>
      <section anchor="receive-framing">
        <name>Receiver-side Message Framing</name>
        <t>In order to parse a received flow of data into Messages, the Message Framer
notifies the framer implementation whenever new data is available to parse.</t>
        <t>The parameters to the events and calls for receiving data with a framer
align with the <tt>Receive</tt> action 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 the length of the Message data 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 error events in the form of <tt>SoftError</tt> events.</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. <xref target="RFC8303"/> and <xref target="RFC8304"/> offer guidance on how to do this for TCP, MPTCP, SCTP, UDP and UDP-Lite; see {#specific-protocol-considerations} for a description of a back-tracking method to find the relevant protocol primitives using these documents.
For Protocol-specific 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 must fail gracefully. The application must be informed of the error, but the Connection itself must not be terminated.</t>
      <t>When protocol instances in the Protocol Stack report generic or protocol-specific
errors, the API will deliver them to the application as <tt>SoftError</tt> events. 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 usage 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 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 Services 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>For <tt>Close</tt> (which leads to a <tt>Closed</tt> event) and <tt>Abort</tt> (which leads to a <tt>ConnectionError</tt> event),
the application might find it useful 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. When an underlying transport connection supports multi-streaming (such as SCTP), the Transport Services system can use a stream reset procedure to cause a Finish event upon a <tt>Close</tt> 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 resolved addresses (such as those retrieved from A and AAAA queries), 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="RFC9040"/> provides guidance about sharing of TCP Control Block information between connections on initialization.</t>
      </section>
    </section>
    <section anchor="specific-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 (also called "connection-oriented") 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 presents the protocol mappings defined in <xref target="RFC8923"/>. Other protocol mappings can be provided as separate documents, following the mapping template in <xref target="appendix-mapping-template"/>.</t>
      <section anchor="tcp">
        <name>TCP</name>
        <t>Connectedness: Connected</t>
        <t>Data Unit: Byte-stream</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 Established 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 Services 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>
        <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 <tt>Ready</tt>.</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>
        <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 <tt>EstablishmentError</tt>.  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 <tt>EstablishmentError</tt>.  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 <tt>EstablishmentError</tt> indicating that joining a multicast group failed if <tt>Initiate</tt> is called.</t>
          </dd>
          <dt>ConnectionError:</dt>
          <dd>
            <t>The only <tt>ConnectionError</tt> 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 <tt>SendError</tt>.  This is an unsupported operation.</t>
          </dd>
          <dt>Receive:</dt>
          <dd>
            <t>RECEIVE.UDP(-Lite). The <tt>Receive</tt> 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>
        <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 <tt>Close</tt> and <tt>Abort</tt> 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 <tt>Ready</tt> 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>The Security Considerations of the Transport Services Architecture <xref target="I-D.ietf-taps-arch"/> forbids gathering and racing with Protocol Stacks that do not have equivalent security properties. Therefore, implementations need to 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="30" month="May" year="2023"/>
            <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-18"/>
        </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="5" month="June" year="2023"/>
            <abstract>
              <t>   This document describes an abstract application programming
   interface, API, to the transport layer that enables the selection of
   transport protocols and network paths dynamically at runtime.  This
   API enables faster deployment of new protocols and protocol features
   without requiring changes to the applications.  The specified API
   follows the Transport Services architecture by providing
   asynchronous, atomic transmission of messages.  It is intended to
   replace the BSD sockets API as the common interface to the transport
   layer, in an environment where endpoints could select from multiple
   interfaces and potential transport protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-21"/>
        </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="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="RFC2782">
          <front>
            <title>A DNS RR for specifying the location of services (DNS SRV)</title>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen">
              <organization/>
            </author>
            <author fullname="P. Vixie" initials="P." surname="Vixie">
              <organization/>
            </author>
            <author fullname="L. Esibov" initials="L." surname="Esibov">
              <organization/>
            </author>
            <date month="February" year="2000"/>
            <abstract>
              <t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2782"/>
          <seriesInfo name="DOI" value="10.17487/RFC2782"/>
        </reference>
        <reference anchor="I-D.ietf-dnsop-svcb-https">
          <front>
            <title>Service binding and parameter specification via the DNS (DNS SVCB and HTTPS RRs)</title>
            <author fullname="Benjamin M. Schwartz" initials="B. M." surname="Schwartz">
              <organization>Google</organization>
            </author>
            <author fullname="Mike Bishop" initials="M." surname="Bishop">
              <organization>Akamai Technologies</organization>
            </author>
            <author fullname="Erik Nygren" initials="E." surname="Nygren">
              <organization>Akamai Technologies</organization>
            </author>
            <date day="11" month="March" year="2023"/>
            <abstract>
              <t>   This document specifies the "SVCB" and "HTTPS" DNS resource record
   (RR) types to facilitate the lookup of information needed to make
   connections to network services, such as for HTTP origins.  SVCB
   records allow a service to be provided from multiple alternative
   endpoints, each with associated parameters (such as transport
   protocol configuration), and are extensible to support future uses
   (such as keys for encrypting the TLS ClientHello).  They also enable
   aliasing of apex domains, which is not possible with CNAME.  The
   HTTPS RR is a variation of SVCB for use with HTTP [HTTP].  By
   providing more information to the client before it attempts to
   establish a connection, these records offer potential benefits to
   both performance and privacy.

   TO BE REMOVED: This document is being collaborated on in Github at:
   https://github.com/MikeBishop/dns-alt-svc
   (https://github.com/MikeBishop/dns-alt-svc).  The most recent working
   version of the document, open issues, etc. should all be available
   there.  The authors (gratefully) accept pull requests.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-svcb-https-12"/>
        </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="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" 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="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </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="RFC9040">
          <front>
            <title>TCP Control Block Interdependence</title>
            <author fullname="J. Touch" initials="J." surname="Touch">
              <organization/>
            </author>
            <author fullname="M. Welzl" initials="M." surname="Welzl">
              <organization/>
            </author>
            <author fullname="S. Islam" initials="S." surname="Islam">
              <organization/>
            </author>
            <date month="July" 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="RFC" value="9040"/>
          <seriesInfo name="DOI" value="10.17487/RFC9040"/>
        </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>
    <?line 1171?>

<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 Services 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 is too big for the Transport Services 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 Services 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 Services systems that are (to some degree) in line with this document.</t>
      <ul spacing="normal">
        <li>
          <t>Apple's Network.framework:
          </t>
          <ul spacing="normal">
            <li>Network.framework is a transport-level API built for C, Objective-C, and Swift. It a connect-by-name API that supports transport security protocols. It provides userspace implementations of TCP, UDP, TLS, DTLS, proxy protocols, and allows extension via custom framers.</li>
            <li>Documentation: <eref target="https://developer.apple.com/documentation/network">https://developer.apple.com/documentation/network</eref></li>
          </ul>
        </li>
        <li>
          <t>NEAT and NEATPy:
          </t>
          <ul spacing="normal">
            <li>NEAT is the output of the European H2020 research project "NEAT"; it is a user-space library for protocol-independent communication on top of TCP, UDP and SCTP, with many more features, such as a policy manager.</li>
            <li>Code: <eref target="https://github.com/NEAT-project/neat">https://github.com/NEAT-project/neat</eref></li>
            <li>NEAT project: <eref target="https://www.neat-project.org">https://www.neat-project.org</eref></li>
            <li>NEATPy is a Python shim over NEAT which updates the NEAT API to be in line with version 6 of the Transport Services API draft.</li>
            <li>Code: <eref target="https://github.com/theagilepadawan/NEATPy">https://github.com/theagilepadawan/NEATPy</eref></li>
          </ul>
        </li>
        <li>
          <t>PyTAPS:
          </t>
          <ul spacing="normal">
            <li>A TAPS implementation based on Python asyncio, offering protocol-independent communication to applications on top of TCP, UDP and TLS, with support for multicast.</li>
            <li>Code: <eref target="https://github.com/fg-inet/python-asyncio-taps">https://github.com/fg-inet/python-asyncio-taps</eref></li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+S963bbWJYm+J9PgbZ/hNRJ0pbtcEQoumtKIcsOVfiikRQZ
M5WdKwWSoIQ0CTAB0DLD6V79Gv168ySz72cfAKTkyKjLrMlVlWmRBHCwzz77
vr89Go0GTd4sssPkdLlaZMusaPLiOjktmqyap9OsTpoyuazSol6VVZNcZNWH
HD4dpJNJlX04TC6Pzi7CpWmTl8VgVk6LdAm3nFXpvBnlWTMfNemqHuXwu9HB
88EsbbLDwRT++7qsNodJXszLwSBfVYdJU63r5snjx989fjJIqyw9DA8f3JbV
++uqXK/ksb/A37jYV/jZ4H22gR/MDnntRdaMXuDjB4O6SYvZX9JFWcCSNrD2
VX6Y/Kkpp8OkhttW2byGf22W+I8/Dwbpurkpq8NBkozg/xNYXH2YHI2TH6p1
UTdVuaRP+QWPiiJtfVGVSMxsljdlRR+U1fVh8lNaLWAds+TnIv+QVXXebOhL
uC7LmsPwcdbU1yksOHlC30/hh4fJ868Pkm+/tZvwN+W6aJB4F7fZLCvos2yZ
5ovDJIVVjSe6qn9+n67HdRa/z+U4OUvXi417l8tyudy4T/tf5GgFWw0kno6j
9b8rMvnqLK3eJ7+kG7f84/Uqq4CtymFynC7yeVkVeZp89/Xjg2fxqwAVmmyW
XAAfAeOV8+RomVX5NPUv16xwhf+c4sPGUyK6e6/zcXJSXN+k1axxr3aeZXUW
f0Ev8xY4c5F/jN7k4MlBcrSYVPn1TdN6j9dlnbxKmxLY5fgI1//0yZevH0/D
PzeZrGUMfBq/wdk4ucxhuQu3/rObfJGvVslF9B29wsXRWXJxEr3BT2VRpbPR
v67rbHSO5+PgsXuJg2fPnn+XnJVNPUuX8fJfZdUyLTZ+tSt+8j839Njuat+M
k1+yxa9+sW/y6U2aLdzntNDA+EiYd/WijBZ99i75ofwIS/32cfLDIi9mcITd
qh8/PXiehKtsyW/L6jaNVrzEx99m/5zP8/E6L8cFSJaihBdr4PmH9MvT0Ytx
EEppNb3p+zxXEXgIogkEVHSLtydHl6P5orwdLYETgcj8cZKIMGWhBQKsaJKX
8LPkDf8sgfvQxfLzGvgjq/H2ILdenp7Bd5e/vDv/6fTtq+TJ44NvSMbVN+Uq
KYvk5bpZVxmST0Wck8x7L08v6ZJ9uTXLsVoXptvG/6HNe4mblwOzFO+3/wh2
+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
y+q6l1mja9tXHD5/erDV7H4K//306fjg+ePxwbfjzi8jS8J38k3JFRQYAnn3
Hg1RZRanC8ARqFm2trpRjLjoVoe1wqvwM6k2CMqGZMoV6OPLDGv402pDbcpH
vEdXsjf8e1/gSSlB4mUUwppwxPAplbDddcMMK9oL3G9KSEo4WOsH6bNZmXFQ
WguxG71h4CA1F97K8TjDSKOaCnzuovR3FJF0SVjyjLmkF2PMy3JCLXJ8BzIt
W7W0pFhC5vY4WyzWizTk1D/kzcby6Ba0jMwXztaHmmhckmidKP4uhzRgU+xw
TSwMzNKozVzD8CRX6Yyoa+gwK37LVktE/HFngSRHWgIVbkdFLXwnwtQgJ18p
axXzbS+f/BKqxyKYEXIBRd7wetHUDpuwLwVQVEDVwp4JthI+ukJIiFFT5Stu
RDF9G3Z/iZX/0675Heuqfm/9Thd8m2fdDs5RKBpUclWiTCWrSNL+8Nw6b9YG
ShRKloRB0bm+TRmPL4jPvHhP5Z+YcbfqHssFHXVdKDGS65u0ovjJoP/YSIWR
OFyW49IakSDcqZ0B/hd1FHWyVrzVqARwAbQ95l55dIYPeYWpPLc20ajOwfqj
/OaMtHNmImDvj2dvtSdVTXHX79bifSuVDe1ZO8tlESwrqpGIoo3aUiRSyYJV
71i8gUUirsaUgxna/OQCUiVhAkr9DMauXPlEbKI4L81kw67SGk3/1MI22oeN
/SjMR4SnIIxWB05LrZ4+gGSwZFZ0Bc3VyTYnAcJOMcSMsSlswpa97wAPwVni
K37rlHLnHzd626itrHY87EPAZHmQm659WVaOpFxwqOgZI5Yb9BDC3Hh3/NNF
/CG+Ssl/cO2QZbBdOcPvIUs53eusL5OG1IbwJdFEAgbpE1Lf9v0Q/wtZ9ePm
UZ/c+ubw4PGTp886lxGtHnnL/f6Logu60rPvx7GY9JxEp0EBE1QUorwUbeva
8QThrgO81IOIh7awJKJdneFUrCA+etbanwWsvC4oTehj0iNMN9HqVAJ0YdP9
u8ePH4MXQhYBwYiw5uTzPTSf8tETcdK++fqZ/d7XAaoCJP12ZwT62bOnbZJv
jUH3/PbpI3yDR7DeLSHpO6/pjVD3XPXkEbzko+0R692XRNZ4wapfQ/loarEH
TWg7JHoQJvbLjhv35i6yUV6Qcz7ict2dAf1wNT55R1C/+8Otgf2OgbIlut/6
nSdQDJ8uoTC1v0PljS9nanO5yMIltp+kVL8Dp7YpKzJ0pZdl9x1uM8mmgPAj
DKW4T48UDQjOkVolIkhH5rEjaF6t1epOxI6mKSb2qd+AK9Zda2fsnGkwhl/Z
oW6gLsgxHIOVutRTvrajqv6IhFnxynfEEOV89E4hjsAKkCishFvXqLDQRcYO
K654MiuZ+En6l4MjnQobW/ceuc74OJcrEa+FK0/JdkbbAn6GYks8wVpqV1zR
Bau3XMsDEfRN7mGlEaSyu37rHt4HbT1uMWc/qcWn+3DDOcYAgu2iBSPB1hMr
01rJJEbtTBMD5tNHaRIyyHxpphMeqbWLbCXWIocp8D2ClrCI4OmZdrkhgVpH
gorBpegblgUM6ihDuyf5Dip+pf3Ttl9aao7wIqQ7/GZp+XZ4XTO+J55bpL1e
toYNKA7Ru5xKB7jVon+SNzdkCl4fJmaMPdm91e3hdvPYvX4y7lq21LHcCdnf
8tskGMyoNLeNFeRTCprfgK2G/h02cs0ytYGIBMQk+v0CuIL7tkLZ2tgdMmUh
Nu6j4gC5ghwBLf7SnWgD5Pry7AqveY9uKNq5dAB52935C6lsH29Hh6bKCMs1
8JY8ElwnOtqUtCAm5ngexfioFVXKkwgWg4v52O8hfmVToCNDo2h2HDHioCM1
f8jbhpfU7Gg+7zRYVC4OyMZMSab0jpr/Vj1mjftBflrVgb9sOWORX0+IoS19
QCAI2DwFEnb6nm1jLhPGUCxJQrLSm55qySHLaIHKDnJV403UpOZVjUZzEZaY
O+aFBxw4njpGdjuXn5SqFbAH1xUuDZ3dYU93WS0t6MHiZ2BHVUDY6bpoymt+
P2mK9c04egN+2tFsppE9dJgo+hP26istgGZB2XM3a7nEy+HnPuMaIr7j5Fjb
6cgdJeyExpm65s17iDgqwGZLIgSJKIxJMJ/hHPfrFTvP6A9iBF6iCKlkY3sC
xi5kT/2vejhDglZjEni23OHFG/ucmvtO2+ocXEs7OHBDSF0zwQzg3FM71PpL
/jJngx3rvfB53JqvoDmcG/awOWj3DUNdt6o6lm+1nPopJ41KDqrUGiSWokt6
aOC0UNpSRDeGX4odzI9oXUG/YIGaV9huQEndKKHZxEAtys7ebAyLcz1rQsye
ziVtsCPTLTLYiKNovVq8bFQTP4hoQbRGAmgu2Awb8Ovpcl8RTZSSV4P1ZXp4
41tto9DQQOe2yklpOa3J+A6lXDX3Xq/rLQiP2pRA0XVaQkONuU53CqJ3Fi4h
Ci0ECbvNiPjqrbjC+Dd7OttDobsu2R0/dVGIpz56uuOOztmJLmHXSeqYer7v
rZW4KLk38wc9IJ8e8lkZ1fzN566/pMltSlfcBL8gKoOIu6VUy6lSk5/mld8w
DCtJqSAl8oOGR+QHarYPH6X1ILSITjb9KaOdfSyvg2WKJd2RhBCjDFeEHoSL
23bLd0TsWxEoAjuL9CFMGlAxubbStUTHTsi+bn0ZK09O0etdsb9DWldM7pMY
ieNuCGeICMHocmz1GMmOaGNdcA97CawIDh5/OeIv8QKRKEKo8eDytlTtQfyA
sPxha9IYt9rtlITlFe+61eXDDUFCqgwMbbDY/2vyIEz3OFU8Y0S/Bx/iQbJn
bUak4q5s66/2DzF11ol5G7Bf1FpLtTvsCAXeQ13GXUXDTtu3YpaowkCDF4jj
sl+/7ekGHsGmniCy9XFJBORSapeWdGwUI0E6Im3F60FSHity5hkjZ3YJiIyv
v5IfISm7qC1obVr7SRuQk7xTSrN2W8SKFsBFeAtBTpGbGEZ4o7YePu63Mv0Y
ZOAyi5iW9KDvj7NId/t9aj2PNLfovyavgd1l6NKjUx0eo0OspEFN3tzqdNFv
pG46edtzgne/rPJVcpkvESNNn15OKEfQ+Ul40e+7y3gLe36fpZADu2sVa0En
AVFAGDmUlSQgH9owefRxSUexGZ3jby5Ia+U2r+uss/cyy8LY1bdqBtAiwQag
eioydhkUBc5ARfMCotSokWmZfsyX66V2u63WjS5StnF0kWXvO6tLZykjcYil
KSNauKuO+Zr0Q+2tMeWM+69lTC2DaRytVVM1EfUbgWWY40QKg8YAWAVNmzS0
RXu9WvEKXuMCfn5O4NuP6O/zbPoh/J1+jL9PP9r3+4d9TkEId6QyM6Gdpt66
df1qToREKuBoWrsj4QrNUXD1IY+7mYByuc1naMG540oyoUv73QLhsvV2uKD3
RXnbS2h5EbFbsialrkSMkREbwS8o91TrSQju2Zuzk1ejF0cXP467NpZGGpyp
m39Zo+6+6uZWIOzQOnGH2m07FM6XZlnSUL2cIwBMiq7XhQXdVQzJ7tVqXV07
k1HuiKtzEd2mBajMiSdTgf55uTnc5FS+z7JVuDv740Gi1DEaCNyWa2uj20g0
M9vSZcwmnJoC7a5iRQ6lXqNio3ZCBxwa/jUBhniPbeBUamcVj/rUvpNBcNbI
UlRidpvlElVv47L2+ewODK7OqEgm7TNJTSgLiogUGfQBDIdG7zKK54sFKQ3v
7gvcbApxwZM5PPN9CIQOXayb4OZEACrMXLlusCcAv5KExZLVD+weYhD6UGOj
pSb3MD2dg94zz2odKCwFCT7wLUtqzWDSEqtJ5M9ubZDnUjhuOSD7F67LPlIP
8XUX+T44PbUUQXkYU0bd7oET+PQwoAlIKQ6C5wAxQ+N51JIuuFQeXkhisnfg
enlLvh+QUew3ClcT2I5oVnOD/BkdmqDJbdaXN83KrjJKezDM+1FfyQUORDKc
utDyPxj8gBGurVNNPDoAVf5TfoYLYLPZ3dDuyWVpqUdnpRm1sMSuBe23d3p8
sq+TOp49+1r9NmGHVg+9ZuKBV9GBm/Cp5K76BEfqCR4fewocM3WMYFZq6717
MJH93AXFSzFOZAL6WTDFLFLjLVgy7XRp36c7VEZybXiP+CHOP98yOU5LmFrX
Td3uX4aXsTqm1rtQFJ14CMNbmGtMFcJLe+XRW4GvMclbrJdkPtd99fhxrlio
pH2aIMJX2LGK1T6MTMtRZ3hmFLONxxOi6OfIKI5OwVXiVFbKujDb1YKWU8y4
3JVri/iF4ACvq+27yL0JKP31xkMpmW19Qr/h8KQ9Rz7ZD8YdA/DeKO6uSA+q
X8kZmwLskrdHl/gRpi7TBfdqsVVg9SgKcBkEW3vZ2l02qcp0hpsCd/iQLrKQ
IYAj1itGeYBJhKz/NYX4yBazA7mPB9snHkzGMbiClHoR+OhHPO4dwjK4GkfT
4P05M2fJCqz8jS8ZRmUxCYMv48+AXqSPqK46TS4uf37LNWMiQb5++u13aCxy
aTNmF2bd1bA+4ztc/nz+Vl9AbvHN8+dYqaM1p3Sb/WEP+AE9xeosreVVkQa5
bD4gEd8lRQSYgZsUVbkMBq+2bjyh6OVLHvXWmcuEw1NwiNH1DQq3GGZPZaM5
y0JIIgO5h5jRuXNjSVLLHTwhY9q5G27ZEqBZSCs0oYpclxtPm9kmxFX+bddp
LADb32OyarPKOZ3L7SB8irFswFVccpqXWunSjhRt4eNJSrV/Xg687jndTo27
vhXFpx/027qSIms3Lo58L1owQgmvV7U2l3JiVBc9ZFgAG1ba5sSANdxeiSIP
HHuO/JF8x7zdsjbDPDsFsDjvqmdYGwZ79S7hfbqggFnXqOXwtMWsAqQ70pY4
wg/MXWVJDxlTSg0ihRx2Kl8ogMmyrfA4ckVsZ2M14uFIJHZu8AacZeW4m7Vj
ttei3TWMB8U9mASn+9HnK+9iDNYhqwxH+5Qj/N9uHe2OQ4MQOcUs+/UDYlVr
eTfTBA1LZA/yYKdSRU0PQMqkXKdc92Ajs6QVGH7WBncZS1KiTI1z+FApgTCF
GS6t+P0D9aXyGJdo9MdVAlfeeaQELCmWkmjiNNqpyIRLBaUJ69+sK0z5VHfw
fiKJz52RnLtCxSwl4oaumCQ0L/IwXEa2pJqChQF9btUdomP6RGIXp/fTQ0Hx
VRhtVCKb5LpM7Umda1QY5bWh8Gr9hcOy6sHj9X15pcJdhpxAaMbr6faPYUka
ijMt8qZZaLyWLEpgi+wWBF/AQ/bF6QHx100uoSKoZf5r6MREyEdYUYMTT8Dc
BVtejFoCMcfAH7A41YQzHigimssN1ARYgP2ldVwK1UKukwymEuz2FGXcTgBG
meCMbx2m1jGiBck0WBLWsAUANaZDGNYMnyyBfoud0QDC2tJWKgoIOk7j8FWU
CiRlxuqF4LYpfJm0Si6k235KNQAzLfvwYyREYVo4yk37ZAEmM3gsTz/udr27
mkEpLee+m9BbG7Z9HlUMSoa0jZvbg4PAZXQXOdaqpEUG5xer6C4UKhrL516m
+QL3V2DmfMME/XtV0anIfVkZUHFEw6WINL5Q0G1WqBIFDmYkHc/eynA272dr
4g5picG72r1GBBKt6Lq6dgmQ4eHAn2gbc4QubWOJsGA4mkEqBWt9KXSGGcB2
LrIP5VYE6keed11avZ7GWCJENfL0WYhr1z4WUuQ1Mg7JBp5WwPDPAsQThqIy
1IFUCfg9HVz0kEatCqtTCnVTURpX++Z0XKjH9k4F7FO3WKY1AJmvye0RT9/w
pOnUYTxRnwU00NxglhZ1zNWUaAKeovgKBkHdW8Rc29o1PFkSxUXgnphttII3
b4Tz0E3/CD5bl+VYmVmRdy0oKJwB9eeY6mSE8HZ4BvZPByRuQsZKa6MS2Ugb
RC2iEZrFD1HCisLfLiZH2zpZw++V5ni7oSs/7UFtUkDhmZ+mPZRURAj0ScGj
Xc7tjqTGSVvJDD4OfGLL78z/mmrb5TniK9/kVfSTvZyGU6EZtq+Lu84Nml5y
bwJQz0CqSAiW2VQK6hAJSVBPuIzbHltWHsbH/7xVccmTINj/V/3P3kFnZ41n
cYvJjMgifPxuvbYTXrxxMi0cJ5DlVFqJ6+qBnlmvqOPfENqZymQR4CVjbTMO
JJ3T7OrekBoFK/eoPjD59El5CG48CrSIJ3Jh5MEF8NhEoQ5WSVlQvkd9rcAu
wzb7dDtzHeP10ViLdUMNaBgghCWxIGRduqCLNdEClvCowNHUXIc3oX89e3Lw
+bMGP2uaT5pqwZqsjg6dc1u/JDSMERAt6h06srbFpyoNt7eW7gA6RmnsRVZc
NwyCkC8zzYHR+DGeBkEkj8+mz+pjHZ8uIA/1gYSWICV+IuR39nceBe1KplRr
E2gMRqYTJ8IbYBHSojTppf1w7jkB6b5n4QKG4aMInpu4y7W/k8GA8Vtc1zf6
zRrEd3Ao9pHTq6jU0nSLDJFHFiLxGZtJXfzZe6wncI7WNGHEgXaSQzrTabnW
wchL+qfyB47Jom3lcp9VKue7OyHLEWiWlwiDWE5ZMHJIsm0sS/1n6sZMDDnZ
HhfZiSQha9y0OMUW+YyLltzNDCg3wqgn23O+t2IyM+GN19RncUW8IeOPo+zy
/vKaLeYoT6IAMb0ifTWTLhOp/eBacpWZNl1RvuXJ5/621hsQqsulccLWz6EG
xz4E6haK8NkuCXb86bwvbVp10s8036Mktziq0HUGn/i6MpY0ZOC1OEAmZ9EZ
x6EmYDqKpg5YZfgo1FBUKNhvLrIXsq4kQB58504uktDp1D13OpuewAUVaveD
Lfu9zb7lKdNsi7deofMM8SDxUWaDy+2xQChM1LNg3Fxoz9E46XnKZuzoRo0o
qStU6BtRRROgtZuCHGLf79B3xWSzSmudGy394i/desTPziXWaL/iaOctccYS
06M6i0smgILlz6g516QFqA1QgqAu2Y8h0vXKOXYUxkfbPGoLoUPPp01eHjPx
AbQAUbfQGKOUb9/Yegsib3V3gzlH0hT5rz8Gg/zYawjOIobanmZVmHHkk8gV
l9t/yJTfQ2CIoyFsnIdlcRiSZ5kRu4WX4/B5YeUH7Yw6xq8IyswNJFPsSYZ9
lExy1jdF0hVlXJ1jmYMMjdTcvAwT14TaN5xO2zlb/IJJKk6VDoXig8dWjRq4
DrUgk+4xnr3mfGVs6yxv2RW+EYxJR+X99gzjvtHX1BDB5f5mIdtMpbyRp0uX
j8gJ+AlekbCSwUuRXYpSRxIEZ4JuQfrXCTjeDdd5FN03+UE6AbHFgO/bJJus
kauHyYFGBxzCZ1N6lgori+8g9p7WAKj5p5U61iVXYsx/ncW47Uamvo60WpBJ
Mf+WYkcr/jA1XsVnWmfgKr3mPHoZdo0YHUcHCyCpAwTaCvYZv/4k612YkVuA
QfUdPZvLQL67u+qPis1/FBrueDyOe+FjFbhDXMUiY8iKi/g07cIjEUZ1d4Jt
n2xR587mskjV73jwNrvd3m6huQcdlkjSvGcghPg05BmX3j+MQwAxCbQcq58U
8YSFfr7i43LL4QLX2T/uK5hnZDgzbBY4EkrAaPx4wiLSGWG6JCec6DUE5ElJ
1Gr0j0pffsoymh3gG0lcEqDTGupMDU+A0o8IZFADNlF9nkJszewjT4Ch4bRU
t6sVhXFF1osQOUgubAs6E07vFWAYDN4plIKZcgSd0DW5cYkyyzFEn625ZrIx
pKDIZLyn+KDhzcTnxcKNnwyWNdtvXbQWw6CCp1aBH4bsAcOhdmDO5YQnggMv
Yc9nLpXr0wU7YArb/sBW9SDkgilPMLqlhlN1hpGLiYON9+/3Gt6Hp83WH8qq
f35x1lspbEDKWoLLESeipF80frUsuVs+Kq5JGY+LCz0o7GcFYrVMBeRGv+l7
gsuJRAUXhc+5pTn59Cl+h5HO8ZRBdGzP2BTbJDVTasqGkIa48YFv0FzF6hEm
FCOANaFOtSEfsD26cBBq+UTcmc7FE3m9ToFbGoJq0KrfdjpVA7IChj3T+gSZ
3MZ4BAka9WA1DTTt+FXdqX8XEZBxyv8qSL1z/nCmRh17ZLn92gMVCBkC3W/j
Ogk0s9od5MT+Fl3xUwLZz7eRLFzTRW5EscaAWmDWlitj1a3UvYzgQkgMOko9
Ndfih4f2j7TpkQFqJJBWwWfGsy7zIK7JphfQRPJhVQPiQqKRiybgBYqN7foJ
iOV53nALOB5trjBll6YswomOV4CzyuqbEGjCgoamXNn8GPIc51aI1JeRGrLL
OVtTB8q6mpHrE2nbnhJZGYWq52qrRndwFCxIUyxWBddqhmkAV9x2Q/3HKI8l
eRTg4WMSRkTv7ix5jsye9TQrcCK5x4OLyRc8vr+t8+n7hQy0xQd6Ry7MiyIA
XtSFiYytrT3WAUfzm3xKgJpu+PZMYPFKQbd0v8qspOdSs50kQ+t6TU4nrsWm
mkkMYVdDBskQ0vFUiBD7ZsqUzry5B5klXxCy4g7+BVfkrYKZH4sLrDXOxtig
mLlcswPCS6JeDnxCBGHITp94ZmFcs+tdAfnMg9PYKtQ+8hZQh1Om24c+WzqX
vgXGuopMk5OqKqurHkeYZtz3/pZp7uOswP+6N7MonrJ9WXDCZ+Q+CvSOq1bj
TH/G4Q9bgKEsY1VVNovsv08PzY4aLdcfwY56o79kDcawg74/IZ5aQFPJFowf
3RdltTFkPeMYtIbQLw77fkMHDmlNx5uvcBQW554ieIquv+GCEcdwR9Pc+4p5
fXP32q10mhY4cr1dW3boIkwLX6YrrtNzqxe+7bwP49sG8CbugtQSw2lbdVKY
mX9UKxBEjhK8oXEY1gLkrhz0ANzM0FcIObdbfS5hgmksyLtbcEcpETZ4jf2+
gXG4aYNoJCLbGRvfYMn5FXpgvLbU/TjzLJwSnmDkm9YDbMJY17Wm4e6XjJQZ
31o9wHyJ1Yeanh9MuK3rQXThA7iCDZs9Mm9Zd1z83wTRCgfuRziIi7gPJLKK
8bT1G5toauZR05UGbhMue+P9jKwGAjJjkd6e48v1j61KWw2w2tiImOqqo13+
ebj9RUI655Z2hQd8AgtyN6eMjbElSiKxZmyPuS6xVBTudAJarNnwV+54mG3t
AwlgCE/AvCMp26/xzLfgZfbU3k0y761TK1HJnv1u2UuBE4H70a5Vy6Zo+FQC
RKFoSesX2ZmmADYI7iXGyFzbHJFEbP4KRQfDv6gGi1Hz4yqtlvNV8sggfKbU
mmhxpZ8blVHjh9TjNFyVntbUt1USqy144xZIs3K+hRPzjigN64hb/Q0xIDUH
4WWVYtnT3qdPcrJGc/oEYQ3J5CxXzBNbXtUG0GAUsdWC2JmyqPN+yHDm4hMk
kjm/4shwsYcrUXGvMFrAji76PGfJGgddFL8iCwgr56CmBeouxBrITw8X9O/P
95o4xddJsPka/6hc/5b2BJXB5yCwRNFxc6kgx5+2C8hP0YJrN0nlrslul5Gp
ospal/D4sJmIF/W2GYvQ0MrhUNPUSR+XlYD2UBbJijMEvj9GfONVKnWTcvJX
aoFTW44p1k8Y5BZX6dlJlus6DLqw4NLsUr1PP8vYQMRbEHGhK1bONsUE6nIH
cZdlkTcBh5rFjjSqSAV2QEHjVwyjiCNqSB1iSmAablFpVJgpJlJrmmofdaPw
oS+o0LApGXAkSpHizOcS+ci4qnIXh/BWhxUE9VhGus3ua+UVHUqqKZc3OxnE
8GFJGFDJY8FIB95qtpYni3wH4Nei/Q2QTQKeW84/3u3YQguqrOrBIHzY1bxo
elA44/XFCPloxH4sd2pwCh5M0JWv/giHvtd938MuwBGNOtxXMuah0TQyjBvi
Ei5DQEuXKkWc4mai1sxIUrGIJqYSM/IqJVim2aZod2RbnP8aR5N0+7jZGguL
+gYg3pv+qmC6m7DdBkL7Bx8P/zsCKyZzJ0IknG+ApQOxzPDA5vUySJLORsO1
qN3Iouqj7LbiwK7c1zBojE7fehvq7Q/nU1xeq7gT/ZYEHmFgHjrLc3sEtRd3
etp10WjwhE4DyknZTbpbat1udEeO7MSvpHCx26wDNQfF7OrnHIG/5VFC3Fq/
k1PeOGfVsclZbLrrli+9N41wB+y2CcoJ3peFCTyJGoeLKBlW++kMc9IAt4jo
N/I/2dN7so2mSS3bh/DbfRwz4Dy9tEJoyYWMJu+5wAXY+1P+lAprxXe5WKBF
bFQU6OuqBRrSih3oAw8YjETGftSgSsIwxNYuXVjgH2WbSu8XYOJxvQdhzWFK
aGqCkcro9DKz2DizkU5QiU5Vi6KpeF2Rwx1NLelJ5BQpNZrg8c9SiukTVECF
EV49J3tOeOzL6Cl9Prmi07ICuq/Kguv2zTbSdUgooOUwSoPUZNNkI+WKPacx
9ochqTMDDVVkOq8vBqizd5GGS2paZD0trEOIHxyN46Yw2vnoPXIXGGi/D98U
ed5FO3DZPJ7Y35OVjGVWpBASTMYmoxLJdv8i3Nqq9mopP3E2DHbSbz2t6H0g
MxjNuCB2BIdk7cyPCIjX+eozmgRFBjnXreKgg4PxwT7nHMW0UPrU+a8aFhM9
geF+wSXtbnhMXGRdXW1YyTauIa9Kayp0NA7SRoLYMrFU0hDRBm5x7Ui/dOlq
2wQXLsFRxuxLUIfTMDyV95qqzAy8Q3xAPLIUg1hiMIfM72JmaVepyED3u2k7
mASa67qFLA8l6seJMoaISqQuacDeeYXjuKQ0FX6klzuDVBbsL5dVHwvojS18
bOlD6XkPUQj1Us9iQKWN4PYzkJ9hTMnJBsLVNhJah9ilRMhBBnoRpVh3ckcd
Ld/fn8ZsCmPzjL55XM1qLAwSKcVoCviAixnD7NP5oG6toTuaFD6DPXqADvfm
wXCQF3U5TyuJq2wMWOrXrCrDcd+69wGNDhSTG5mp0Fs95OeKCIEGX1WZiw7H
USD2yFVp6DuwquD+oT7MmV5t0UW2acqVhAqCJBWgNBd1ai2IZ6PntSEI99zF
ugm6GorO+CzshoTpfbyU3UNVjdGoeMUAlq7HckL7ZOc73LWILFa6LcEyyZrb
Mons+3W+kNmqTjOFn2iFg1jpPcfu08NlfT0KBSTSn4sVhTI0B/EJsSTCQ1xx
djGcZzI8MidFVSKGgibzGjkoGKLLBEcKCxwlV7CU1/k8Q7/96pBVXP8NJhvq
07bWa5PdOn/3b+uMU3qrFhu6/LI+ynfKoBm3/dqAbN0XyGz5xQIeA24jVvwx
ydA5C+ZeK3jKmAS3OKjOZhlSCZ7AiPKZlSnlZtJomEwUsgF/YKfnmlwcjgoH
/YImSntUVx3pUaNt3hhJ88rfdNxGzLmbHhIypXtnIqJE0qKD7W6u/c6S4pcr
SDTJBQTI7d8xhG4p3UtFcIj/zMFvEF9ZQUUOAvr09PFTbCdSNcJZnqJET5m3
3Higb+85EhgCIq197E6kvGFYgQ/c65522bXGC7+qYyJEm6+2RX5dlBV5U3xe
znjMzEbPi5sJSRJWKBAPpAkr4DGzZKnom7qRxt1TtzuGT8dyZEB8zmT5sqNA
RhDc7JrFqQ22kVfYJDcKQNAyFZXi+q5oV4RXazNtt+tirhO02hWFtDFBVPtp
4LoDCUVvzF8MP9BV256942Zi2DKpNOEK8Dm4NAp2BeIRFYaUU4c8PZsSTOIR
GsVUJDHvGs1KCasBoIyH7IxL1N7Fu73X34c363QOttR5tgLTES9uv21TrQOy
l88WGm/6NBv2eTiP0KI8iWv+FXJQ6bNqV+rqSUYjndlKBW6GkNhO3NkDKB6N
DRAgTKgwBATUS4RPfwc6Abvo6nLYpniISDUUNkMEkxqLNNgWcAbEMApw7d1a
4wD7ZlgZY+k5p8vRBCfjvFzt80gSEuXWwYw6OD5yaBtf0D4kYSNk83tFtpzj
nI4N1gTzCa3oYrd++UDeNRR5TbKOwxvHCoExCODz/tyAJy+r2IwixuQ2io2V
Q3m5FVUA0AgmydJNFyXSaM/XgbRY3+LYN+liPqILPLKVmlL7jCpghOZKRC6F
NtbFpBk8Tt6VFy9sRx4oGsdUuGIy4RiH1tTr5eusaNOmZpmJ78xOhYz1QvjR
q5frBdaQYC3JdXbFMKyZCH/CC1kv/TZFKp95hBIB5F1b9lPWok2rVJpAQdjX
4ILvbysK7MqO1n3oIakazPdQbucywwEoItPU12FqIl8ZcN878kPRJGUSxCZU
uqOdRzcUkUtAD3Nwx3VohP6UxmrSHtjkJGHrXtfdKp8sEGHWq927tQwhZbid
lax26bllfcMtj+x9oPFbC4i+RWFu4pWm7hQYuKYkPPJZJfF27pGOu7zPdFt6
we4D2pwp5Bftgl3i8JDYFww8g/buGCSUnlPGfXEBclrOCNF14HwUCWzvFaVi
RuAl2DtO4Trylw0cmuEI0Vb85vnX33z+zIUz37MaGbSe5aoBqZ+VywFiEBgN
T1oQSrdy0BPnrHmeKyqhF8fHZ1GcmTawKF/CeTfDBXbvQoa2E+GkLlOSmiPS
HOg/hivGQYBlH7GTPEBTyGr+n//1v8NYHYXH10ZLxQMXmmK8jQf7XaEdjrWW
l45B39TXb9KPKNn6eGVfjHyVjoEedRYWbA39zMdkIYbUVZFkJE01u2rVGEGh
V+uC06M8jF5H9yXP+Pi8KIuvmkSpipjk0RiqJuDjlMWIssRwj4ikWGshWAXP
uMeONuoii/aJFijw0V4Ckmys45OMVBX7+D9gWxyLwIXXqnHYK8c795C/jwtt
6cKH0a46OMt+Nv1PtaEPJa5l/a9lIeDePpBlT7GWgT12T9PkCq5uQEtfnXC4
4QrZ+MqsASlj3fdoNOapVebadnx/Ac7ZEo+js+K6HsWdEcQvDIBgu6/UbLvg
W09X4z2eZqDinWYMh1ca+WGMJ8D5I43Jt0JY0u6S19LgorF4Ox74Fla2L+yf
162gSKh6mSE0qAQxnInNHdrkftcWCqVQQB13C/UuxJ5vxU+opYh8cURmN+Xj
XYrQJu8OsuxxIFelebw1+xrpElw5rLPTjlc3u1Iisd+bEnbgmkqqMCMRXwM8
FZtpq1lnZOpa4R+6wV2exKToh4prX8MhR/AEPweyPY17VwRiaE9aYXFapY6E
Psk8vXqJaVITcBK9X1c0l4RECkbm0SikqKaHZc0K4oiZyxhE/QS5VPK06/O0
ppp4Hd8ShDYdfa2frtu5E3PTcxsY2Vsoxls0l7CmpHEkK26vGHoP+OlxzwFh
2Gr4OoTspevYccXQh7n/bUL1GU2FNttpminWmtUNefeQ4ll4tLD6Ja3y0HCj
i6PBoGCbId5gIc1sGH3qjimhXJUDGkWoOdA0V9KhZS1qEmfkVEpAsm3FvvFu
N9lidc+jS3CIN1SUBRdzfqq0oAaPdMXgw13jJSkocJtKgCx0nLWTkLtqDh0y
CGFpUjpZ6bmnQnoo8S5SMJQk2ef+ptSwQ2T52jZooR0870VvPRFHH11vQ2eN
WAOH7hIFaxMeHhysWexs0gYigttG72mRu6SjlMZiiNF1If8WbuW0Z4WpWK1f
D2zYz17UmoKvX5V8GufU4DS3Glne+Yl6thsV5erMcysw23kyKtmSvuG8G4Ux
793hhYbwNlByKzyZMwC1zU23MHVTpDonQasBqKvIClnvbPwJXL3pWDW6clQq
Eo7npPicm5vIspTCTyldmhnMRug4CH2b3NFo9LV4UdxZIJUonP5P62YEZrAP
lnx6iJ/ih59BLkrzTviawyiqfXj6YZufWqA+9Djp4WoVBEYdBMOoMtHCkAKG
9s2zg6fon3LBYnIwfmooac+e8ywmxQYVnFA/FDKtbc3/mlXl6PzyMtl7jP+z
38InSV2/uUyh5YQU1sVgwzQ2NhC+OwPw9mXDCC5Hgq53DfboGtaCU8wgZ42i
0xgOkr6HnMSaKrzoVexIuc4lzJOfNw34QFd9Y1RLjY5n06j8Kiv6lbuvQ1RR
YJgv0TK05soan38BYeXNAKoCkBlKpZWTRDcZRs/xxokEHq1ovRuG5zWR9mqo
mAIfJ4UkQ79QiclxqBedmHlL8ViTjhYf1LI4NdPwK+I3F4AaBgvZ5n36760s
D1lLodmCI2JVcb6SrgDRks44tWY3IxdXW9IU8DMUxA1dbMa1WJKXgyssKeQG
hgAnz4hojZbKiWtgILRoAZ6K/OBgNmL6ceC9MtIPzZKjMIYUayK8ggCktRG/
LJSO3O53/z7pVpG0NM4Llf9qY21vtE4/PoYre8XSvfWIR1Lz4QFqkA3UZ3Gq
UsaHSqwSqc0rjsHPkrdR9C2g3oV6HNKS2mray/5UkoAKauNirzVHyLlwru2S
Un6IE9/svFpmh/fU9K516FE3PC7bQ4+QRm/R2U4fURrLRt7r2NZgyEVdyK3F
3TA6D7nUOgqqXivcBGlIkWxEgZGVv4eEeJt58lq6jAKG23pSoxYvGq//Tnlg
AZokBpI934IgQEFL9xYRLBZXAfMOOcAVuobATNqq0EM7dA5KV0uStOlXqpqT
N1oCQy9XJZkQoRZezWkOfEQmdKxUp6HnJjle4NSc5EcQRyUTmpAO6s559G/D
uiaTxMCOVFiHWtxlSrXK5GkzOih3BGyzAaZl+Z6K3ByYqLdXccGwYxh6ZqRd
N8Rqhs0sOchZKo7PRrAMFLHvs02d7J1d/FTvb4XJxeqf25SB+mqcE4JikrDh
0eVOK+pEMG1LKfT3GX7DTTIB49qAY63/x4FrSgcsT4GS/vyhO+X8YngprDYa
Yqg50bKFLKdg0zyIomYVJJAJVca18ZqvVbqFkduMxUmN5sysNQ8yEuD90bfj
gzBV7DkNMQKt0AbJIRXjEtT8kNDLJCUutv9RPRiK6HDytAEvtP8FpcY3JhJy
0V3nanr5WLEh2vGmc/yGVLZBlZBoB8A/qg2i5O+Hxy3MZLoFt61bQh77XlR2
1mpLtApX+w3y13xd+AJ2BvMcyHAw0vRWVlkH1Ea3fr2p6Tzsq7Uosku2kbHr
YH87rZS2jwTFSX8N/JPiKCIZq+yG9iTFu+p70AUA7ZEaCUtsHgYP/gcK6x1p
/BbnNWEKY4vWh8wCEtPjFeyYjBpSk2iNE1hzcOVYPbQ3k81Tl7wbD46UskSr
YgoPWS8om1EJs6G44q4mKz0YzLLoh/AnQchI95NYZvC0UKxA2V19MNdTgzBx
0EC+fENLMKj3qin7eCkU/gf28WIc/bgMq2nNhVZiaK/w/ljb0pcyCFarzNmd
tiIutnhbtBxqwGmwWlfsfYkh08MKR2enWq2M54mqC+exI1oPWo4pHUlMyQj6
1VyGNoOHihE0XQ5QkiU8bu1AKohnwVgIMYWv6k6YjwY3OyX8+mKQ151YPFbl
pTpuoJ2C7zlE9LZUNBvGkE0DJAiJfY7eMeW0ujdgMWBUggtm35QOb0nZeJ5S
sTQ1R3OS+bZMUFsgrHZWH2LS70eq6R6he5pjlw36kBXPGkobV/yjOY/LzSob
veZ2iD9SQnnv8vUf9zG4tsbJKhne9IU2QIw07NxzR+2KwNY6mlfVXr7wlxdH
9/AlhgOGmN0625WDH9N13YDq6j/5zEX4xEEnYCnd4FzWssozRjKowR5CG0NC
EDrdRtHhsWAaToCarViwzGDOc0bA6Bya1HMcB39ebPnxAGRTW/r7wXfhZdg8
MVeJre6a03j1gDNb85b+UEhrlbbo56C7kIfrVZyh6DIZiAw6kEMnALWiHeWw
BAUlW6GszSNPgr9t8Z+BwDI86F3jg1Zfy11s06PDOp5JU2eLOa++RWFalrUw
cWMJSiZ7SVeBSwkC3wPXE2ySGKNthtzYkabzwiHvqq68wZVOWN5lM4t1y5Ag
4jzhqto6s5RbNboMqkXB0ApcTq69zpEgG3ixbVxG8CtamXJwB7avLOru+ID5
rZG3aT36A6Yag1qrCQb6reBug9be0WCaTTG9qcoi/5VDi3zfwTRMe55kYPvm
Zbt4vJah1MQr8ig7YdgcEPTtWUUhF30qrO0CIxNnaV1L7mwfp1Dlcz5R7CFT
FwO7r6JcBjXnxRmQljESwvIdoHSAPJyZunMtMi2TVXENo3B6LxgMD1HhCeXs
UIhkFqblw0n1Ayxi+tlVkPS6DaHsf1rnrQMPTgmzbttDbzvLt5s1ZVUQAvmY
GKx/QeqINHElZugHxpmRCB+twm/gukp0DJy7LsZncRiZXPZLOWSFaIUNxzNO
C/NBDkTplT+Fb0b/xGzz34Jr9U99PylX0S8I7lc2uMX/WgpTU40H3ltKOYbb
d29wI8K3HWrEy5PbiusxA5qKhaZaRAoptoEkKwMInUb/uZOnP5fmE56amNJw
CfJ4Z75ge9goQ4HXEdEtptnPJxzz8sDIddYAW5QRPqv0f1jiHI5EW5+w4muC
qJ7LLRZ2VCUWLrCifQwxfgOP83iccKM9V3PHO+8O0e19mKBc3c0DyRYewN2X
aYxUQizGaSUYtkAppBnPleQhWG4GEKKy1QFOlHLzQapwcUGccN11nAP1hdRU
ScQ5wtmXE5fX1qXuEUfPePjJvI9V0SVcF5Rwx7KVBl6dqs6MTzi12gMrTWIh
zRdRzNuK1vrWjBMZwvV7UQgGL1KW4JDT9u2dZVl7vqhhXEXojckatGXecJpA
3ocnAjB1Zd/6HTy0x3SgRks4mNDAxJB0dClc01gAYiotkVDU/IB66BKtrRuT
MYkPHSfv8KrbvN7yIwGE9rGpQA1NFbWOEl3YQiaJ5Crs2g+Snu5Yf4x737VR
5LVjfpFpM2iED9LZzHugauhVOgeziYLNsWxtRROo9wA9oxnHYA2XlIJLA6ol
u7g8Or/ELzlm+PTJ428+f6ZBjGLC9BTX2ZSZ1AW3uXZWGJn2UF758L8nb7Pb
iLX39lusHplUEae7O+khbdOUEyt88KxX6rrUidWrYJfRcFBpXtTxb4swmdYL
/h7Q7ODiUl5RCUdx4SWb05mMKxUEQj/gWWaqSJfURx9w4Y14d/yT7sLBd0++
5VHs1J99/O7t25PjS60Ff/L0MabUW23a20OFXoyC5MLRqQNvU4aaJl+qhYMo
EO2Z8+sNjXOIpLDWNLhSL8IFyWbklXTlWdtK3pMNlXpWjCq0o4J4008PcbEj
cSN7QrRRCTBpG1e56gQB3kYzt1b7fxlXUSl2Bd5mkC5A+Lk0tk+Qb5l68t34
yZ1TT3ptQTgiWJYrn/83fwRc7/yw1Q8/xFKjd3O5SqzDn3EYYNhU7qNgG2BL
HEAmgq/QS5L028DNSUOdGIawtgPehCIk7IQUYUFgls9EIBm7AlYdexlCzXO4
udzUirJoNmAAhbksdUaxIhalNJp4y9gt71U22mFr8JWEJ0V2j86soOCGygrN
p2HWOqcxTj0sDavd27JXwt2XZaTtQ7Oy5A/iWCOIal6TG9XnCMcJBHwHwWy4
Fdg7Kisiw/Qq5iQz/9gPQw2I97DgboQj1/vQQVRPITsE+wqG3/s4aS5oMpiC
g0cVfbeWZavGVcoP/Av6StDtQkHe2ckFX7HCvkAaCq60wq0vNt9lzYFUzdc7
zCoTMihPNFQTMmi6CImFbJExtQxYx7mHhOJqxza4DXpoO/KoXQe3TSQ9/W0i
iarSMh0MgCzd9UR3yJrtlGNVxNPAycZ2eROSyAMlp0S7NBsZMjvTdVUTuYSN
VfisiwAgE27nnTWpI6w9nGirAiRvQmCKIfdsV/M2j6n9ahyA+ZuWxcrMSODx
vVLkDL+PxQjXWZ4WanxwZH6oRZf85z7u0t691YMKpJ37YqmndPYhVf9ZazaF
6qWMSr7B5BPvkPrqfjQzomuklXwXF27pVyrHBqU+SgsvA/IqPQCZ9NIVItt5
7Rbv3sV5khDVFx3oPZ0ca2R8EPq22ucVHl2xsSjMYgSzIhjXRhnayEhLuunU
OyncyyVH/HM5j8f0w4hpWMS2TesXvO6jYnbnDdrMsxCmi5mo9/Y77xNxaA9H
hnKsqy9Z+5UPKfVHt6igrCL0YC5Odu30gYcoVxdiFxvyRE1zaCOBbmU3nKUQ
CAO4K0EhUKtaMKXVkuAor4qqbhDMWEmFo0OrpeWPv9ScoMPzRQYFN5OSWTFQ
piRl09UGZlqoCkuuSJJdqdrqqRYfSNNbd0UehMoGhqvslEnDMjjnVmAfF4vB
VT9jmI7c/gxn0fCd7mK2LfeclDM/rDIorEF44tAiH2zTmv+RpHEDTFyv4nyX
N2kBP+fplu8YfCeOj7t6q63l7w5PyWfecT9ymUwd3tLdfrKRYAD5iJWyJwq4
bs8mNR0c+cvNCzZHjcJXagDZHMZqyd1I5Tyap1GLBSV4y71PTAxpIiTouRyb
W0Fxq6/l32UruZBSh0g07Xt7YguTRgMpl+g8WyaOu9E8kvbXeQd4RoLb7zIJ
lMs8diJ0yw72l9fWjUZdw6oGeUGfczMD5eHbC+B1Sn7Hf2OFtLY5rQCQmb7x
M117JvFL3l91GMapa8+Ab3EVSFwbp17y4G8UjyXbl1RvhC2Qb87ofxCHaRjB
9CJCxPc0BuzTQzXybG7cKB5d8VlaP5kFVuqzsOM6olJaLugHGU7RNJzPIjp7
kYGgcC3zmJzPG5qW5esOZ+V0vWRO9qOxQvuiBwr0MaafaywE4d5GYTNqI6Ij
qzPj7sEnVI5oJu16ZUMbuq+gWz/WmdB8VlHCaOibT4kdrdA+3inO7yRKKlk7
nmWq3A80WLmuh+h8imuJLplQNSCdiuNDIBsUXL/G+Tg0aa7b+aRQHIyCmBnk
qQTwJcwVyVUqFOALBViB+wsFS5gHyt/31MigIZESHmPUqDCgtYhLiuKaYiNq
esKHyx6DF7mlR2oKsmqA02+NAm5R4vT4zVmij6eSDzKTa2m+NFEMrvlZWWJV
tyPUp4cr+swDF39mCNtY07giN4pOK4yU2VA+Bnlf9uYB6FpHHOwuOsYCkeoF
Ptf/6uyjO6YEUS1daNkN2FqtoUHRJVoEqrO+uPKHJh+xYyG8V2c2C4tiyj0g
+eN7llIQp5A5c8M9QNFoIazxEwOCN7dgQH+a+9lDI06WW4ROUYtx5WnyoMMA
D0KLVl5wAherw2PQeBqGVOs9ddZIWAeoqQnVWyBJGwUac/jRQ8Via3OzZoyp
cM5DckfILYgL3F547ZLIGJ63Lvf+WVP3KHON6gd9TZy9OPyy3NQaiHgkgVeF
aaWieK1s1bqQ3mOiF9aSbcgKRmtrB0OxZn3buqUlM10QzAf9igdqO9aZlinc
lse7eY7KrxWWKmXsAQWRxymt2hemJ0CqV6icZRHsSkrYkBpZlh4EzR1Kd65a
3ZJneLtjnpNhRRFueEZSTtGfHgrumu3t6ZnW/AumesBkkKkb1CUpEw30Kx1N
2Qru3H0yu8F1Mbo6AAmn2sCks/NoNZqkCO/FNSewsGq9Clv1IVftSb/l2T+k
Ij+0C1qcC+mT/mwJBSnoQfy0YYJGIlVh9znBmK5cyP6Wuyhcn5VNW8cEnPm0
2yqFw71jAJDUfPewFP/y30sRxl9RX6cBTmxVwlEm0oTr1pz+keDdlX3R24gZ
8M+uXjAm4uyqtUzESkRNS3ZBD3S7KD1F0eqn5bCfHSIA2pbx4tiCTZgYBwp+
PKVBkhhxsykUYpq5dh3yQuheyubrwhidGFAS9FQrLg7FmhGCZOimzrrAyQfY
CSnJV70lMTs2RVVcvuru71xxLFOWVn1XTNKDTkUTtKjKRbA/FP3n0srMQ7h4
4ZZMxnw5wbr3WUZMN05OQuUk1Y8f4sE4QfunwCHeFPm1l1gXq8X6+loaEWnV
+sGEx9J+T+4E3htUvoDu0Ih3raZgZNkUqV6JzkRLG23xBk1RmVHfgNlIMCYm
uegCoK7O49VLvucSSfm+NH1VpbO8jJ9a5QKCAkSlQ8nZLvh7DeyxsCMhL4CR
LklnVNlfS6pg1FK4MJUKq92CVOUCP7CRUaP2Tl5EJgm48ZgxXBKXrWsHu8to
I5o0T3vEpEBAaxNYagy2QSKQdPfy4QvdaorkX1/jG3FAm+EYvfGQKwC8HYIw
8ahl/QtrbZkOvk3S/gPLp5BLLiOserVMOimpdR4D7jlPiFfZzQtiWeA7hUPt
xz3Epmb5ws/OSBL3Qn3JtHPENJplvc2KR25WEWGAZa6wVUencKFtqXk5beej
82bKkEhLHcVoNIfsDtVxzWPBbgGlIVNUUTYncEDfhzQFIs9MG22e1S2QQlvU
jFgyh5WrrUU6akv9E3oJBCatvb690IYdku7UqQMN+xVtL9BqOricEGc3Yc2y
gwzE9TkISVqWjWCA12akKCt3NMeGtC76+3mbQ83d5XhIO2Jwf2XM23nVmiHO
bM0yswx5b2UHnclcFOWaI6n+G4kyyrawRdMqPlV7shW4BOEnxVVOFKITu+v9
f7Os6OByGtHYDKDv7Ttm6CLMCnPD3jQcpJjtW6fagX99fS1BPyfLBfOBHkHW
T6tfNu2LF3zqiRd8/hJ/H2vaIic9PvHyNvgUmkq1TYIFSStGIpXz97rh/rWk
5v2+BtRdgDQSwJD3ofiAfzd6mrqCjNho++x0lbuDvntMdamAZ3e7b94Txxpo
umB2vZGYK2qRrRwcLUJRMrjRwqwD7biIDfcAorgz8XEp8TbM5pG04MLiK0Ss
zrmTWIfhxCXHPOPu6mhSYr1m36/tIRHs4bBT3s31hRT2zRs1SVoBNCnG5sm8
i1KaydMJqfPUpUkIC6Rh6GTB4dDuMUbyqJU1t4xcxb1OrtcpkK/JwO+V+AU1
oyuqdvGbR1+H0Ug0/vkuxg093zL0A6sx/PzpRouh0+QllWtLhd56RY6qbqbE
cS2FTnT89OntydHlCJXlSEZ6UWvRw+QYbX9qu2kyrMHdlGT9dsJYX2FtJc/X
GPZYlN2WLQHQ4Gp2UoY5JlE2No4Anzvgrw1ZTSvS5mvsk9zedjNbixk9Yi+E
C+WkAgj8W7bCJPo6Tz+UlWAI3tRaNB4NtbKRtARVkysiXI1FuEIhXql0zrVH
pQQlb2FK6wZrDWYfbsfR1Kye4Xbzk6WOo6XhFVNYAQcolYNwFlV3eZYZ8EFU
Taw5icPPczXJU7f/g5uybgpCFdBA1B7iePDxhlO374wZV1KILjXmQ8EVBSNx
KrFkElzkBaNnKpANTR5kaVD8AzID1xN0IB30DMfPLTwojISe7GBwUboBeAIL
QRk1tAhHmHiQC1j2yIujRyaUy7VjzCimbasN4/MitAeNuMYnMfQnWbMkHAd8
QGQGzR0jazmrQFgOwS4pFS5OZknnYkXTYMoWWwzM50Ynjb9cxXRRZxw7j1Ev
vXh7EXsAdBkeI4TVnDkcj72QREOPDeGY8uyDFpIdERsdwX8QVhVTUvvDDvel
lHdDSM3X6DHsXV6+3sfeHz+WVg68sRitZM06u1vzkdZWAYBvIsuueEbDGN+R
iskpqqHnJAgiPTG+9l6e66Eeo4nw6FZT+xbfrdY3Y+AReiTiehslBceFLkaZ
DawVz5wwudLeKd+XzEMkuK9kqyxkj14Edhsp2KFuaW9X6LBLi1aH71cRCJsa
uJrdCV0eLTyhHgzL29KHhoNQpPBCI/0lA9hQ8pVX2sLcN8SFgHmtGcFmlLfs
ZnTH5GkB0Eqrz3pBdmALjnxCzfc6bqn4IJVDqQY1W9s5GepkpklMqeHJCktQ
JXi02eOeAAjP/gzjMXBFU6eBBnTu/HWIq6hQdXQxy/adP7H7D/D+TnbKuY7X
FV8rglC4yorZKT80iPDk/DR4wgLPSTHPcyzdrUo7kFPCZaptKgEh7w7ABX6v
444IZA/rB8iPciBIaBpevnyn502Uglc+ohFOC/Mq/ZwhRWPaHijW+H6odk69
dhshTgQBe/AuY50rWjI0h0DFmj2tm7kZJxcSF7Ilu9GCKoiuUzwz2Uwz3nRq
WslXZ9MoggOcq1nOcRosjQKhUvuUargCnsQQTGQikZp4NyHZNkvOqaD4sspX
JMfhq62iCEFciulm10+o/KxG1Ei0NznCnFP2TF5V2JCTL1k10lNNpMMadjYE
wEUuMB5NwTyK2PLIlJm9XbDJqBBP8Fs9cTuWjz3UOpTTGuGfGWTKlDpH/jl2
YA/RSzjUvBSGVrvDRYG2W0bj5IesppmFXXYcahEBewt4jqhOiBx4Anzr8Ol2
LrWZYPT+PAFbApkI0McxbnRDqDrPk4wLL7gYiSPimIZaSuMVR+apRpHTApOq
TGcETkbPCPfhwBK5tATsvREYuNJHzEGv8EwgtBHZf3Jevpy3G8SWEFZVHF2J
xK/WjUviCV6IG7FA3qlFZ3CZt/mMRtAfdbSQ8AorCMozuPmfPMtCnM9hrGR7
FGpQpBI7apnloWNxxbna5EQxAuUTZj72qBRxJJ3RzhEECQF4wePQIvUMRxMf
iJHqaHqCtLBSlxq/DUscShqH9lFCR/v0yb77/HnfIU70PE99oBgp75JMzRRk
ERFe/Upv3Pqb8PHlw9Q/iIDmSNuW0u9Bt8pIxO6k1lbUbbuA4vBGu2Fehz/0
QVMODUEZCwlnYpxRtQqi9JecbMSX3QPyV6S/OEq9v0vMsDe4YnXosBXaS1No
dJuiQwUOYDZP32MZ1zsmF0sSDDPzoWpJ+HCe4JCj5STzUV3PiAo7Olg2IEJ+
p+P9EOPphnLf1ASOSXbYGjYWyavgjd2FWy6jIqlayyIafPDJb5Q3o64CKnVJ
yoWVXouRToPupzj2boan8NFthkEoYEPuAf3u8bPHnz+HcbFWLckiCkEUJRaP
pDiW8pgfqGXLSzQ73N7uss5YQSGhkIsNNQ5WpjHRcVRQeZ+aS3D/YtdRIV49
vNYXAMxylw4FQkaK2oK2r4SNxgP3h0CPOfumop2Ex6TimbQsXAWaFWujNTz9
QVOuHihvtxDG4ugHBZxlNr38XnpKDV5Ialt9nWfvYtoxSmsd4CZXhyAWE5o9
Cyw/4TLXY60JKIDhxsmZxiKFFx0x+CdILLK0wqoWdGX8t7PSpPAhJOq08Msw
I7qlclQCxdB+UlLkO83v8C3HYXWYqrJ/JnuCzbDAsPiDwPJmZzzYd+sOC965
zh0L3Cat2aYLPxenhKFYFeZZsTY4N06OmcxZQ+94kvOGc7oJnIw5Hs0wsmDG
mCogPmBp02iPgTpvXIWcJ1X/544mBM7qC75JVvX8kldJ9ObtbgJ2Hs4zJLyz
AMDqfS6yqChBqj5bNIqRh6jbcD9QQ3irFviQDoQPAyzxB8Z4RnqsCHTg+bW2
+7kDQhPLfwZ52H847Gs7GD+EEdhj/0f3SAimIRbUdAc3iIAQtMOUCp9MmdAc
nHmIuoNYoFCcMQXu8gsZkDG2f/kl8LN7nqsjTTCgFczbaNIf6UHaEEGzlpke
e3RieZLCvkHgx20ZxH/afG8gjoHDNGPZXZiH/Km1jtW6tKSrz/XT+GFVuhZ4
pFjb+gBu5jFHTpQHn217A0Us5LtRxQrPzSMEEODVIdWFc/FrusqbdGHBthnQ
ZI8Txg8EyGGMuRUQNhWPy5FUZegdiOtqKLRIBffM3M94LOB/cSOkX1IwkieR
dsBfMEFfa4o86nGQPH14cF7EvRkS/yKZxA9/2n64tP/3ffsMM7qsrgRWz2MB
WOtBBPjKpyqKK4sY6G3HcGoSk6aZluCGZXz3BBdJPgD8GC3wj8kL/n57R/Qh
S5qUgvw0cyQvwuVHndvzVnfcLxwQbWgtuIt1s0E7gMhK2Xihx/atHXBpr3aQ
JNFcbdPqZtlEaH1hgQKP03NBG4uTRnFIBNDaVjBKhqEZmwIjNgwGNRcyoujT
J6WP5upG+jUn7R6SXfPpYTNdfR4MIqPiMKiQwcAk6qGXngPfafaOxPvh4JDj
1z119xjKxfB4TQi6ZhzF9eiiJahigadg4C31jKL1lBwDV+Gb2pyMK/bNxaoO
5Ww0VIRhK2QaD3lQCI2F8mxoKBnwMU6k6K8scUvRgRytJTGrGZhAckUVfyKo
rsDnpmLHLpi9dqeT4Ox7BWFTWNuwC/AuqAyESYYLOupcrchn1sfd3FRZNkKk
jWDoxNO+TrxNRCl4vPVLGQWHtqnfCc1UYJTklmYvICw596v0GFyE5DY2r4XR
tNlJDaY+tfdjVyv6yxeXkqcjEkn9GeWhw3ScyHJo1Q/g4qkzM+rExGXTkm2t
Ue/cNCKhr9ENjWCWNg4Tz3CxUa4clvOayi5wFa9PLy5P3rYYmL++MgdjkjMY
TuBRieLg6Xe8zB3AitCArKtDZGkB+PA6IoZ2COvx5Acbzr32MsXjU2pjnA2b
YMi6klel+vzweFGr8M/R0fFP+GiwAfnk6rvSJ1tOKlWDKQpQhBKGeVMwnsG4
E4RuwevQkuKoEaWdrNDW1hlF/VHqVYLqgXVqbkFFchL4I8qwixvRTs7QWD/t
0EDVgikzy6E13aWZ9YAzdU3X0yzkMwRiy5vN1TAEW6In+tFDii2NYQzqgEsJ
24Fu3d+EKz6thOqassQOAFerwiNJitKOU29lY7RQ7qtFv9sl//kco5DbUsdB
tvH2qhUMddKQ7yQafyvVMwbkqKE+5MGavDAyQf22gz2C6L5ZUPEUXNqLG042
4jjZjwLOPNwFY2hi9VJQ2+HC8ZRMei+ZQ+MHT2tIb4qhuJrZWyI90xIHSJCd
hBud10s2gVw3FGhs7L88fvfz2evTt68YbkxA4A6eyKxZ1UAXJ29fBDlstYfc
Ikkeig6h651BZyeTox12MJ34o0EWFl7nQXIybxR+SJpTnB0/54SDgjw7W5qL
j9yEPxlEBUL0JeE7kQTieiQSzDobK3l5+jaorp7Jtqy0cKRhhQOi0Avf0Pkm
T/n1u4sTUs75cpnNcprGyRVOEpelgrFQyIb8GSjqhhHpBKq8iKeUxm/hSv4C
0GQLb1PxzluQmxFMCs2QEXjERmC5rRjNCX+yHcLkzv4aN92psKVkMNAdkIPQ
nknOT45PTv9ItGLVaPDY5sraGEG/zYZWEW30QhBJw1uKEaPASDLZWP86Y/dN
SaRI5AEPRMoReCWjW487pQFK2QveiL01B7u60Hs8J3V/jJadoZ3YE1tQx0o6
Jw1vCCdSXFtmzz1is9HJH0/ekkm037IAHB/hla6RHa/+d+GZnsRJFM9iZV13
lHW9RVlrbbqbtOq+Damg0PTNfDkTYjGZJhs3+RdpoQ43Ue20cZ2z/ybHgKJ9
LVIrJ+SgV1CSK4pWvGuY08PbRvSSgtZ/hF5eTAnBIiKheemIlOwd/fDunJlO
t5BMk+4+0sf9i/NbktdSVYG2Z1OaJHXMQJrZN23z6Gf08nvqT1rlimw4CfW6
Sw0fb1lqeN/tSw378LssFfxjgrP4La7x5fbinyjnQQ/gdId/JdJC8h3CD3pr
xNXHB4yKgbomvlODqq3bXSnDCLqfboh96FbXGrycq6PZjL1hudU5ZdHkIybQ
zy+2kkfyDhGNNOy5JXaAgCF+fwxLjrKGOZWrWw2q7+hgR4mOe+lCDVviCPCY
7XGEeA33iSNYbweKcod8utEswJYYAgcGOKvQ82S7JQfAC5n8S6HTFEPsLMai
MELkycbBAMF/j2MGrUd2YwZinrPyk2xux0PlDBa3EOhIzG3BlP4QQ3vj0dym
QHaMT+QyoUwi9sO1kn6OWQ0zUgUFnV6gPzZw91N9QosXkBfW5E9+pMgccizH
yd47LrxCW2PYe/8YdamLEZLsnZyfvztHHt0j0Jz9/aCLONhAsCCMhqkRWh11
DN/OOVpjwk1S7OP9nnhEfBB8PAKX/tviEXilDgK/V0QCL/itEQkxxzTbJqCU
eFmX83YHJdrH/jcGJUj2+D2PClX9bNi2Kxc2vN85wwVG0bRCYGkVL45bDTaL
UkfeWtbFbwmmWxj3LMBKqxdjEkcwDUDmNNTsLKyk9/iq1qJxeGmCGw2Gin+W
jHCxtAKBvLGsni/Sa2NRkOQCA6e1e+wzL4BBkhcXoAT3Lk4u/4L/8udimLx4
ibc4PfvwTH7xMjo3+KCT47f0MP4B/OV/EftD6gr5ncDXIZFgbpFR1eiHYsDc
G5mmCBugaRbLD5g3o/QJDJzrDnMkT6jq44sxXZFq9mbmdHToWE6wcgmN71e9
L7/b9G8dCTHBPIFxZ1NDMwxiglWFGyPhbkNWPRnZdadB7E7r+u4l3WHHDiUE
12uOh8GXW3vRsJyLO8XSom/597XE/+EX+Xc3yP/zrJjNTnrqb7M972uc61O6
9jkpTlcKPhzYb62Nj9z5ZX19fJNN39cEECx2NJzrD9GnIWA70HFb5W1PZ7j2
8lDGT5A8i/VyklUhSJP7CTR4t4HOnCDBynEEKuWayhKMpFxtMsUck8iz39G2
9zH23mdFmv43WP7jhN16q7jobVVXxDntV18XUd2OSOSrMKz+NYk1q4zU66mS
53pdheYkbohw3SqM/0H4tC0/ZIfr0SVL1xmh6LrEC5KrrkV9RaTgVlZqPA01
fEgFrSDszWu2l6Zf/scsseWq7HzyHc5L21QMgTFgjYrWyTuoDLXTWdm1knj8
Rd/Le3udDjyiuLCeX9qNeTVzxnLI555bZKwSNS/2+DV4DMho6SqxkBQjEXAf
orY8Hnwl5/T0pTl3uxXd53UdjeFv9TJkqq+aF4GaGA8gMgPjIYpmp+RZC0b0
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
X3VLVmu+ngEA

-->

</rfc>
