<?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.7.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-interface-25" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title abbrev="TAPS Interface">An Abstract Application Layer Interface to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-25"/>
    <author initials="B." surname="Trammell" fullname="Brian Trammell" role="editor">
      <organization>Google Switzerland GmbH</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <author initials="M." surname="Welzl" fullname="Michael Welzl" role="editor">
      <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>
    <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="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>Scotland</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>http://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <postal>
          <street>Ericsson-Allee 1</street>
          <city>Herzogenrath</city>
          <country>Germany</country>
        </postal>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="C." surname="Perkins" fullname="Colin Perkins">
      <organization>University of Glasgow</organization>
      <address>
        <postal>
          <street>School of Computing Science</street>
          <city>Glasgow  G12 8QQ</city>
          <country>United Kingdom</country>
        </postal>
        <email>csp@csperkins.org</email>
      </address>
    </author>
    <author initials="P." surname="Tiesel" fullname="Philipp S. Tiesel">
      <organization>SAP SE</organization>
      <address>
        <postal>
          <street>George-Stephenson-Straße 7-13</street>
          <city>10557 Berlin</city>
          <country>Germany</country>
        </postal>
        <email>philipp@tiesel.net</email>
      </address>
    </author>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <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>
    <date year="2024" month="January" day="30"/>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 117?>

<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 network paths and potential transport protocols.</t>
    </abstract>
  </front>
  <middle>
    <?line 129?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an abstract application programming interface (API) that describes the interface component of
the high-level Transport Services architecture defined in
<xref target="I-D.ietf-taps-arch"/>. A Transport Services system supports
asynchronous, atomic transmission of messages over transport protocols and
network paths dynamically selected at runtime, in environments where an endpoint
selects from multiple network paths and potential transport protocols.</t>
      <t>Applications that adopt this API will benefit from a wide set of
transport features that can evolve over time. This protocol-independent API ensures that the system
providing the API can optimize its behavior based on the application
requirements and network conditions, without requiring changes to the
applications.  This flexibility enables faster deployment of new features and
protocols, and can support applications by offering racing and fallback
mechanisms, which otherwise need to be separately implemented in each application.
Transport Services Implementations are free to take any desired form as long
as the API specification in this document is honored; a nonprescriptive guide to
implementing a Transport Services system is available <xref target="I-D.ietf-taps-impl"/>.</t>
      <t>The Transport Services system derives specific path and protocol selection
properties and supported transport features from the analysis provided in
<xref target="RFC8095"/>, <xref target="RFC8923"/>, and
<xref target="RFC8922"/>. The Transport Services API enables an implementation
to dynamically choose a transport protocol rather
than statically binding applications to a protocol at
compile time. The Transport Services API also provides
applications with a way to override transport selection and instantiate a specific stack,
e.g., to support servers wishing to listen to a specific protocol. However, forcing a
choice to use a specific transport stack is discouraged for general use, because it can reduce portability.</t>
      <section anchor="notation">
        <name>Terminology and Notation</name>
        <t>The Transport Services API is described in terms of</t>
        <ul spacing="normal">
          <li>
            <t>Objects with which an application can interact;</t>
          </li>
          <li>
            <t>Actions the application can perform on these objects;</t>
          </li>
          <li>
            <t>Events, which an object can send to an application to be processed asynchronously; and</t>
          </li>
          <li>
            <t>Parameters associated with these actions and events.</t>
          </li>
        </ul>
        <t>The following notations, which can be combined, are used in this document:</t>
        <ul spacing="normal">
          <li>
            <t>An action that creates an object:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action that creates an array of objects:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      []Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action that is performed on an object:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object.Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An object sends an event:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object -> Event<>
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action takes a set of Parameters; an event contains a set of Parameters.
action and event parameters whose names are suffixed with a question mark are optional.</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Action(param0, param1?, ...)
      Event<param0, param1?, ...>
]]></artwork>
        <t>Objects that are passed as parameters to actions use call-by-value behavior.
Actions associated with no object are actions on the API; they are equivalent to actions on a per-application global context.</t>
        <t>Events are sent to the application or application-supplied code (e.g. framers,
see <xref target="framing"/>) for processing; the details of event interfaces are platform-
and implementation-specific, and can be implemented using
other forms of asynchronous processing, as idiomatic for the
implementing platform.</t>
        <t>We also make use of the following basic types:</t>
        <ul spacing="normal">
          <li>
            <t>Boolean: Instances take the value <tt>true</tt> or <tt>false</tt>.</t>
          </li>
          <li>
            <t>Integer: Instances take integer values.</t>
          </li>
          <li>
            <t>Numeric: Instances take real number values.</t>
          </li>
          <li>
            <t>String: Instances are represented in UTF-8.</t>
          </li>
          <li>
            <t>IP Address: An IPv4 or IPv6 address <xref target="RFC5952"/>.</t>
          </li>
          <li>
            <t>Enumeration: A family of types in which each instance takes one of a fixed,
predefined set of values specific to a given enumerated type.</t>
          </li>
          <li>
            <t>Tuple: An ordered grouping of multiple value types, represented as a
comma-separated list in parentheses, e.g., <tt>(Enumeration, Preference)</tt>.
Instances take a sequence of values each valid for the corresponding value
type.</t>
          </li>
          <li>
            <t>Array: Denoted <tt>[]Type</tt>, an instance takes a value for each of zero or more
elements in a sequence of the given Type. An array can be of fixed or
variable length.</t>
          </li>
          <li>
            <t>Set: An unordered grouping of one or more different values of the same type.</t>
          </li>
        </ul>
        <t>For guidance on how these abstract concepts can be implemented in languages
in accordance with language-specific design patterns and platform features,
see <xref target="implmapping"/>.</t>
      </section>
      <section anchor="specification-of-requirements">
        <name>Specification of Requirements</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="principles">
      <name>Overview of the API Design</name>
      <t>The design of the API specified in this document is based on a set of
principles, themselves an elaboration on the architectural design principles
defined in <xref target="I-D.ietf-taps-arch"/>. The API defined in this document
provides:</t>
      <ul spacing="normal">
        <li>
          <t>A Transport Services system that
can offer a variety of transport protocols, independent
of the Protocol Stacks that will be used at
runtime. To the degree possible, all common features of these protocol
stacks are made available to the application in a
transport-independent way.
This enables applications written to a single API
to make use of transport protocols in terms of the features
they provide.</t>
        </li>
        <li>
          <t>A unified API to datagram and stream-oriented transports, allowing
use of a common API for Connection establishment and closing.</t>
        </li>
        <li>
          <t>Message-orientation, as opposed to stream-orientation, using
application-assisted framing and deframing where the underlying transport
does not provide these.</t>
        </li>
        <li>
          <t>Asynchronous Connection establishment, transmission, and reception.
This allows concurrent operations during establishment and event-driven
application interactions with the transport layer.</t>
        </li>
        <li>
          <t>Selection between alternate network paths, using additional information about the
networks over which a Connection can operate (e.g. Provisioning Domain (PvD)
information <xref target="RFC7556"/>) where available.</t>
        </li>
        <li>
          <t>Explicit support for transport-specific features to be applied, when that
particular transport is part of a chosen Protocol Stack.</t>
        </li>
        <li>
          <t>Explicit support for security properties as first-order transport features.</t>
        </li>
        <li>
          <t>Explicit support for configuration of cryptographic identities and transport
security parameters persistent across multiple Connections.</t>
        </li>
        <li>
          <t>Explicit support for multistreaming and multipath transport protocols, and
the grouping of related Connections into Connection Groups through "cloning"
of Connections (see <xref target="groups"/>). This function allows applications to take full advantage of new
transport protocols supporting these features.</t>
        </li>
      </ul>
    </section>
    <section anchor="api-summary">
      <name>API Summary</name>
      <t>An application primarily interacts with this API through two objects:
Preconnections and Connections. A Preconnection object (<xref target="pre-establishment"/>)
represents a set of properties and constraints on the selection and configuration of
paths and protocols to establish a Connection with an Endpoint. A Connection object
represents an instance of a transport Protocol Stack on which data can be sent to and/or
received from a Remote Endpoint (i.e., a logical connection that, depending on the
kind of transport, can be bi-directional or unidirectional, and that can use a stream
protocol or a datagram protocol). Connections are presented consistently to the
application, irrespective of whether the underlying transport is connection-less or
connection-oriented. Connections can be created from Preconnections in three ways:</t>
      <ul spacing="normal">
        <li>
          <t>by initiating the Preconnection (i.e., creating a Connection from the Preconnection, actively opening, as in a client; see Initiate() in <xref target="initiate"/>),</t>
        </li>
        <li>
          <t>by listening on the Preconnection (i.e., creating a Listener based on the Preconnection, passively opening, as in a server; see Listen() in <xref target="listen"/>),</t>
        </li>
        <li>
          <t>or by a rendezvous for the Preconnection (i.e., peer to peer establishment; see Rendezvous() in <xref target="rendezvous"/>).</t>
        </li>
      </ul>
      <t>Once a Connection is established, data can be sent and received on it in the form of
Messages. The API supports the preservation of message boundaries both
via explicit Protocol Stack support, and via application support through a
Message Framer that finds message boundaries in a stream. Messages are
received asynchronously through event handlers registered by the application.
Errors and other notifications also happen asynchronously on the Connection.
It is not necessary for an application to handle all events; some events can
have implementation-specific default handlers.</t>
      <t>The application SHOULD NOT
assume that ignoring events (e.g., errors) is always safe.</t>
      <section anchor="usage-examples">
        <name>Usage Examples</name>
        <t>The following usage examples illustrate how an application might use the
Transport Services API to:</t>
        <ul spacing="normal">
          <li>
            <t>Act as a server, by listening for incoming Connections, receiving requests,
and sending responses, see <xref target="server-example"/>.</t>
          </li>
          <li>
            <t>Act as a client, by connecting to a Remote Endpoint using <tt>Initiate</tt>, sending
requests, and receiving responses, see <xref target="client-example"/>.</t>
          </li>
          <li>
            <t>Act as a peer, by connecting to a Remote Endpoint using Rendezvous while
simultaneously waiting for incoming Connections, sending Messages, and
receiving Messages, see <xref target="peer-example"/>.</t>
          </li>
        </ul>
        <t>The examples in this section presume that a transport protocol is available
between the Local and Remote Endpoints that provides Reliable Data Transfer, Preservation of
Data Ordering, and Preservation of Message Boundaries. In this case, the
application can choose to receive only complete Messages.</t>
        <t>If none of the available transport protocols provides Preservation of Message
Boundaries, but there is a transport protocol that provides a reliable ordered
byte-stream, an application could receive this byte-stream as partial
Messages and transform it into application-layer Messages.  Alternatively,
an application might provide a Message Framer, which can transform a
sequence of Messages into a byte-stream and vice versa (<xref target="framing"/>).</t>
        <section anchor="server-example">
          <name>Server Example</name>
          <t>This is an example of how an application might listen for incoming Connections
using the Transport Services API, receive a request, and send a response.</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("any")
LocalSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserveMsgBoundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
SecurityParameters.Set(serverCertificate, myCertificate)

// Specifying a Remote Endpoint is optional when using Listen
Preconnection := NewPreconnection(LocalSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Listener := Preconnection.Listen()

Listener -> ConnectionReceived<Connection>

// Only receive complete messages in a Conn.Received handler
Connection.Receive()

Connection -> Received<messageDataRequest, messageContext>

//---- Receive event handler begin ----
Connection.Send(messageDataResponse)
Connection.Close()

// Stop listening for incoming Connections
// (this example supports only one Connection)
Listener.Stop()
//---- Receive event handler end ----

]]></artwork>
        </section>
        <section anchor="client-example">
          <name>Client Example</name>
          <t>This is an example of how an application might open two Connections to a remote application
using the Transport Services API, and send a request as well as receive a response on each of them.
The code designated with comments as "Ready event handler" could, e.g., be implemented
as a callback function, for example. This function would receive the Connection that it expects
to operate on ("Connection" and "Connection2" in the example), handed over using the variable
name "C".</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
TrustCallback := NewCallback({
  // Verify identity of the Remote Endpoint, return the result
})
SecurityParameters.SetTrustVerificationCallback(TrustCallback)

// Specifying a Local Endpoint is optional when using Initiate
Preconnection := NewPreconnection(RemoteSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Connection := Preconnection.Initiate()
Connection2 := Connection.Clone()

Connection -> Ready<>
Connection2 -> Ready<>

//---- Ready event handler for any Connection C begin ----
C.Send(messageDataRequest)

// Only receive complete messages
C.Receive()
//---- Ready event handler for any Connection C end ----

Connection -> Received<messageDataResponse, messageContext>
Connection2 -> Received<messageDataResponse, messageContext>

// Close the Connection in a Receive event handler
Connection.Close()
Connection2.Close()
]]></artwork>
          <t>A Preconnection serves as a template for creating a Connection via initiating, listening, or via rendezvous. Once a Connection has been created,
changes made to the Preconnection that was used to create it do not affect this Connection. Preconnections are reusable after being used to create a Connection, whether this Connection was closed or not. Hence, in the above example, it would be correct for the client to initiate a third Connection to the example.com server by continuing as follows:</t>
          <artwork><![CDATA[
//.. carry out adjustments to the Preconnection, if desired
Connection3 := Preconnection.Initiate()
]]></artwork>
        </section>
        <section anchor="peer-example">
          <name>Peer Example</name>
          <t>This is an example of how an application might establish a Connection with a
peer using <tt>Rendezvous</tt>, send a Message, and receive a Message.</t>
          <artwork><![CDATA[
// Configure local candidates: a port on the Local Endpoint
// and via a STUN server
HostCandidate := NewLocalEndpoint()
HostCandidate.WithPort(9876)

StunCandidate := NewLocalEndpoint()
StunCandidate.WithStunServer(address, port, credentials)

LocalCandidates = [HostCandidate, StunCandidate]

TransportProperties := // ...Configure transport properties
SecurityParameters  := // ...Configure security properties

Preconnection := NewPreconnection(LocalCandidates,
                                  [], // No remote candidates yet
                                  TransportProperties,
                                  SecurityParameters)

// Resolve the LocalCandidates. The Preconnection.Resolve()
// call resolves both local and remote candidates but, since
// the remote candidates have not yet been specified, the
// ResolvedRemote list returned will be empty and is not
// used.
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()

// Application-specific code goes here to send the ResolvedLocal
// list to peer via some out-of-band signalling channel (e.g.,
// in a SIP message)
...

// Application-specific code goes here to receive RemoteCandidates
// (type []RemoteEndpoint, a list of RemoteEndpoint objects) from
// the peer via the signalling channel
...

// Add remote candidates and initiate the rendezvous:
Preconnection.AddRemote(RemoteCandidates)
Preconnection.Rendezvous()

Preconnection -> RendezvousDone<Connection>

//---- RendezvousDone event handler begin ----
Connection.Send(messageDataRequest)
Connection.Receive()
//---- RendezvousDone event handler end ----

Connection -> Received<messageDataResponse, messageContext>

// If new Remote Endpoint candidates are received from the
// peer over the signalling channel, for example if using
// Trickle ICE, then add them to the Connection:
Connection.AddRemote(NewRemoteCandidates)

// On a PathChange<> event, resolve the Local Endpoint Identifiers to
// see if a new Local Endpoint has become available and, if
// so, send to the peer as a new candidate and add to the
// Connection:
Connection -> PathChange<>

//---- PathChange event handler begin ----
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()
if ResolvedLocal has changed:
  // Application-specific code goes here to send the
  // ResolvedLocal list to peer via signalling channel
  ...

  // Add the new Local Endpoints to the Connection:
  Connection.AddLocal(ResolvedLocal)
//---- PathChange event handler end ----


// Close the Connection in a Receive event handler
Connection.Close()
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="transport-properties">
      <name>Transport Properties</name>
      <t>Each application using the Transport Services API declares its preferences
for how the Transport Services system is to operate. This is done by using
Transport Properties, as defined in <xref target="I-D.ietf-taps-arch"/>, at each stage
of the lifetime of a Connection.</t>
      <t>Transport Properties are divided into Selection, Connection, and Message
Properties.</t>
      <t>Selection Properties (see <xref target="selection-props"/>) can only be set
during pre-establishment. They are only used to specify which paths and
Protocol Stacks can be used and are preferred by the application.
Calling <tt>Initiate</tt> on a Preconnection creates an outbound Connection,
and the Selection Properties remain readable from the
Connection, but become immutable. Selection Properties
can be set on Preconnections, and the effect of Selection Properties
can be queried on Connections and Messages.</t>
      <t>Connection Properties (see <xref target="connection-props"/>) are used to inform
decisions made during establishment and to fine-tune the established
Connection. They can be set during pre-establishment, and can be
changed later. Connection Properties can be set on Connections and
Preconnections; when set on Preconnections, they act as an initial
default for the resulting Connections.</t>
      <t>Message Properties (see <xref target="message-props"/>) control the behavior of the
selected protocol stack(s) when sending Messages. Message Properties
can be set on Messages, Connections, and Preconnections; when set on
the latter two, they act as an initial default for the Messages sent
over those Connections.</t>
      <t>Note that configuring Connection Properties and Message Properties on
Preconnections is preferred over setting them later. Early specification of
Connection Properties allows their use as additional input to the selection
process. Protocol-specific Properties, which enable configuration of specialized
features of a specific protocol (see <xref section="3.2" sectionFormat="of" target="I-D.ietf-taps-arch"/>) are not
used as an input to the selection process, but only support configuration if
the respective protocol has been selected.</t>
      <section anchor="property-names">
        <name>Transport Property Names</name>
        <t>Transport Properties are referred to by property names, represented as case-insensitive strings. These names serve two purposes:</t>
        <ul spacing="normal">
          <li>
            <t>Allowing different components of a Transport Services Implementation to pass Transport
Properties, e.g., between a language frontend and a policy manager,
or as a representation of properties retrieved from a file or other storage.</t>
          </li>
          <li>
            <t>Making the code of different Transport Services Implementations look similar.
While individual programming languages might preclude strict adherence to the
aforementioned naming convention (for instance, by prohibiting the use of hyphens
in symbols), users interacting with multiple implementations will still benefit
from the consistency resulting from the use of visually similar symbols.</t>
          </li>
        </ul>
        <t>Transport Property Names are hierarchically organized in the
form [&lt;Namespace&gt;.]&lt;PropertyName&gt;.</t>
        <ul spacing="normal">
          <li>
            <t>The optional Namespace component and its trailing character <tt>.</tt> MUST be omitted for well-known,
generic properties, i.e., for properties that are not specific to a protocol.</t>
          </li>
          <li>
            <t>Protocol-specific Properties MUST use the protocol acronym as the Namespace (e.g., a
Connection that uses TCP could support a TCP-specific Transport Property, such as the TCP user timeout
value, in a Protocol-specific Property called <tt>tcp.userTimeoutValue</tt> (see <xref target="tcp-uto"/>)).</t>
          </li>
          <li>
            <t>Vendor or implementation specific properties MUST be placed in a Namespace starting with the underscore <tt>_</tt> character
 and SHOULD use a string identifying the vendor or implementation.</t>
          </li>
          <li>
            <t>For IETF protocols, the name of a Protocol-specific Property MUST be specified in an IETF document published in the RFC Series after IETF review.
An IETF protocol Namespace does not start with an underscore character.</t>
          </li>
        </ul>
        <t>Namespaces for each of the keywords provided in the IANA protocol numbers registry
(see https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml) are reserved
for Protocol-specific Properties and MUST NOT be used for vendor or implementation-specific properties.
Terms listed as keywords as in the protocol numbers registry SHOULD be avoided as any part of a vendor- or
implementation-specific property name.</t>
        <t>Though Transport Property Names are case-insensitive, it is recommended to use camelCase to improve readability.
Implementations may transpose Transport Property Names into snake_case or PascalCase to blend into the language environment.</t>
      </section>
      <section anchor="property-types">
        <name>Transport Property Types</name>
        <t>Each Transport Property has one of the basic types described in <xref target="notation"/>.</t>
        <t>Most Selection Properties (see <xref target="selection-props"/>) are of the Enumeration type,
and use the Preference Enumeration, which takes one of five possible values
(Prohibit, Avoid, No Preference, Prefer, or Require) denoting the level of preference
for a given property during protocol selection.</t>
      </section>
    </section>
    <section anchor="scope-of-interface-defn">
      <name>Scope of the API Definition</name>
      <t>This document defines a language- and platform-independent API of a
Transport Services system. Given the wide variety of languages and language
conventions used to write applications that use the transport layer to connect
to other applications over the Internet, this independence makes this API
necessarily abstract.</t>
      <t>There is no interoperability benefit in tightly defining how the API is
presented to application programmers across diverse platforms. However,
maintaining the "shape" of the abstract API across different platforms reduces
the effort for programmers who learn to use the Transport Services API to then
apply their knowledge to another platform. That said, implementations have
significant freedom in presenting this API to programmers, balancing the
conventions of the protocol with the shape of the API. We make the following
recommendations:</t>
      <ul spacing="normal">
        <li>
          <t>Actions, events, and errors in implementations of the Transport Services API SHOULD use
the names given for them in the document, subject to capitalization,
punctuation, and other typographic conventions in the language of the
implementation, unless the implementation itself uses different names for
substantially equivalent objects for networking by convention.</t>
        </li>
        <li>
          <t>Transport Services systems SHOULD implement each Selection Property,
Connection Property, and Message Context Property specified in this document.
These features SHOULD be implemented even when in a specific implementation it
will always result in no operation, e.g. there is no action when the API
specifies a Property that is not available in a transport protocol implemented
on a specific platform. For example, if TCP is the only underlying transport protocol,
the Message Property <tt>msgOrdered</tt> can be implemented (trivially, as a no-op) as
disabling the requirement for ordering will not have any effect on delivery order
for Connections over TCP. Similarly, the <tt>msgLifetime</tt> Message Property can be
implemented but ignored, as the description of this Property states that "it is not
guaranteed that a Message will not be sent when its Lifetime has expired".</t>
        </li>
        <li>
          <t>Implementations can use other representations for Transport Property Names,
e.g., by providing constants, but should provide a straight-forward mapping
between their representation and the property names specified here.</t>
        </li>
      </ul>
    </section>
    <section anchor="pre-establishment">
      <name>Pre-Establishment Phase</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>A Preconnection object represents a potential Connection. It is a passive object
(a data structure) that merely maintains the state that
describes the properties of a Connection that might exist in the future.  This state
comprises Local Endpoint and Remote Endpoint objects that denote the endpoints
of the potential Connection (see <xref target="endpointspec"/>), the Selection Properties
(see <xref target="selection-props"/>), any preconfigured Connection Properties
(<xref target="connection-props"/>), and the security parameters (see
<xref target="security-parameters"/>):</t>
      <artwork><![CDATA[
   Preconnection := NewPreconnection([]LocalEndpoint,
                                     []RemoteEndpoint,
                                     TransportProperties,
                                     SecurityParameters)
]]></artwork>
      <t>At least one Local Endpoint MUST be specified if the Preconnection is used to <tt>Listen</tt>
for incoming Connections, but the list of Local Endpoints MAY be empty if
the Preconnection is used to <tt>Initiate</tt>
connections. If no Local Endpoint is specified, the Transport Services system will
assign an ephemeral local port to the Connection on the appropriate interface(s).
At least one Remote Endpoint MUST be specified if the Preconnection is used
to <tt>Initiate</tt> Connections, but the list of Remote Endpoints MAY be empty if
the Preconnection is used to <tt>Listen</tt> for incoming Connections.
At least one Local Endpoint and one Remote Endpoint MUST be specified if a
peer-to-peer <tt>Rendezvous</tt> is to occur based on the Preconnection.</t>
      <t>If more than one Local Endpoint is specified on a Preconnection, then the application
 is indicating that all of the Local Endpoints are eligible to be used for Connections. For
 example, their Endpoint Identifiers might correspond to different interfaces on a multi-homed
host, or their Endpoint Identifiers might correspond to local interfaces and a STUN server that
can be resolved to a server reflexive address for a Preconnection used to
make a peer-to-peer <tt>Rendezvous</tt>.</t>
      <t>If more than one Remote Endpoint is specified on the Preconnection, the
application is indicating that it expects all of the Remote Endpoints to
offer an equivalent service, and that the Transport Services system can choose
any of them for a Connection.
For example, a Remote Endpoint might represent various network
interfaces of a host, or a server reflexive address that can be used to
reach a host, or a set of hosts that provide equivalent local balanced
service.</t>
      <t>In most cases, it is expected that a single Remote Endpoint will be
specified by name, and a later call to <tt>Initiate</tt> on the Preconnection
(see <xref target="initiate"/>) will internally resolve that name to a list of concrete
Endpoint Identifers. Specifying multiple Remote Endpoints on a Preconnection allows
applications to override this for more detailed control.</t>
      <t>If Message Framers are used (see <xref target="framing"/>), they MUST be added to the
Preconnection during pre-establishment.</t>
      <section anchor="endpointspec">
        <name>Specifying Endpoints</name>
        <t>The Transport Services API uses the Local Endpoint and Remote Endpoint objects
to refer to the endpoints of a Connection. Endpoints can be created
as either remote or local:</t>
        <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
LocalSpecifier := NewLocalEndpoint()
]]></artwork>
        <t>A single Endpoint object represents the identity of a network host. That endpoint
can be more or less specific depending on which Endpoint Identifiers are set. For example,
an Endpoint that only specifies a hostname can, in fact, finally correspond
to several different IP addresses on different hosts.</t>
        <t>An Endpoint object can be configured with the following identifiers:</t>
        <ul spacing="normal">
          <li>
            <t>HostName (string):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithHostName("example.com")
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Port (a 16-bit unsigned Integer):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithPort(443)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Service (an identifier string that maps to a port; either a service
name associated with a port number, from https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml, or a DNS SRV service name to be resolved):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithService("https")
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>IP address (IPv4 or IPv6 address):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithIPAddress(192.0.2.21)
]]></artwork>
        <artwork><![CDATA[
RemoteSpecifier.WithIPAddress(2001:db8:4920:e29d:a420:7461:7073:a)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Interface name (string), e.g., to qualify link-local addresses (see <xref target="ifspec"/> for details):</t>
          </li>
        </ul>
        <artwork><![CDATA[
LocalSpecifier.WithInterface("en0")
]]></artwork>
        <t>The <tt>Resolve</tt> action on a Preconnection can be used to obtain a list of
available local interfaces.</t>
        <t>Note that an IPv6 address specified with a scope zone ID (e.g. <tt>fe80::2001:db8%en0</tt>)
is equivalent to <tt>WithIPAddress</tt> with an unscoped address and <tt>WithInterface </tt> together.</t>
        <t>Applications creating Endpoint objects using <tt>WithHostName</tt> SHOULD provide fully-qualified
domain names (FQDNs). Not providing an FQDN will result in the Transport Services Implementation
needing to use DNS search domains for name resolution, which might lead to inconsistent or unpredictable
behavior.</t>
        <t>The design of the API MUST NOT permit an Endpoint object to be configured with multiple Endpoint Identifiers of the same type.
For example, an Endpoint object cannot specify two IP addresses. Two separate IP addresses
are represented as two Endpoint objects. If a Preconnection specifies a Remote
Endpoint with a specific IP address set, it will only establish Connections to
that IP address. If, on the other hand, a Remote Endpoint specifies a hostname
but no addresses, the Transport Services Implementation can perform name resolution and attempt
using any address derived from the original hostname of the Remote Endpoint.
Note that multiple Remote Endpoints can be added to a Preconnection, as discussed
in <xref target="add-endpoints"/>.</t>
        <t>The Transport Services system resolves names internally, when the <tt>Initiate</tt>,
<tt>Listen</tt>, or <tt>Rendezvous</tt> method is called to establish a Connection. Privacy
considerations for the timing of this resolution are given in <xref target="privacy-security"/>.</t>
        <t>The <tt>Resolve</tt> action on a Preconnection can be used by the application to force
early binding when required, for example with some Network Address Translator
(NAT) traversal protocols (see <xref target="rendezvous"/>).</t>
        <section anchor="using-multicast-endpoints">
          <name>Using Multicast Endpoints</name>
          <t>To use multicast, a Preconnection is first created with the Local/Remote Endpoint Identifer
specifying the any-source multicast (ASM) or source-specific multicast (SSM) multicast group and destination port number.
This is then followed by a call to either <tt>Initiate</tt>, <tt>Listen</tt>, or
<tt>Rendezvous</tt> depending on whether the resulting Connection is to be
used to send messages to the multicast group, receive messages from
the group, or, for an any-source multicast group, to both send and
receive messages.</t>
          <t>Note that the Transport Services API has separate specifier calls for multicast groups to avoid introducing filter properties for single-source multicast and seeks to avoid confusion that can be caused by overloading the unicast specifiers.</t>
          <t>Calling <tt>Initiate</tt> on that Preconnection creates a Connection that can be
used to send Messages to the multicast group. The Connection object that is
created will support <tt>Send</tt> but not <tt>Receive</tt>. Any Connections created this
way are send-only, and do not join the multicast group. The resulting
Connection will have a Local Endpoint identifying the local interface to
which the Connection is bound and a Remote Endpoint identifying the
multicast group.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Initiate</tt>:</t>
          <artwork><![CDATA[
RemoteSpecifier.WithMulticastGroupIP(GroupAddress)
RemoteSpecifier.WithPort(PortNumber)
RemoteSpecifier.WithHopLimit(HopLimit)
]]></artwork>
          <t>Calling <tt>Listen</tt> on a Preconnection with a multicast group specified on the Remote
Endpoint will join the multicast group to receive Messages. This Listener
will create one Connection for each Remote Endpoint sending to the group,
with the Local Endpoint Identifer specified as a group address. The set of Connection
objects created forms a Connection Group.
The receiving interface can be restricted by passing it as part of the LocalSpecifier or queried through the Message Context on the Messages received (see <xref target="msg-ctx"/> for further details).</t>
          <t>Specifying WithHopLimit sets the Time To Live (TTL) field in the header of IPv4 packets or the Hop Count field in the header of IPv6 packets.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Listen</tt>:</t>
          <artwork><![CDATA[
LocalSpecifier.WithSingleSourceMulticastGroupIP(GroupAddress,
                                                SourceAddress)
LocalSpecifier.WithAnySourceMulticastGroupIP(GroupAddress)
LocalSpecifier.WithPort(PortNumber)
]]></artwork>
          <t>Calling <tt>Rendezvous</tt> on a Preconnection with an any-source multicast group
address as the Remote Endpoint Identifer will join the multicast group, and also
indicates that the resulting Connection can be used to send Messages to the
multicast group. The <tt>Rendezvous</tt> call will return both a Connection that
can be used to send to the group, that acts the same as a Connection
returned by calling <tt>Initiate</tt> with a multicast Remote Endpoint, and a
Listener that acts as if <tt>Listen</tt> had been called with a multicast Remote
Endpoint.
Calling <tt>Rendezvous</tt> on a Preconnection with a source-specific multicast
group address as the Local Endpoint Identifer results in an <tt>EstablishmentError</tt>.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Rendezvous</tt>:</t>
          <artwork><![CDATA[
RemoteSpecifier.WithMulticastGroupIP(GroupAddress)
RemoteSpecifier.WithPort(PortNumber)
RemoteSpecifier.WithHopLimit(HopLimit)
LocalSpecifier.WithAnySourceMulticastGroupIP(GroupAddress)
LocalSpecifier.WithPort(PortNumber)
LocalSpecifier.WithHopLimit(HopLimit)
]]></artwork>
          <t>See <xref target="multicast-examples"/> for more examples.</t>
        </section>
        <section anchor="ifspec">
          <name>Constraining Interfaces for Endpoints</name>
          <t>Note that this API has multiple ways to constrain and prioritize endpoint candidates based on the network interface:</t>
          <ul spacing="normal">
            <li>
              <t>Specifying an interface on a Remote Endpoint qualifies the scope zone of the Remote Endpoint, e.g., for link-local addresses.</t>
            </li>
            <li>
              <t>Specifying an interface on a Local Endpoint explicitly binds all candidates derived from this Endpoint to use the specified interface.</t>
            </li>
            <li>
              <t>Specifying an interface using the <tt>interface</tt> Selection Property (<xref target="prop-interface"/>) or indirectly via the <tt>pvd</tt> Selection Property (<xref target="prop-pvd"/>) influences the selection among the available candidates.</t>
            </li>
          </ul>
          <t>While specifying an Interface on an Endpoint restricts the candidates available for Connection establishment in the Pre-Establishment Phase, the Selection Properties prioritize and constrain the Connection establishment.</t>
        </section>
        <section anchor="protocol-specific-endpoints">
          <name>Protocol-Specific Endpoints</name>
          <t>An Endpoint can have an alternative definition when using different protocols.
For example, a server that supports both TLS/TCP and QUIC could be accessible
on two different port numbers depending on which protocol is used.</t>
          <t>To scope an Endpoint to apply conditionally to a specific transport
protocol (such as defining an alternate port to use when QUIC
is selected, as opposed to TCP), an Endpoint can be
associated with a protocol identifier. Protocol identifiers are
objects or enumeration values provided by the Transport
Services API, which will vary based on which protocols are
implemented in a particular system.</t>
          <artwork><![CDATA[
AlternateRemoteSpecifier.WithProtocol(QUIC)
]]></artwork>
          <t>The following example shows a case where <tt>example.com</tt> has a server
running on port 443, with an alternate port of 8443 for QUIC. Both
endpoints can be passed when creating a Preconnection.</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithPort(443)

QUICRemoteSpecifier := NewRemoteEndpoint()
QUICRemoteSpecifier.WithHostName("example.com")
QUICRemoteSpecifier.WithPort(8443)
QUICRemoteSpecifier.WithProtocol(QUIC)

RemoteSpecifiers := [ RemoteSpecifier, QUICRemoteSpecifier ]
]]></artwork>
        </section>
        <section anchor="endpoint-examples">
          <name>Endpoint Examples</name>
          <t>The following examples of Endpoints show common usage patterns.</t>
          <t>Specify a Remote Endpoint using a hostname "example.com" and a service name "https", which tells the system to use the default port for HTTPS (443):</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithService("https")
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv6 address and remote port:</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPAddress(2001:db8:4920:e29d:a420:7461:7073:a)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv4 address and remote port:</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPAddress(192.0.2.21)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Local Endpoint using a local interface name and no local port,
to let the system assign an ephemeral local port:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("en0")
]]></artwork>
          <t>Specify a Local Endpoint using a local interface name and local port:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("en0")
LocalSpecifier.WithPort(443)
]]></artwork>
          <t>As an alternative to specifying an interface name for the Local Endpoint, an application
can express more fine-grained preferences using the <tt>Interface Instance or Type</tt>
Selection Property, see <xref target="prop-interface"/>. However, if the application specifies Selection
Properties that are inconsistent with the Local Endpoint, this will result in an error once the
application attempts to open a Connection.</t>
          <t>Specify a Local Endpoint using a STUN server:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithStunServer(address, port, credentials)
]]></artwork>
        </section>
        <section anchor="multicast-examples">
          <name>Multicast Examples</name>
          <t>The following examples show how multicast groups can be used.</t>
          <t>Join an Any-Source Multicast group in receive-only mode, bound to a known
port on a named local interface:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithAnySourceMulticastGroupIP(233.252.0.0)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Listener := Preconnection.Listen()
]]></artwork>
          <t>Join a Source-Specific Multicast group in receive-only mode, bound to a known
port on a named local interface:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()

   LocalSpecifier := NewLocalEndpoint()

   LocalSpecifier.WithSingleSourceMulticastGroupIP(233.252.0.0,
                                                   198.51.100.10)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Listener := Preconnection.Listen()
]]></artwork>
          <t>Create a Source-Specific Multicast group as a sender:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()
   RemoteSpecifier.WithMulticastGroupIP(233.251.240.1)
   RemoteSpecifier.WithPort(5353)
   RemoteSpecifier.WithHopLimit(8)

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithIPAddress(192.0.2.22)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Connection := Preconnection.Initiate()
]]></artwork>
          <t>Join an any-source multicast group as both a sender and a receiver:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()
   RemoteSpecifier.WithMulticastGroupIP(233.252.0.0)
   RemoteSpecifier.WithPort(5353)
   RemoteSpecifier.WithHopLimit(8)

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithAnySourceMulticastGroupIP(233.252.0.0)
   LocalSpecifier.WithIPAddress(192.0.2.22)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")


   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Connection, Listener := Preconnection.Rendezvous()
]]></artwork>
        </section>
      </section>
      <section anchor="selection-props">
        <name>Specifying Transport Properties</name>
        <t>A Preconnection object holds properties reflecting the application's
requirements and preferences for the transport. These include Selection
Properties for selecting Protocol Stacks and paths, as well as Connection
Properties and Message Properties for configuration of the detailed operation
of the selected Protocol Stacks on a per-Connection and Message level.</t>
        <t>The protocol(s) and path(s) selected as candidates during establishment are
determined and configured using these properties. Since there could be paths
over which some transport protocols are unable to operate, or Remote Endpoints
that support only specific network addresses or transports, transport protocol
selection is necessarily tied to path selection. This could involve choosing
between multiple local interfaces that are connected to different access
networks.</t>
        <t>When additional information (such as Provisioning Domain (PvD) information
<xref target="RFC7556"/>) is available about the networks over which an endpoint can operate,
this can inform the selection between alternate network paths.
Path information can include PMTU, set of supported DSCPs,
expected usage, cost, etc. The usage of this information by the Transport
Services System is generally independent of the specific mechanism/protocol
used to receive the information (e.g. zero-conf, DHCP, or IPv6 RA).</t>
        <t>Most Selection Properties are represented as Preferences, which can
take one of five values:</t>
        <table anchor="tab-pref-levels">
          <name>Selection Property Preference Levels</name>
          <thead>
            <tr>
              <th align="left">Preference</th>
              <th align="left">Effect</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Require</td>
              <td align="left">Select only protocols/paths providing the property, fail otherwise</td>
            </tr>
            <tr>
              <td align="left">Prefer</td>
              <td align="left">Prefer protocols/paths providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">No Preference</td>
              <td align="left">No preference</td>
            </tr>
            <tr>
              <td align="left">Avoid</td>
              <td align="left">Prefer protocols/paths not providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">Prohibit</td>
              <td align="left">Select only protocols/paths not providing the property, fail otherwise</td>
            </tr>
          </tbody>
        </table>
        <t>The implementation MUST ensure an outcome that is consistent with all application
requirements expressed using Require and Prohibit. While preferences
expressed using Prefer and Avoid influence protocol and path selection as well,
outcomes can vary given the same Selection Properties, because the available
protocols and paths can differ across systems and contexts. However,
implementations are RECOMMENDED to seek to provide a consistent outcome
to an application, when provided with the same set of Selection Properties.</t>
        <t>Note that application preferences can conflict with each other. For
example, if an application indicates a preference for a specific path by
specifying an interface, but also a preference for a protocol, a situation
might occur in which the preferred protocol is not available on the preferred
path. In such cases, applications can expect properties that determine path
selection to be prioritized over properties that determine protocol selection.
The transport system SHOULD determine the preferred path first, regardless of
protocol preferences. This ordering is chosen to provide consistency across
implementations, based on the fact that it is more common for the use of a
given network path to determine cost to the user (i.e., an interface type
preference might be based on a user's preference to avoid being charged
more for a cellular data plan).</t>
        <t>Selection and Connection Properties, as well as defaults for Message
Properties, can be added to a Preconnection to configure the selection process
and to further configure the eventually selected Protocol Stack(s). They are
collected into a TransportProperties object to be passed into a Preconnection
object:</t>
        <artwork><![CDATA[
TransportProperties := NewTransportProperties()
]]></artwork>
        <t>Individual properties are then set on the TransportProperties object.
Setting a Transport Property to a value overrides the previous value of this Transport Property.</t>
        <artwork><![CDATA[
TransportProperties.Set(property, value)
]]></artwork>
        <t>To aid readability, implementations MAY provide additional convenience functions to simplify use of Selection Properties: see <xref target="preference-conv"/> for examples.
In addition, implementations MAY provide a mechanism to create TransportProperties objects that
are preconfigured for common use cases, as outlined in <xref target="property-profiles"/>.</t>
        <t>Transport Properties for an established Connection can be queried via the Connection object, as outlined in <xref target="introspection"/>.</t>
        <t>A Connection gets its Transport Properties either by being explicitly configured
via a Preconnection, by configuration after establishment, or by inheriting them
from an antecedent via cloning; see <xref target="groups"/> for more.</t>
        <t><xref target="connection-props"/> provides a list of Connection Properties, while Selection
Properties are listed in the subsections below. Selection Properties are
only considered during establishment, and can not be changed after a Connection
is established. After a Connection is established, Selection Properties can only
be read to check the properties used by the Connection. Upon reading, the
Preference type of a Selection Property changes into Boolean, where <tt>true</tt> means
that the selected Protocol Stack supports the feature or uses the path associated
with the Selection Property, and <tt>false</tt> means that the Protocol Stack does not
support the feature or use the path. Implementations
of Transport Services systems could alternatively use the two Preference values <tt>Require</tt>
and <tt>Prohibit</tt> to represent <tt>true</tt> and <tt>false</tt>, respectively.
Other types of Selection Properties remain unchanged when they are made available for
reading after a Connection is established.</t>
        <t>An implementation of the Transport Services API needs to provide sensible defaults for Selection
Properties. The default values for each property below represent a
configuration that can be implemented over TCP. If these default values are used
and TCP is not supported by a Transport Services system, then an application using the
default set of Properties might not succeed in establishing a Connection. Using
the same default values for independent Transport Services systems can be beneficial
when applications are ported between different implementations/platforms, even if this
default could lead to a Connection failure when TCP is not available. If default
values other than those suggested below are used, it is RECOMMENDED to clearly
document any differences.</t>
        <section anchor="prop-reliable">
          <name>Reliable Data Transfer (Connection)</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>reliability</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application needs to use a transport
protocol that ensures that
all data is received at the Remote Endpoint in order without loss or duplication.
When reliable data transfer is enabled, this
also entails being notified when a Connection is closed or aborted.</t>
        </section>
        <section anchor="prop-boundaries">
          <name>Preservation of Message Boundaries</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>preserveMsgBoundaries</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether the application needs or prefers to use a transport
protocol that preserves message boundaries.</t>
        </section>
        <section anchor="prop-partially-reliable">
          <name>Configure Per-Message Reliability</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>perMsgReliability</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application considers it useful to specify different
reliability requirements for individual Messages in a Connection.</t>
        </section>
        <section anchor="prop-ordering">
          <name>Preservation of Data Ordering</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>preserveOrder</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application wishes to use a transport
protocol that can ensure that data is received by the application at the Remote Endpoint in the same order as it was sent.</t>
        </section>
        <section anchor="prop-0rtt">
          <name>Use 0-RTT Session Establishment with a Safely Replayable Message</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>zeroRttMsg</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application would like to supply a Message to
the transport protocol before connection establishment that will then be
reliably transferred to the Remote Endpoint before or during connection
establishment. This Message can potentially be received multiple times (i.e.,
multiple copies of the Message data could be passed to the Remote Endpoint).
See also <xref target="msg-safelyreplayable"/>.</t>
        </section>
        <section anchor="prop-multistream">
          <name>Multistream Connections in Group</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multistreaming</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Prefer</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would prefer multiple Connections
within a Connection Group to be provided by streams of a single underlying
transport connection where possible.</t>
        </section>
        <section anchor="prop-checksum-control-send">
          <name>Full Checksum Coverage on Sending</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>fullChecksumSend</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data transmitted on this Connection. Disabling this property could enable
the application to influence the sender checksum coverage after Connection establishment (see <xref target="msg-checksum"/>).</t>
        </section>
        <section anchor="prop-checksum-control-receive">
          <name>Full Checksum Coverage on Receiving</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>fullChecksumRecv</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data received on this Connection. Disabling this property could enable
the application to influence the required minimum receiver checksum coverage after Connection establishment (see <xref target="conn-recv-checksum"/>).</t>
        </section>
        <section anchor="prop-cc">
          <name>Congestion control</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>congestionControl</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to be
congestion controlled or not. Note that if a Connection is not congestion
controlled, an application using such a Connection SHOULD itself perform
congestion control in accordance with <xref target="RFC2914"/> or use a circuit breaker in
accordance with <xref target="RFC8084"/>, whichever is appropriate. Also note that reliability
is usually combined with congestion control in protocol implementations,
rendering "reliable but not congestion controlled" a request that is unlikely to
succeed. If the Connection is congestion controlled, performing additional congestion control
in the application can have negative performance implications.</t>
        </section>
        <section anchor="keep-alive">
          <name>Keep alive</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>keepAlive</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to send
keep-alive packets or not. Note that if a Connection determines that keep-alive
packets are being sent, the application SHOULD itself avoid generating additional keep-alive
messages. Note that when supported, the system will use the default period
for generation of the keep alive-packets. (See also <xref target="keep-alive-timeout"/>).</t>
        </section>
        <section anchor="prop-interface">
          <name>Interface Instance or Type</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>interface</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Set of (Preference, Enumeration)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty (not setting a preference for any interface)</t>
            </dd>
          </dl>
          <t>This property allows the application to select any specific network interfaces
or categories of interfaces it wants to <tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or
<tt>Avoid</tt>. Note that marking a specific interface as <tt>Require</tt> strictly limits path
selection to that single interface, and often leads to less flexible and resilient
connection establishment.</t>
          <t>In contrast to other Selection Properties, this property is a set of
tuples of (Enumerated) interface identifier and preference. It can either be
implemented directly as such, or for making one preference available for each
interface and interface type available on the system.</t>
          <t>The set of valid interface types is implementation- and system-specific. For
example, on a mobile device, there could be <tt>Wi-Fi</tt> and <tt>Cellular</tt> interface types
available; whereas on a desktop computer, <tt>Wi-Fi</tt> and <tt>Wired
Ethernet</tt> interface types might be available. An implementation should provide all types
that are supported on the local system, to allow
applications to be written generically. For example, if a single implementation
is used on both mobile devices and desktop devices, it ought to define the
<tt>Cellular</tt> interface type for both systems, since an application might wish to
always prohibit cellular.</t>
          <t>The set of interface types is expected to change over time as new access
technologies become available. The taxonomy of interface types on a given
Transport Services system is implementation-specific.</t>
          <t>Interface types SHOULD NOT be treated as a proxy for properties of interfaces
such as metered or unmetered network access. If an application needs to prohibit
metered interfaces, this should be specified via Provisioning Domain attributes
(see <xref target="prop-pvd"/>) or another specific property.</t>
          <t>Note that this property is not used to specify an interface scope zone for a particular Endpoint. <xref target="ifspec"/> provides details about how to qualify endpoint candidates on a per-interface basis.</t>
        </section>
        <section anchor="prop-pvd">
          <name>Provisioning Domain Instance or Type</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>pvd</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Set of (Preference, Enumeration)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty (not setting a preference for any PvD)</t>
            </dd>
          </dl>
          <t>Similar to <tt>interface</tt> (see <xref target="prop-interface"/>), this property
allows the application to control path selection by selecting which specific
Provisioning Domain (PvD) or categories of PVDs it wants to
<tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or <tt>Avoid</tt>. Provisioning Domains define
consistent sets of network properties that might be more specific than network
interfaces <xref target="RFC7556"/>.</t>
          <t>As with interface instances and types, this property is a set of tuples of (Enumerated)
PvD identifier and preference. It can either be implemented directly as such,
or for making one preference available for each interface and interface type
available on the system.</t>
          <t>The identification of a specific PvD is implementation- and system-specific.
<xref target="RFC8801"/> defines how to use an FQDN to identify a PvD when advertised by
a network, but systems might also use other locally-relevant identifiers
such as string names or Integers to identify PvDs. As with requiring specific
interfaces, requiring a specific PvD strictly limits the path selection.</t>
          <t>Categories or types of PvDs are also defined to be implementation- and
system-specific. These can be useful to identify a service that is provided by a
PvD. For example, if an application wants to use a PvD that provides a
Voice-Over-IP service on a Cellular network, it can use the relevant PvD type to
require a PvD that provides this service, without needing to look up a
particular instance. While this does restrict path selection, it is broader than
requiring specific PvD instances or interface instances, and should be preferred
over these options.</t>
        </section>
        <section anchor="use-temporary-local-address">
          <name>Use Temporary Local Address</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>useTemporaryLocalAddress</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Avoid for Listeners and Rendezvous Connections. Prefer for other Connections.</t>
            </dd>
          </dl>
          <t>This property allows the application to express a preference for the use of
temporary local addresses, sometimes called "privacy" addresses <xref target="RFC8981"/>.
Temporary addresses are generally used to prevent linking connections over time
when a stable address, sometimes called "permanent" address, is not needed.
There are some caveats to note when specifying this property. First, if an
application Requires the use of temporary addresses, the resulting Connection
cannot use IPv4, because temporary addresses do not exist in IPv4. Second,
temporary local addresses might involve trading off privacy for performance.
For instance, temporary addresses (e.g., <xref target="RFC8981"/>) can interfere with resumption mechanisms
that some protocols rely on to reduce initial latency.</t>
        </section>
        <section anchor="multipath-mode">
          <name>Multipath Transport</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multipath</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Disabled for Connections created through initiate and rendezvous, Passive for Listeners</t>
            </dd>
          </dl>
          <t>This property specifies whether and how applications want to take advantage of
transferring data across multiple paths between the same end hosts.
Using multiple paths allows Connections to migrate between interfaces or aggregate bandwidth
as availability and performance properties change.
Possible values are:</t>
          <dl>
            <dt>Disabled:</dt>
            <dd>
              <t>The Connection will not use multiple paths once established, even if the chosen transport supports using multiple paths.</t>
            </dd>
            <dt>Active:</dt>
            <dd>
              <t>The Connection will negotiate the use of multiple paths if the chosen transport supports this.</t>
            </dd>
            <dt>Passive:</dt>
            <dd>
              <t>The Connection will support the use of multiple paths if the Remote Endpoint requests it.</t>
            </dd>
          </dl>
          <t>The policy for using multiple paths is specified using the separate <tt>multipathPolicy</tt> property, see <xref target="multipath-policy"/> below.
To enable the peer endpoint to initiate additional paths towards a local address other than the one initially used, it is necessary to set the <tt>advertisesAltaddr</tt> property (see <xref target="altaddr"/> below).</t>
          <t>Setting this property to <tt>Active</tt> can have privacy implications: It enables the transport to establish connectivity using alternate paths that might result in users being linkable across the multiple paths, even if the <tt>advertisesAltaddr</tt> property (see <xref target="altaddr"/> below) is set to <tt>false</tt>.</t>
          <t>Note that Multipath Transport has no corresponding Selection Property of type Preference.
Enumeration values other than <tt>Disabled</tt> are interpreted as a preference for choosing protocols that can make use of multiple paths.
The <tt>Disabled</tt> value implies a requirement not to use multiple paths in parallel but does not prevent choosing a protocol that is capable of using multiple paths, e.g., it does not prevent choosing TCP, but prevents sending the <tt>MP_CAPABLE</tt> option in the TCP handshake.</t>
        </section>
        <section anchor="altaddr">
          <name>Advertisement of Alternative Addresses</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>advertisesAltaddr</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>This property specifies whether alternative addresses, e.g., of other interfaces, ought to be advertised to the
peer endpoint by the Protocol Stack. Advertising these addresses enables the peer endpoint to establish additional connectivity, e.g., for Connection migration or using multiple paths.</t>
          <t>Note that this can have privacy implications because it might result in users being linkable across the multiple paths.
Also, note that setting this to <tt>false</tt> does not prevent the local Transport Services system from <em>establishing</em> connectivity using alternate paths (see <xref target="multipath-mode"/> above); it only prevents <em>proactive advertisement</em> of addresses.</t>
        </section>
        <section anchor="direction-of-communication">
          <name>Direction of communication</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>direction</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Bidirectional</t>
            </dd>
          </dl>
          <t>This property specifies whether an application wants to use the Connection for sending and/or receiving data.  Possible values are:</t>
          <dl>
            <dt>Bidirectional:</dt>
            <dd>
              <t>The Connection must support sending and receiving data</t>
            </dd>
            <dt>Unidirectional send:</dt>
            <dd>
              <t>The Connection must support sending data, and the application cannot use the Connection to receive any data</t>
            </dd>
            <dt>Unidirectional receive:</dt>
            <dd>
              <t>The Connection must support receiving data, and the application cannot use the Connection to send any data</t>
            </dd>
          </dl>
          <t>Since unidirectional communication can be
supported by transports offering bidirectional communication, specifying
unidirectional communication might cause a transport stack that supports
bidirectional communication to be selected.</t>
        </section>
        <section anchor="prop-soft-error">
          <name>Notification of ICMP soft error message arrival</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>softErrorNotify</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application considers it useful to be
informed when an ICMP error message arrives that does not force termination of a
connection. When set to <tt>true</tt>, received ICMP errors are available as
<tt>SoftError</tt> events, see <xref target="soft-errors"/>. Note that even if a protocol supporting this property is selected,
not all ICMP errors will necessarily be delivered, so applications cannot rely
upon receiving them <xref target="RFC8085"/>.</t>
        </section>
        <section anchor="active-read-before-send">
          <name>Initiating side is not the first to write</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>activeReadBeforeSend</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>The most common client-server communication pattern involves the
client actively opening a Connection, then sending data to the server. The
server listens (passive open), reads, and then answers. This property
specifies whether an application wants to diverge from this pattern -- either
by actively opening with <tt>Initiate</tt>, immediately followed by reading, or passively opening with <tt>Listen</tt>,
immediately followed by writing. This property is ignored when establishing
connections using <tt>Rendezvous</tt>.
Requiring this property limits the choice of mappings to underlying protocols,
which can reduce
efficiency. For example, it prevents the Transport Services system from mapping
Connections to SCTP streams, where
the first transmitted data takes the role of an active open signal.</t>
        </section>
      </section>
      <section anchor="security-parameters">
        <name>Specifying Security Parameters and Callbacks</name>
        <t>Most security parameters, e.g., TLS ciphersuites, local identity and private key, etc.,
can be configured statically. Others are dynamically configured during Connection establishment.
Security parameters and callbacks are partitioned based on their place in the lifetime
of Connection establishment. Similar to Transport Properties, both parameters and callbacks
are inherited during cloning (see <xref target="groups"/>).</t>
        <t>This document specifies an abstract API, which could appear to conflict with the need
for security parameters to be unambiguous. The Transport Services System SHOULD provide reasonable,
secure defaults for each enumerated security parameter, such that users of the system
only need to specify parameters required to establish a secure connection
(e.g., <tt>serverCertificate</tt>, <tt>clientCertificate</tt>). Specifying security parameters
from enumerated values (e.g., specific ciphersuites) might constrain which transport
protocols can be selected during Connection establishment.</t>
        <t>Security configuration parameters are specified in the pre-establishment phase
and are created as follows:</t>
        <artwork><![CDATA[
SecurityParameters := NewSecurityParameters()
]]></artwork>
        <t>Specific parameters are added using a call to <tt>Set()</tt> on the <tt>SecurityParameters</tt>.</t>
        <t>As with the rest of the Transport Services API, the exact names of parameters and/or
values of enumerations (e.g., ciphersuites) used in the security parameters are system-
and implementation-specific, and ought to be chosen to follow the principle of least
surprise for users of the platform / language environment in question.</t>
        <t>For security parameters that are enumerations of known values, such as TLS
ciphersuites, implementations are responsible for exposing the set of values
they support. For security parameters that are not simple value types, such
as certificates and keys, implementations are responsible for exposing
types appropriate for the platform / language environment.</t>
        <t>Applications SHOULD use common safe defaults for values such as TLS ciphersuites
whenever possible. However, as discussed in <xref target="RFC8922"/>, many transport security protocols
require specific security parameters and constraints from the client at the time of
configuration and actively during a handshake.</t>
        <t>The set of security parameters defined here is not exhaustive, but illustrative.
Implementations SHOULD expose an equivalent to the parameters listed below to allow for
sufficient configuration of security parameters, but the details are expected
to vary based on platform and implementation constraints. Applications MUST be able
to constrain the security protocols and versions that the Transport Services System
will use.</t>
        <t>Representation of security parameters in implementations ought to parallel
that chosen for Transport Property names as suggested in <xref target="scope-of-interface-defn"/>.</t>
        <t>Connections that use Transport Services SHOULD use security in general. However, for
compatibility with endpoints that do not support transport security protocols (such
as a TCP endpoint that does not support TLS), applications can initialize their
security parameters to indicate that security can be disabled, or can be opportunistic.
If security is disabled, the Transport Services system will not attempt to add
transport security automatically. If security is opportunistic, it will allow
Connections without transport security, but will still attempt to use unauthenticated
security if available.</t>
        <artwork><![CDATA[
SecurityParameters := NewDisabledSecurityParameters()

SecurityParameters := NewOpportunisticSecurityParameters()
]]></artwork>
        <section anchor="allowed-security-protocols">
          <name>Allowed security protocols</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>allowedSecurityProtocols</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Implementation-specific enumeration of security protocol names and/or versions.</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Implementation-specific best available security protocols</t>
            </dd>
          </dl>
          <t>This property allows applications to restrict which security protocols and security protocol versions can be used in the protocol stack. Applications MUST be able to constrain the security protocols used by this or an equivalent mechanism, in order to prevent the use of security protocols with unknown or weak security properties.</t>
          <artwork><![CDATA[
SecurityParameters.Set(allowedSecurityProtocols, [ tls_1_2, tls_1_3 ])
]]></artwork>
        </section>
        <section anchor="certificate-bundles">
          <name>Certificate bundles</name>
          <dl>
            <dt>Names:</dt>
            <dd>
              <t>serverCertificate, clientCertificate</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Array of certificate objects</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty array</t>
            </dd>
          </dl>
          <t>One or more certificate bundles identifying the Local Endpoint, whether
as a server certificate or a client certificate. Multiple bundles may
be provided to allow selection among different protocol stacks that may
require differently formatted bundles. The form and format of the
certificate bundle is implementation-specific. Note that if the private
keys associated with a bundle are not available, e.g., since they are stored in hardware
security modules (HSMs), handshake callbacks are necessary. See below for details.</t>
          <artwork><![CDATA[
SecurityParameters.Set(serverCertificate, myCertificateBundle[])
SecurityParameters.Set(clientCertificate, myCertificateBundle[])
]]></artwork>
        </section>
        <section anchor="pinned-server-certificate">
          <name>Pinned server certificate</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>pinnedServerCertificate</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Array of certificate chain objects</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty array</t>
            </dd>
          </dl>
          <t>Zero or more certificate chains to use as pinned server
certificates, such that connecting will fail if the presented server
certificate does not match one of the supplied pinned certificates.
The form and format of the certificate chain is implementation-specific.</t>
          <artwork><![CDATA[
SecurityParameters.Set(pinnedServerCertificate, yourCertificateChain[])
]]></artwork>
        </section>
        <section anchor="application-layer-protocol-negotiation">
          <name>Application-layer protocol negotiation</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>alpn</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Array of Strings</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Automatic selection</t>
            </dd>
          </dl>
          <t>Application-layer protocol negotiation (ALPN) values: used to indicate which
application-layer protocols are negotiated by the security protocol layer.
See <xref target="ALPN"/> for definition of the ALPN field. Note that the Transport
Services System can provide ALPN values automatically, based on
the protocols being used, if not explicitly specified by the application.</t>
          <artwork><![CDATA[
SecurityParameters.Set(alpn, ["h2"])
]]></artwork>
        </section>
        <section anchor="groups-ciphersuites-and-signature-algorithms">
          <name>Groups, ciphersuites, and signature algorithms</name>
          <dl>
            <dt>Names:</dt>
            <dd>
              <t>supportedGroup, ciphersuite, signatureAlgorithm</t>
            </dd>
            <dt>Types:</dt>
            <dd>
              <t>Arrays of implementation-specific enumerations</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Automatic selection</t>
            </dd>
          </dl>
          <t>These are used to restrict what cryptographic parameters
are used by underlying transport security protocols. When not specified,
these algorithms should use known and safe defaults for the system.</t>
          <artwork><![CDATA[
SecurityParameters.Set(supportedGroup, secp256r1)
SecurityParameters.Set(ciphersuite, TLS_AES_128_GCM_SHA256)
SecurityParameters.Set(signatureAlgorithm, ecdsa_secp256r1_sha256)
]]></artwork>
        </section>
        <section anchor="session-cache-options">
          <name>Session cache options</name>
          <dl>
            <dt>Names:</dt>
            <dd>
              <t>maxCachedSessions, cachedSessionLifetimeSeconds</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Automatic selection</t>
            </dd>
          </dl>
          <t>These values are used to tune session cache capacity and lifetime, and
can be extended to include other policies.</t>
          <artwork><![CDATA[
SecurityParameters.Set(maxCachedSessions, 16)
SecurityParameters.Set(cachedSessionLifetimeSeconds, 3600)
]]></artwork>
        </section>
        <section anchor="pre-shared-key">
          <name>Pre-shared key</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>preSharedKey</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Key and identity (platform-specific)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>None</t>
            </dd>
          </dl>
          <t>Used to install pre-shared keying material established
out-of-band. Each instance of pre-shared keying material is associated with some identity
that typically identifies its use or has some protocol-specific meaning to the
Remote Endpoint. Note that use of a pre-shared key will tend to select a single
security protocol, and therefore directly select a single underlying protocol stack.
A Transport Services API could express <tt>None</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
          <artwork><![CDATA[
SecurityParameters.Set(preSharedKey, key, myIdentity)
]]></artwork>
        </section>
        <section anchor="connection-establishment-callbacks">
          <name>Connection Establishment Callbacks</name>
          <t>Security decisions, especially pertaining to trust, are not static. Once configured,
parameters can also be supplied during Connection establishment. These are best
handled as client-provided callbacks.
Callbacks block the progress of the Connection establishment, which distinguishes them
from other events in the transport system. How callbacks and events are implemented is specific to each implementation.
Security handshake callbacks that could be invoked during Connection establishment include:</t>
          <ul spacing="normal">
            <li>
              <t>Trust verification callback: Invoked when a Remote Endpoint's trust must be verified before the
handshake protocol can continue. For example, the application could verify an X.509 certificate
as described in <xref target="RFC5280"/>.</t>
            </li>
          </ul>
          <artwork><![CDATA[
TrustCallback := NewCallback({
  // Handle trust, return the result
})
SecurityParameters.SetTrustVerificationCallback(TrustCallback)
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Identity challenge callback: Invoked when a private key operation is required, e.g., when
local authentication is requested by a Remote Endpoint.</t>
            </li>
          </ul>
          <artwork><![CDATA[
ChallengeCallback := NewCallback({
  // Handle challenge
})
SecurityParameters.SetIdentityChallengeCallback(ChallengeCallback)
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="establishment">
      <name>Establishing Connections</name>
      <t>Before a Connection can be used for data transfer, it needs to be established.
Establishment ends the pre-establishment phase; all transport properties and
cryptographic parameter specification must be complete before establishment,
as these will be used to select candidate Paths and Protocol Stacks
for the Connection. Establishment can be active, using the <tt>Initiate</tt> action;
passive, using the <tt>Listen</tt> action; or simultaneous for peer-to-peer, using
the <tt>Rendezvous</tt> action. These actions are described in the subsections below.</t>
      <section anchor="initiate">
        <name>Active Open: Initiate</name>
        <t>Active open is the action of establishing a Connection to a Remote Endpoint presumed
to be listening for incoming Connection requests. Active open is used by clients in
client-server interactions. Active open is supported by the Transport Services API through the
<tt>Initiate</tt> action:</t>
        <artwork><![CDATA[
Connection := Preconnection.Initiate(timeout?)
]]></artwork>
        <t>The timeout parameter specifies how long to wait before aborting Active open.
Before calling <tt>Initiate</tt>, the caller must have populated a Preconnection
object with a Remote Endpoint object to identify the endpoint, optionally a Local Endpoint
object (if not specified, the system will attempt to determine a
suitable Local Endpoint), as well as all properties
necessary for candidate selection.</t>
        <t>The <tt>Initiate</tt> action returns a Connection object. Once <tt>Initiate</tt> has been
called, any changes to the Preconnection MUST NOT have any effect on the
Connection. However, the Preconnection can be reused, e.g., to <tt>Initiate</tt>
another Connection.</t>
        <t>Once <tt>Initiate</tt> is called, the candidate Protocol Stack(s) can cause one or more
candidate transport-layer connections to be created to the specified Remote
Endpoint. The caller could immediately begin sending Messages on the Connection
(see <xref target="sending"/>) after calling <tt>Initiate</tt>; note that any data marked as "safely replayable" that is sent
while the Connection is being established could be sent multiple times or on
multiple candidates.</t>
        <t>The following events can be sent by the Connection after <tt>Initiate</tt> is called:</t>
        <artwork><![CDATA[
Connection -> Ready<>
]]></artwork>
        <t>The <tt>Ready</tt> event occurs after <tt>Initiate</tt> has established a transport-layer
connection on at least one usable candidate Protocol Stack over at least one
candidate Path. No <tt>Receive</tt> events (see <xref target="receiving"/>) will occur before
the <tt>Ready</tt> event for Connections established using <tt>Initiate</tt>.</t>
        <artwork><![CDATA[
Connection -> EstablishmentError<reason?>
]]></artwork>
        <t>An <tt>EstablishmentError</tt> occurs either when the set of transport properties and security
parameters cannot be fulfilled on a Connection for initiation (e.g., the set of
available Paths and/or Protocol Stacks meeting the constraints is empty) or
reconciled with the Local and/or Remote Endpoints; when a remote Endpoint Identifier
cannot be resolved; or when no transport-layer connection can be established to
the Remote Endpoint (e.g., because the Remote Endpoint is not accepting
connections, the application is prohibited from opening a Connection by the
operating system, or the establishment attempt has timed out for any other reason).</t>
        <t>Connection establishment
and transmission of the first Message can be combined in a single action (<xref target="initiate-and-send"/>).</t>
      </section>
      <section anchor="listen">
        <name>Passive Open: Listen</name>
        <t>Passive open is the action of waiting for Connections from Remote Endpoints,
commonly used by servers in client-server interactions. Passive open is
supported by the Transport Services API through the <tt>Listen</tt> action and returns a Listener object:</t>
        <artwork><![CDATA[
Listener := Preconnection.Listen()
]]></artwork>
        <t>Before calling <tt>Listen</tt>, the caller must have initialized the Preconnection
during the pre-establishment phase with a Local Endpoint object, as well
as all properties necessary for Protocol Stack selection. A Remote Endpoint
can optionally be specified, to constrain what Connections are accepted.</t>
        <t>The <tt>Listen</tt> action returns a Listener object. Once <tt>Listen</tt> has been called,
any changes to the Preconnection MUST NOT have any effect on the Listener. The
Preconnection can be disposed of or reused, e.g., to create another Listener.</t>
        <artwork><![CDATA[
Listener.Stop()
]]></artwork>
        <t>Listening continues until the global context shuts down, or until the Stop
action is performed on the Listener object.</t>
        <artwork><![CDATA[
Listener -> ConnectionReceived<Connection>
]]></artwork>
        <t>The <tt>ConnectionReceived</tt> event occurs when a Remote Endpoint has established or cloned (e.g., by creating a new stream in a multi-stream transport; see <xref target="groups"/>) a
transport-layer connection to this Listener (for Connection-oriented
transport protocols), or when the first Message has been received from the
Remote Endpoint (for Connectionless protocols or streams of a multi-streaming transport), causing a new Connection to be
created. The resulting Connection is contained within the <tt>ConnectionReceived</tt>
event, and is ready to use as soon as it is passed to the application via the
event.</t>
        <artwork><![CDATA[
Listener.SetNewConnectionLimit(value)
]]></artwork>
        <t>If the caller wants to rate-limit the number of inbound Connections that will be delivered,
it can set a cap using <tt>SetNewConnectionLimit</tt>. This mechanism allows a server to
protect itself from being drained of resources. Each time a new Connection is delivered
by the <tt>ConnectionReceived</tt> event, the value is automatically decremented. Once the
value reaches zero, no further Connections will be delivered until the caller sets the
limit to a higher value. By default, this value is Infinite. The caller is also able to reset
the value to Infinite at any point.</t>
        <artwork><![CDATA[
Listener -> EstablishmentError<reason?>
]]></artwork>
        <t>An <tt>EstablishmentError</tt> occurs either when the Properties and security parameters of the Preconnection cannot be fulfilled for listening or cannot be reconciled with the Local Endpoint (and/or Remote Endpoint, if specified), when the Local Endpoint (or Remote Endpoint, if specified) cannot
be resolved, or when the application is prohibited from listening by policy.</t>
        <artwork><![CDATA[
Listener -> Stopped<>
]]></artwork>
        <t>A <tt>Stopped</tt> event occurs after the Listener has stopped listening.</t>
      </section>
      <section anchor="rendezvous">
        <name>Peer-to-Peer Establishment: Rendezvous</name>
        <t>Simultaneous peer-to-peer Connection establishment is supported by the
<tt>Rendezvous</tt> action:</t>
        <artwork><![CDATA[
Preconnection.Rendezvous()
]]></artwork>
        <t>A Preconnection object used in a <tt>Rendezvous</tt> MUST have both the
Local Endpoint candidates and the Remote Endpoint candidates specified,
along with the Transport Properties and security parameters needed for
Protocol Stack selection, before the <tt>Rendezvous</tt> action is initiated.</t>
        <t>The <tt>Rendezvous</tt> action listens on the Local Endpoint
candidates for an incoming Connection from the Remote Endpoint candidates,
while also simultaneously trying to establish a Connection from the Local
Endpoint candidates to the Remote Endpoint candidates.</t>
        <t>If there are multiple Local Endpoints or Remote Endpoints configured, then
initiating a <tt>Rendezvous</tt> action will cause the Transport Services
Implementation to systematically probe the reachability
of those endpoint candidates following an approach such as that used in
Interactive Connectivity Establishment (ICE) <xref target="RFC8445"/>.</t>
        <t>If the endpoints are suspected to be behind a NAT, and the Local Endpoint
supports a method of discovering NAT bindings, such as Session Traversal
Utilities for NAT (STUN) <xref target="RFC8489"/> or Traversal Using Relays around NAT
(TURN) <xref target="RFC8656"/>, then the <tt>Resolve</tt> action on the Preconnection can be
used to discover such bindings:</t>
        <artwork><![CDATA[
[]LocalEndpoint, []RemoteEndpoint := Preconnection.Resolve()
]]></artwork>
        <t>The <tt>Resolve</tt> call returns lists of Local Endpoints and Remote Endpoints
that represent the concrete addresses, local and server reflexive, on which
a <tt>Rendezvous</tt> for the Preconnection will listen for incoming Connections,
and to which it will attempt to establish Connections.</t>
        <t>Note that the set of Local Endpoints returned by <tt>Resolve</tt> might or might not
contain information about all possible local interfaces depending on how the
Preconnection is configured. The set of available local interfaces can also
change over time so care needs to be taken when using stored interface names.</t>
        <t>An application that uses <tt>Rendezvous</tt> to establish a peer-to-peer Connection
in the presence of NATs will configure the Preconnection object with at least
one Local Endpoint that supports NAT binding discovery. It will then <tt>Resolve</tt>
the Preconnection, and pass the resulting list of Local Endpoint candidates to
the peer via a signalling protocol, for example as part of an ICE <xref target="RFC8445"/>
exchange within SIP <xref target="RFC3261"/> or WebRTC <xref target="RFC7478"/>.  The peer will then,
via the same signalling channel, return the Remote Endpoint candidates.
The set of Remote Endpoint candidates are then configured onto the Preconnection:</t>
        <artwork><![CDATA[
Preconnection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>The <tt>Rendezvous</tt> action is initiated, and causes the Transport Services
Implementation to begin connectivity checks, once the application has
added both the Local Endpoint candidates and the Remote Endpoint candidates
retrieved from the peer via the signalling channel to the Preconnection.</t>
        <t>If successful, the <tt>Rendezvous</tt> action returns a Connection object via a
<tt>RendezvousDone&lt;&gt;</tt> event:</t>
        <artwork><![CDATA[
Preconnection -> RendezvousDone<Connection>
]]></artwork>
        <t>The <tt>RendezvousDone&lt;&gt;</tt> event occurs when a Connection is established with the
Remote Endpoint. For Connection-oriented transports, this occurs when the
transport-layer connection is established; for Connectionless transports,
it occurs when the first Message is received from the Remote Endpoint. The
resulting Connection is contained within the <tt>RendezvousDone&lt;&gt;</tt> event, and is
ready to use as soon as it is passed to the application via the event.
Changes made to a Preconnection after <tt>Rendezvous</tt> has been called MUST
NOT have any effect on existing Connections.</t>
        <t>An <tt>EstablishmentError</tt> occurs either when the Properties and Security
Parameters of the Preconnection cannot be fulfilled for rendezvous or
cannot be reconciled with the Local and/or Remote Endpoints, when the Local
Endpoint or Remote Endpoint cannot be resolved, when no transport-layer
connection can be established to the Remote Endpoint, or when the
application is prohibited from rendezvous by policy:</t>
        <artwork><![CDATA[
Preconnection -> EstablishmentError<reason?>
]]></artwork>
      </section>
      <section anchor="groups">
        <name>Connection Groups</name>
        <t>Connection Groups can be created using the <tt>Clone</tt> action:</t>
        <artwork><![CDATA[
Connection := Connection.Clone(framer?, connectionProperties?)
]]></artwork>
        <t>Calling <tt>Clone</tt> on a Connection yields a Connection Group containing two Connections: the parent
Connection on which <tt>Clone</tt> was called, and a resulting cloned Connection.
The new Connection is actively opened, and it will locally send a <tt>Ready</tt> event or an <tt>EstablishmentError</tt> event.
Calling <tt>Clone</tt> on any of these Connections adds another Connection to
the Connection Group. Connections in a Connection Group share all
Connection Properties except <tt>connPriority</tt> (see <xref target="conn-priority"/>),
and these Connection Properties are entangled: Changing one of the
Connection Properties on one Connection in the Connection Group
automatically changes the Connection Property for all others. For example, changing
<tt>connTimeout</tt> (see
<xref target="conn-timeout"/>) on one Connection in a Connection Group will automatically
make the same change to this Connection Property for all other Connections in the Connection Group.
Like all other Properties, <tt>connPriority</tt> is copied
to the new Connection when calling <tt>Clone</tt>, but in this case, a later change to the
<tt>connPriority</tt> on one Connection does not change it on the
other Connections in the same Connection Group.</t>
        <t>The optional <tt>connectionProperties</tt> parameter allows passing
Transport Properties that control the behavior of the underlying stream or connection to be created, e.g., Protocol-specific Properties to request specific stream IDs for SCTP or QUIC.</t>
        <t>Message Properties set on a Connection also apply only to that Connection.</t>
        <t>A new Connection created by <tt>Clone</tt> can have a Message Framer assigned via the optional
<tt>framer</tt> parameter of the <tt>Clone</tt> action. If this parameter is not supplied, the
stack of Message Framers associated with a Connection is copied to
the cloned Connection when calling <tt>Clone</tt>. Then, a cloned Connection
has the same stack of Message Framers as the Connection from which they
are cloned, but these Framers can internally maintain per-Connection state.</t>
        <t>It is also possible to check which Connections belong to the same Connection Group.
Calling <tt>GroupedConnections</tt> on a specific Connection returns a set of all Connections
in the same group.</t>
        <artwork><![CDATA[
[]Connection := Connection.GroupedConnections()
]]></artwork>
        <t>Connections will belong to the same group if the application previously called <tt>Clone</tt>.
Passive Connections can also be added to the same group -- e.g., when a Listener
receives a new Connection that is just a new stream of an already active multi-streaming
protocol instance.</t>
        <t>If the underlying protocol supports multi-streaming, it is natural to use this
functionality to implement <tt>Clone</tt>. In that case, Connections in a Connection Group are
multiplexed together, giving them similar treatment not only inside Endpoints,
but also across the end-to-end Internet path.</t>
        <t>Note that calling <tt>Clone</tt> can result in on-the-wire signaling, e.g., to open a new
transport connection, depending on the underlying Protocol Stack. When <tt>Clone</tt> leads to
the opening of multiple such connections,
the Transport Services system will ensure consistency of
Connection Properties by uniformly applying them to all underlying connections
in a group. Even in such a case, there are possibilities for a Transport Services system
to implement prioritization within a Connection Group <xref target="TCP-COUPLING"/> <xref target="RFC8699"/>.</t>
        <t>Attempts to clone a Connection can result in a <tt>CloneError</tt>:</t>
        <artwork><![CDATA[
Connection -> CloneError<reason?>
]]></artwork>
        <t>A <tt>CloneError</tt> can also occur later, after <tt>Clone</tt> was successfully called. In this case,
it informs the application that the Connection that sends the <tt>CloneError</tt> is no longer a
part of any Connection Group. For example, this can occur when the Transport Services
system is unable to implement entanglement (a Connection Property was changed on a different
Connection in the Connection Group, but this change could not be successfully applied
to the Connection that sends the <tt>CloneError</tt>).</t>
        <t>The <tt>connPriority</tt> Connection Property operates on Connections in a Connection Group
using the same approach as in <xref target="msg-priority"/>: when allocating available network
capacity among Connections in a Connection Group, sends on Connections with
numerically lower Priority values will be prioritized over sends on Connections that have
numerically higher Priority values. Capacity will be shared among these Connections according to
the <tt>connScheduler</tt> property (<xref target="conn-scheduler"/>).
See <xref target="priority-in-taps"/> for more.</t>
      </section>
      <section anchor="add-endpoints">
        <name>Adding and Removing Endpoints on a Connection</name>
        <t>Transport protocols that are explicitly multipath aware are expected to automatically
manage the set of Remote Endpoints that they are communicating with, and the paths to
those endpoints. A <tt>PathChange&lt;&gt;</tt> event, described in <xref target="conn-path-change"/>, will be
generated when the path changes.</t>
        <t>In some cases, however, it is necessary to explicitly indicate to a Connection that
a new Remote Endpoint has become available for use, or to indicate that a Remote
Endpoint is no longer available. This is most common in the case of peer to peer
connections using Trickle ICE <xref target="RFC8838"/>.</t>
        <t>The <tt>AddRemote</tt> action can be used to add one or more new Remote Endpoints
to a Connection:</t>
        <artwork><![CDATA[
Connection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>Endpoints that are already known to the Connection are ignored. A call to
<tt>AddRemote</tt> makes the new Remote Endpoints available to the Connection,
but whether the Connection makes use of those Endpoints will depend on the
underlying transport protocol.</t>
        <t>Similarly, the <tt>RemoveRemote</tt> action can be used to tell a Connection to
stop using one or more Remote Endpoints:</t>
        <artwork><![CDATA[
Connection.RemoveRemote([]RemoteEndpoint)
]]></artwork>
        <t>Removing all known Remote Endpoints can have the effect of aborting the
connection. The effect of removing the active Remote Endpoint(s) depends
on the underlying transport: multipath aware transports might be able to
switch to a new path if other reachable Remote Endpoints exist, or the
connection might abort.</t>
        <t>Similarly, the <tt>AddLocal</tt> and <tt>RemoveLocal</tt> actions can be used to add
and remove Local Endpoints to/from a Connection.</t>
      </section>
    </section>
    <section anchor="introspection">
      <name>Managing Connections</name>
      <t>During pre-establishment and after establishment, (Pre-)Connections can be configured and queried using Connection
Properties, and asynchronous information could be available about the state of the
Connection via <tt>SoftError</tt> events.</t>
      <t>Connection Properties represent the configuration and state of the selected
Protocol Stack(s) backing a Connection. These Connection Properties can be
generic, applying regardless of transport protocol, or specific, applicable to a
single implementation of a single transport Protocol Stack. Generic Connection
Properties are defined in <xref target="connection-props"/> below.</t>
      <t>Protocol-specific Properties are defined in a transport- and
implementation-specific way to
permit more specialized protocol features to be used.
Too much reliance by an application on Protocol-specific Properties can significantly reduce the flexibility
of a transport services system to make appropriate
selection and configuration choices. Therefore, it is RECOMMENDED that
Generic Connection Properties are used for properties common across different protocols and that
Protocol-specific Connection Properties are only used where specific protocols or properties are necessary.</t>
      <t>The application can set and query Connection Properties on a per-Connection
basis. Connection Properties that are not read-only can be set during
pre-establishment (see <xref target="selection-props"/>), as well as on Connections directly using
the <tt>SetProperty</tt> action:</t>
      <artwork><![CDATA[
ErrorCode := Connection.SetProperty(property, value)
]]></artwork>
      <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 application MUST be informed about this error via the <tt>ErrorCode</tt> Object. Such errors MUST NOT cause the Connection to be terminated.
Note that changing one of the Connection Properties on one Connection in a Connection Group
will also change it for all other Connections of that group; see further <xref target="groups"/>.</t>
      <t>At any point, the application can query Connection Properties.</t>
      <artwork><![CDATA[
ConnectionProperties := Connection.GetProperties()
value := ConnectionProperties.Get(property)
if ConnectionProperties.Has(boolean_or_preference_property) then ...
]]></artwork>
      <t>Depending on the status of the Connection, the queried Connection
Properties will include different information:</t>
      <ul spacing="normal">
        <li>
          <t>The Connection state, which can be one of the following:
Establishing, Established, Closing, or Closed (see <xref target="conn-state"/>).</t>
        </li>
        <li>
          <t>Whether the Connection can be used to send data (see <xref target="conn-send-data"/>).
A Connection can not be used
for sending if the Connection was created with the Selection Property
<tt>direction</tt> set to <tt>unidirectional receive</tt> or if a Message
marked as <tt>Final</tt> was sent over this Connection. See also <xref target="msg-final"/>.</t>
        </li>
        <li>
          <t>Whether the Connection can be used to receive data (see <xref target="conn-receive-data"/>).
A Connection cannot be
used for receiving if the Connection was created with the Selection Property
<tt>direction</tt> set to <tt>unidirectional send</tt> or if a Message
marked as <tt>Final</tt> was received. See <xref target="receiving-final-messages"/>. The latter
is only supported by certain transport protocols, e.g., by TCP as half-closed
connection.</t>
        </li>
        <li>
          <t>For Connections that are Established, Closing, or Closed:
Connection Properties (<xref target="connection-props"/>) of the
actual protocols that were selected and instantiated, and Selection
Properties that the application specified on the Preconnection.
Selection Properties of type <tt>Preference</tt> will be exposed as boolean values
indicating whether or not the property applies to the selected transport.
Note that the instantiated Protocol Stack might not match all
Protocol Selection Properties that the application specified on the
Preconnection.</t>
        </li>
        <li>
          <t>For Connections that are Established: Transport Services system implementations
ought to provide information concerning the
path(s) used by the Protocol Stack. This can be derived from local PVD information,
measurements by the Protocol Stack, or other sources.
For example, a Transport System that is configured to receive and process PVD information
<xref target="RFC7556"/> could also provide network configuration information for the chosen path(s).</t>
        </li>
      </ul>
      <section anchor="connection-props">
        <name>Generic Connection Properties</name>
        <t>Generic Connection Properties are defined independent of the chosen Protocol Stack
and therefore available on all Connections.</t>
        <t>Many Connection Properties have a corresponding Selection Property that
enables applications to express their preference for protocols providing a supporting transport feature.</t>
        <section anchor="conn-recv-checksum">
          <name>Required Minimum Corruption Protection Coverage for Receiving</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>recvChecksumLen</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (non-negative) or <tt>Full Coverage</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Full Coverage</tt></t>
            </dd>
          </dl>
          <t>If this property is an Integer, it specifies the minimum number of bytes in a received
Message that need to be covered by a checksum.
A receiving endpoint will not forward Messages that have less coverage
to the application. The application is responsible for handling
any corruption within the non-protected part of the Message <xref target="RFC8085"/>.
A special value of 0 means that a received packet might also have a zero checksum field,
and the enumerated value <tt>Full Coverage</tt> means
that the entire Message needs to be protected by a checksum. An implementation
is supposed to express <tt>Full Coverage</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="conn-priority">
          <name>Connection Priority</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connPriority</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (non-negative)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>100</t>
            </dd>
          </dl>
          <t>This property is a non-negative Integer representing the
priority of this Connection
relative to other Connections in the same
Connection Group. A numerically lower value reflects a higher priority. It has no effect
on Connections not part of a Connection
Group. As noted in <xref target="groups"/>, this property is not entangled when Connections
are cloned, i.e., changing the Priority on one Connection in a Connection Group
does not change it on the other Connections in the same Connection Group.
No guarantees of a specific behavior regarding Connection Priority are given;
a Transport Services system could ignore this property. See <xref target="priority-in-taps"/> for more details.</t>
        </section>
        <section anchor="conn-timeout">
          <name>Timeout for Aborting Connection</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connTimeout</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Disabled</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Disabled</tt></t>
            </dd>
          </dl>
          <t>If this property is Numeric, it specifies how long to wait before deciding that an active Connection has
failed when trying to reliably deliver data to the Remote Endpoint. Adjusting this property
will only take effect when the underlying stack supports reliability. If this property has the enumerated
value <tt>Disabled</tt>, it means that no timeout is scheduled. A Transport Services API
could express <tt>Disabled</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="keep-alive-timeout">
          <name>Timeout for keep alive packets</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>keepAliveTimeout</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Disabled</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Disabled</tt></t>
            </dd>
          </dl>
          <t>A Transport Services API can request a protocol that supports sending keep alive packets (<xref target="keep-alive"/>).
If this property is Numeric, it specifies the maximum length of time an idle Connection (one for which no transport
packets have been sent) ought to wait before
the Local Endpoint sends a keep-alive packet to the Remote Endpoint. Adjusting this property
will only take effect when the underlying stack supports sending keep-alive packets.
Guidance on setting this value for connection-less transports is
provided in <xref target="RFC8085"/>.
A value greater than the Connection timeout (<xref target="conn-timeout"/>) or the enumerated value <tt>Disabled</tt> will disable the sending of keep-alive packets. A Transport Services API
could express <tt>Disabled</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="conn-scheduler">
          <name>Connection Group Transmission Scheduler</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connScheduler</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Weighted Fair Queueing (see <xref section="3.6" sectionFormat="of" target="RFC8260"/>)</t>
            </dd>
          </dl>
          <t>This property specifies which scheduler is used among Connections within
a Connection Group to apportion the available capacity according to Connection priorities
(see <xref target="groups"/> and <xref target="conn-priority"/>). A set of schedulers is
described in <xref target="RFC8260"/>.</t>
        </section>
        <section anchor="prop-cap-profile">
          <name>Capacity Profile</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connCapacityProfile</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Default Profile (Best Effort)</t>
            </dd>
          </dl>
          <t>This property specifies the desired network treatment for traffic sent by the
application and the tradeoffs the application is prepared to make in path and
protocol selection to receive that desired treatment. When the capacity profile
is set to a value other than Default, the Transport Services system SHOULD select paths
and configure protocols to optimize the tradeoff between delay, delay variation, and
efficient use of the available capacity based on the capacity profile specified. How this is realized
is implementation-specific. The capacity profile MAY also be used
to set markings on the wire for Protocol Stacks supporting this.
Recommendations for use with DSCP are provided below for each profile; note that
when a Connection is multiplexed, the guidelines in <xref section="6" sectionFormat="of" target="RFC7657"/> apply.</t>
          <t>The following values are valid for the capacity profile:</t>
          <dl>
            <dt>Default:</dt>
            <dd>
              <t>The application provides no information about its expected capacity
  profile. Transport Services systems that
  map the requested capacity profile onto per-connection DSCP signaling
  SHOULD assign the DSCP Default Forwarding <xref target="RFC2474"/> Per Hop Behaviour (PHB).</t>
            </dd>
            <dt>Scavenger:</dt>
            <dd>
              <t>The application is not interactive. It expects to send
  and/or receive data without any urgency. This can, for example, be used to
  select Protocol Stacks with scavenger transmission control and/or to assign
  the traffic to a lower-effort service. Transport Services systems that
  map the requested capacity profile onto per-connection DSCP signaling
  SHOULD assign the DSCP Less than Best Effort
  <xref target="RFC8622"/> PHB.</t>
            </dd>
            <dt>Low Latency/Interactive:</dt>
            <dd>
              <t>The application is interactive, and prefers loss to
  latency. Response time SHOULD be optimized at the expense of delay variation
  and efficient use of the available capacity when sending on this Connection. This can be
  used by the system to disable the coalescing of multiple small Messages into
  larger packets (Nagle's algorithm); to prefer immediate acknowledgment from
  the peer endpoint when supported by the underlying transport; and so on.
  Transport Services systems that map the requested capacity profile onto per-connection DSCP signaling without multiplexing SHOULD assign a DSCP Assured Forwarding (AF41,AF42,AF43,AF44) <xref target="RFC2597"/> PHB. Inelastic traffic that is expected to conform to the configured network service rate could be mapped to the DSCP Expedited Forwarding <xref target="RFC3246"/> or <xref target="RFC5865"/> PHBs.</t>
            </dd>
            <dt>Low Latency/Non-Interactive:</dt>
            <dd>
              <t>The application prefers loss to latency, but is
  not interactive. Response time SHOULD be optimized at the expense of delay
  variation and efficient use of the available capacity when sending on this Connection. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF21,AF22,AF23,AF24) <xref target="RFC2597"/> PHB.</t>
            </dd>
            <dt>Constant-Rate Streaming:</dt>
            <dd>
              <t>The application expects to send/receive data at a
  constant rate after Connection establishment. Delay and delay variation SHOULD
  be minimized at the expense of efficient use of the available capacity.
  This implies that the Connection might fail if the Path is unable to maintain the desired rate.
  A transport can interpret this capacity profile as preferring a circuit
  breaker <xref target="RFC8084"/> to a rate-adaptive congestion controller. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF31,AF32,AF33,AF34) <xref target="RFC2597"/> PHB.</t>
            </dd>
            <dt>Capacity-Seeking:</dt>
            <dd>
              <t>The application expects to send/receive data at the
  maximum rate allowed by its congestion controller over a relatively long
  period of time. Transport Services systems that map the requested
  capacity profile onto per-connection DSCP signaling without multiplexing
  SHOULD assign a DSCP Assured Forwarding (AF11,AF12,AF13,AF14) <xref target="RFC2597"/> PHB
  per <xref section="4.8" sectionFormat="of" target="RFC4594"/>.</t>
            </dd>
          </dl>
          <t>The capacity profile for a selected Protocol Stack may be modified on a
per-Message basis using the Transmission Profile Message Property; see
<xref target="send-profile"/>.</t>
        </section>
        <section anchor="multipath-policy">
          <name>Policy for using Multipath Transports</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multipathPolicy</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Handover</t>
            </dd>
          </dl>
          <t>This property specifies the local policy for transferring data across multiple paths between the same end hosts if Multipath Transport is not set to Disabled (see <xref target="multipath-mode"/>). Possible values are:</t>
          <dl>
            <dt>Handover:</dt>
            <dd>
              <t>The Connection ought only to attempt to migrate between different paths when the original path is lost or becomes unusable. The thresholds used to declare a path unusable are implementation specific.</t>
            </dd>
            <dt>Interactive:</dt>
            <dd>
              <t>The Connection ought only to attempt to minimize the latency for interactive traffic patterns by transmitting data across multiple paths when this is beneficial.
The goal of minimizing the latency will be balanced against the cost of each of these paths. Depending on the cost of the
lower-latency path, the scheduling might choose to use a higher-latency path. Traffic can be scheduled such that data may be transmitted
on multiple paths in parallel to achieve a lower latency. The specific scheduling algorithm is implementation-specific.</t>
            </dd>
            <dt>Aggregate:</dt>
            <dd>
              <t>The Connection ought to attempt to use multiple paths in parallel to maximize available capacity and possibly overcome the capacity limitations of the individual paths. The actual strategy is implementation specific.</t>
            </dd>
          </dl>
          <t>Note that this is a local choice – the Remote Endpoint can choose a different policy.</t>
        </section>
        <section anchor="bounds-on-send-or-receive-rate">
          <name>Bounds on Send or Receive Rate</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>minSendRate / minRecvRate / maxSendRate / maxRecvRate</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt></t>
            </dd>
          </dl>
          <t>Numeric values of these properties specify an upper-bound rate that a transfer is not expected to
exceed (even if flow control and congestion control allow higher rates), and/or a
lower-bound application-layer rate below which the application does not deem
it will be useful. These rate values are measured at the application layer, i.e. do not consider the header overhead
from protocols used by the Transport Services system. The values are specified in bits per second,
and assumed to be measured over one-second time intervals. E.g., specifying a maxSendRate of X bits per second
means that, from the moment at which the property value is chosen, not more than X bits will be send in any
following second. The enumerated value <tt>Unlimited</tt> indicates that no bound is specified.
A Transport Services API could express <tt>Unlimited</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="group-connection-limit">
          <name>Group Connection Limit</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>groupConnLimit</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Unlimited</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Unlimited</tt></t>
            </dd>
          </dl>
          <t>If this property is Numeric, it controls the number of Connections that can be accepted from
a peer as new members of the Connection's group. Similar to <tt>SetNewConnectionLimit</tt>,
this limits the number of <tt>ConnectionReceived</tt> events that will occur, but constrained
to the group of the Connection associated with this property. For a multi-streaming transport,
this limits the number of allowed streams.  A Transport Services API
could express <tt>Unlimited</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="isolate-session">
          <name>Isolate Session</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>isolateSession</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>When set to <tt>true</tt>, this property will initiate new Connections using as little
cached information (such as session tickets or cookies) as possible from
previous Connections that are not in the same Connection Group. Any state generated by this
Connection will only be shared with Connections in the same Connection Group. Cloned Connections
will use saved state from within the Connection Group.
This is used for separating Connection Contexts as specified in <xref section="4.2.3" sectionFormat="of" target="I-D.ietf-taps-arch"/>.</t>
          <t>Note that this does not guarantee no leakage of information, as
implementations might not be able to fully isolate all caches (e.g. RTT
estimates). Note that this property could degrade Connection performance.</t>
        </section>
        <section anchor="read-only-conn-prop">
          <name>Read-only Connection Properties</name>
          <t>The following generic Connection Properties are read-only, i.e. they cannot be changed by an application.</t>
          <section anchor="conn-state">
            <name>Connection state</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>connState</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Enumeration</t>
              </dd>
            </dl>
            <t>This property informs about the current state of the Connection. Possible values are: <tt>Establishing</tt>, <tt>Established</tt>, <tt>Closing</tt> or <tt>Closed</tt>; for more details on Connection state, see <xref target="state-ordering"/>.</t>
          </section>
          <section anchor="conn-send-data">
            <name>Can Send Data</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>canSend</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
            </dl>
            <t>This property can be queried to learn whether the Connection can be used to send data.</t>
          </section>
          <section anchor="conn-receive-data">
            <name>Can Receive Data</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>canReceive</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
            </dl>
            <t>This property can be queried to learn whether the Connection can be used to receive data.</t>
          </section>
          <section anchor="conn-max-msg-notfrag">
            <name>Maximum Message Size Before Fragmentation or Segmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>singularTransmissionMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative) or <tt>Not applicable</tt></t>
              </dd>
            </dl>
            <t>This property, if applicable, represents the maximum Message size that can be
sent without incurring network-layer fragmentation at the sender.
It is specified as a number of bytes and is less than or equal to the
Maximum Message Size on Send.
It exposes a readable value to the application
based on the Maximum Packet Size (MPS). The value of this property can change over time (and can be updated by Datagram PLPMTUD <xref target="RFC8899"/>).
This value allows a sending stack to avoid unwanted fragmentation at the
network-layer or segmentation by the transport layer before
choosing the message size and/or after a <tt>SendError</tt> occurs indicating
an attempt to send a Message that is too large.  A Transport Services API
could express <tt>Not applicable</tt> in an environment-typical way, e.g., as a Union type or special value (e.g., 0).</t>
          </section>
          <section anchor="conn-max-msg-send">
            <name>Maximum Message Size on Send</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>sendMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
            </dl>
            <t>This property represents the maximum Message size that an application can send.
It is specified as the number of bytes. A value of 0 indicates that sending is not possible.</t>
          </section>
          <section anchor="conn-max-msg-recv">
            <name>Maximum Message Size on Receive</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>recvMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
            </dl>
            <t>This property represents the maximum Message size that an application can receive.
It is specified as the number of bytes. A value of 0 indicates that receiving is not possible.</t>
          </section>
        </section>
      </section>
      <section anchor="tcp-uto">
        <name>TCP-specific Properties: User Timeout Option (UTO)</name>
        <t>These properties specify configurations for the TCP User Timeout Option (UTO).
This is a TCP-specific property, that is only used
in the case that TCP becomes the chosen transport protocol
and useful only if TCP is implemented in the Transport Services system.
Protocol-specific options could also be defined for other transport protocols.</t>
        <t>These are included here because the feature <tt>Suggest
timeout to the peer</tt> is part of the minimal set of transport services
<xref target="RFC8923"/>, where this feature was categorized as "functional".
This means that when a Transport Services system offers this feature,
the Transport Services API has to expose an interface to the application. Otherwise, the implementation might
violate assumptions by the application, which could cause the application to
fail.</t>
        <t>All of the below properties are optional (e.g., it is possible to specify <tt>User Timeout Enabled</tt> as <tt>true</tt>,
but not specify an Advertised User Timeout value; in this case, the TCP default will be used).
These properties reflect the API extension specified in <xref section="3" sectionFormat="of" target="RFC5482"/>.</t>
        <section anchor="advertised-user-timeout">
          <name>Advertised User Timeout</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutValue</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (positive)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>the TCP default</t>
            </dd>
          </dl>
          <t>This time value is advertised via the TCP User Timeout Option (UTO) <xref target="RFC5482"/> to the Remote Endpoint which can use it to adapt its own <tt>Timeout for aborting Connection</tt> (see <xref target="conn-timeout"/>) value.</t>
        </section>
        <section anchor="user-timeout-enabled">
          <name>User Timeout Enabled</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutEnabled</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>This property controls whether the TCP UTO option is enabled for a
connection. This applies to both sending and receiving.</t>
        </section>
        <section anchor="timeout-changeable">
          <name>Timeout Changeable</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutChangeable</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>true</tt></t>
            </dd>
          </dl>
          <t>This property controls whether the TCP <tt>connTimeout</tt> (see <xref target="conn-timeout"/>)
can be changed
based on a UTO option received from the remote peer. This boolean becomes <tt>false</tt> when
<tt>connTimeout</tt> (see <xref target="conn-timeout"/>) is used.</t>
        </section>
      </section>
      <section anchor="connection-lifecycle-events">
        <name>Connection Lifecycle Events</name>
        <t>During the lifetime of a Connection there are events that can occur when configured.</t>
        <section anchor="soft-errors">
          <name>Soft Errors</name>
          <t>Asynchronous introspection is also possible, via the <tt>SoftError</tt> event. This event
informs the application about the receipt and contents of an ICMP error message related to the Connection. This will only happen if the underlying Protocol Stack supports access to soft errors; however, even if the underlying stack supports it, there
is no guarantee that a soft error will be signaled.</t>
          <artwork><![CDATA[
Connection -> SoftError<>
]]></artwork>
        </section>
        <section anchor="conn-path-change">
          <name>Path change</name>
          <t>This event notifies the application when at least one of the paths underlying a Connection has changed. Changes occur
on a single path when the PMTU changes as well as when multiple paths are used
and paths are added or removed, the set of local endpoints changes, or a handover has been performed.</t>
          <artwork><![CDATA[
Connection -> PathChange<>
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="datatransfer">
      <name>Data Transfer</name>
      <t>Data is sent and received as Messages, which allows the application
to communicate the boundaries of the data being transferred.</t>
      <section anchor="msg">
        <name>Messages and Framers</name>
        <t>Each Message has an optional Message Context, which allows adding Message Properties, identify <tt>Send</tt> events related to a specific Message or to inspect meta-data related to the Message sent. Framers can be used to extend or modify the Message data with additional information that can be processed at the receiver to detect message boundaries.</t>
        <section anchor="msg-ctx">
          <name>Message Contexts</name>
          <t>Using the MessageContext object, the application can set and retrieve meta-data of the Message, including Message Properties (see <xref target="message-props"/>) and framing meta-data (see <xref target="framing-meta"/>).
Therefore, a MessageContext object can be passed to the <tt>Send</tt> action and is returned by each <tt>Send</tt> and <tt>Receive</tt> related event.</t>
          <t>Message Properties can be set and queried using the Message Context:</t>
          <artwork><![CDATA[
MessageContext.add(property, value)
PropertyValue := MessageContext.get(property)
]]></artwork>
          <t>These Message Properties can be generic properties or Protocol-specific Properties.</t>
          <t>For MessageContexts returned by <tt>Send</tt> events (see <xref target="send-events"/>) and <tt>Receive</tt> events (see <xref target="receive-events"/>), the application can query information about the Local and Remote Endpoint:</t>
          <artwork><![CDATA[
RemoteEndpoint := MessageContext.GetRemoteEndpoint()
LocalEndpoint := MessageContext.GetLocalEndpoint()
]]></artwork>
        </section>
        <section anchor="framing">
          <name>Message Framers</name>
          <t>Although most applications communicate over a network using well-formed
Messages, the boundaries and metadata of the Messages are often not
directly communicated by the transport protocol itself. For example,
HTTP applications send and receive HTTP messages over a byte-stream
transport, requiring that the boundaries of HTTP messages be parsed
from the stream of bytes.</t>
          <t>Message Framers allow extending a Connection's Protocol Stack to define
how to encapsulate or encode outbound Messages, and how to decapsulate
or decode inbound data into Messages. Message Framers allow message
boundaries to be preserved when using a Connection object, even when
using byte-stream transports. This is designed based on the fact
that many of the current application protocols evolved over TCP, which
does not provide message boundary preservation, and since many of these
protocols require message boundaries to function, each application layer
protocol has defined its own framing.</t>
          <t>To use a Message Framer, the application adds it to its Preconnection object.
Then, the Message Framer can intercept all calls to <tt>Send</tt> or <tt>Receive</tt>
on a Connection to add Message semantics, in addition to interacting with
the setup and teardown of the Connection. A Framer can start sending data
before the application sends data if the framing protocol requires a prefix
or handshake (see <xref target="RFC9329"/> for an example of such a framing protocol).</t>
          <figure anchor="fig-framer-stack">
            <name>Protocol Stack showing a Message Framer</name>
            <artwork><![CDATA[
  Initiate()   Send()   Receive()   Close()
      |          |         ^          |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Connection                |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |    Messages     |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Framer(s)                 |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |   Byte-stream   |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |         Transport Protocol Stack         |
 +------------------------------------------+
]]></artwork>
          </figure>
          <t>Note that while Message Framers add the most value when placed above
a protocol that otherwise does not preserve message boundaries, they can
also be used with datagram- or message-based protocols. In these cases,
they add a transformation to further encode or encapsulate,
and can potentially support packing multiple application-layer Messages
into individual transport datagrams.</t>
          <t>The API to implement a Message Framer can vary depending on the implementation;
guidance on implementing Message Framers can be found in <xref target="I-D.ietf-taps-impl"/>.</t>
          <section anchor="adding-message-framers-to-pre-connections">
            <name>Adding Message Framers to Pre-Connections</name>
            <t>The Message Framer object can be added to one or more Preconnections
to run on top of transport protocols. Multiple Framers can be added to a Preconnection;
in this case, the Framers operate as a framing stack, i.e. the last one added runs
first when framing outbound Messages, and last when parsing inbound data.</t>
            <t>The following example adds a basic HTTP Message Framer to a Preconnection:</t>
            <artwork><![CDATA[
framer := NewHTTPMessageFramer()
Preconnection.AddFramer(framer)
]]></artwork>
            <t>Since Message Framers pass from Preconnection to Listener or Connection, addition of
Framers must happen before any operation that might result in the creation of a Connection.</t>
          </section>
          <section anchor="framing-meta">
            <name>Framing Meta-Data</name>
            <t>When sending Messages, applications can add Framer-specific
properties to a MessageContext (<xref target="msg-ctx"/>) with the <tt>add</tt> action.
To avoid naming conflicts, the property
names SHOULD be prefixed with a namespace referencing the
framer implementation or the protocol it implements as described
in <xref target="property-names"/>.</t>
            <t>This mechanism can be used, for example, to set the type of a Message for a TLV format.
The namespace of values is custom for each unique Message Framer.</t>
            <artwork><![CDATA[
messageContext := NewMessageContext()
messageContext.add(framer, key, value)
Connection.Send(messageData, messageContext)
]]></artwork>
            <t>When an application receives a MessageContext in a <tt>Receive</tt> event,
it can also look to see if a value was set by a specific Message Framer.</t>
            <artwork><![CDATA[
messageContext.get(framer, key) -> value
]]></artwork>
            <t>For example, if an HTTP Message Framer is used, the values could correspond
to HTTP headers:</t>
            <artwork><![CDATA[
httpFramer := NewHTTPMessageFramer()
...
messageContext := NewMessageContext()
messageContext.add(httpFramer, "accept", "text/html")
]]></artwork>
          </section>
        </section>
        <section anchor="message-props">
          <name>Message Properties</name>
          <t>Applications needing to annotate the Messages they send with extra information
(for example, to control how data is scheduled and processed by the transport protocols supporting the
Connection) can include this information in the Message Context passed to the <tt>Send</tt> action. For other uses of the Message Context, see <xref target="msg-ctx"/>.</t>
          <t>Message Properties are per-Message, not per-<tt>Send</tt> if partial Messages
are sent (<xref target="send-partial"/>). All data blocks associated with a single Message
share properties specified in the Message Contexts. For example, it would not
make sense to have the beginning of a Message expire, but allow the end of a
Message to still be sent.</t>
          <t>A MessageContext object contains metadata for the Messages to be sent or received.</t>
          <artwork><![CDATA[
messageData := "hello"
messageContext := NewMessageContext()
messageContext.add(parameter, value)
Connection.Send(messageData, messageContext)
]]></artwork>
          <t>The simpler form of <tt>Send</tt>, which does not take any MessageContext, is equivalent to passing a default MessageContext without adding any Message Properties.</t>
          <t>If an application wants to override Message Properties for a specific Message,
it can acquire an empty MessageContext object and add all desired Message
Properties to that object. It can then reuse the same MessageContext object
for sending multiple Messages with the same properties.</t>
          <t>Properties can be added to a MessageContext object only before the context is used
for sending. Once a MessageContext has been used with a <tt>Send</tt> action, further modifications
to the MessageContext object do not have any effect on this <tt>Send</tt> call. Message Properties
that are not added to a MessageContext object before using the context for sending will either
take a specific default value or be configured based on Selection or Connection Properties
of the Connection that is associated with the <tt>Send</tt> call.
This initialization behavior is defined per Message Property below.</t>
          <t>The Message Properties could be inconsistent with the properties of the Protocol Stacks
underlying the Connection on which a given Message is sent. For example,
a Protocol Stack must be able to provide ordering if the <tt>msgOrdered</tt>
property of a Message is enabled. Sending a Message with Message Properties
inconsistent with the Selection Properties of the Connection yields an error.</t>
          <t>If a Message Property contradicts a Connection Property, and
if this per-Message behavior can be supported, it overrides the Connection
Property for the specific Message. For example, if
<tt>reliability</tt> is set to <tt>Require</tt> and a protocol
with configurable per-Message reliability is used, setting
<tt>msgReliable</tt> to <tt>false</tt> for a particular Message will
allow this Message to be sent without any reliability guarantees. Changing
the <tt>msgReliable</tt> Message Property is only possible for
Connections that were established enabling the Selection Property
<tt>perMsgReliability</tt>. If the contradicting Message Property
cannot be supported by the Connection (such as requiring reliability
on a Connection that uses an unreliable protocol), the <tt>Send</tt> action
will result in a <tt>SendError</tt> event.</t>
          <t>The following Message Properties are supported:</t>
          <section anchor="msg-lifetime">
            <name>Lifetime</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgLifetime</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Numeric (positive)</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>infinite</t>
              </dd>
            </dl>
            <t>The Lifetime specifies how long a particular Message can wait in the Transport Services system
before it is sent to the
Remote Endpoint. After this time, it is irrelevant and no longer needs to be
(re-)transmitted. This is a hint to the Transport Services system -- it is not guaranteed
that a Message will not be sent when its Lifetime has expired.</t>
            <t>Setting a Message's Lifetime to infinite indicates that the application does
not wish to apply a time constraint on the transmission of the Message, but it does not express a need for
reliable delivery; reliability is adjustable per Message via the <tt>perMsgReliability</tt>
property (see <xref target="msg-reliable-message"/>). The type and units of Lifetime are implementation-specific.</t>
          </section>
          <section anchor="msg-priority">
            <name>Priority</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgPriority</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>100</t>
              </dd>
            </dl>
            <t>This property specifies the priority of a Message, relative to other Messages sent over the
same Connection. A numerically lower value represents a higher priority.</t>
            <t>A Message with Priority 2 will yield to a Message with Priority 1, which will
yield to a Message with Priority 0, and so on. Priorities can be used as a
sender-side scheduling construct only, or be used to specify priorities on the
wire for Protocol Stacks supporting prioritization.</t>
            <t>Note that this property is not a per-Message override of <tt>connPriority</tt>
- see <xref target="conn-priority"/>. The priority properties might interact, but can be used
independently and be realized by different mechanisms; see <xref target="priority-in-taps"/>.</t>
          </section>
          <section anchor="msg-ordered">
            <name>Ordered</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgOrdered</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>the queried Boolean value of the Selection Property <tt>preserveOrder</tt> (<xref target="prop-ordering"/>)</t>
              </dd>
            </dl>
            <t>The order in which Messages were submitted for transmission via the <tt>Send</tt> action will be preserved on delivery via <tt>Receive</tt> events for all Messages on a Connection that have this Message Property set to <tt>true</tt>.</t>
            <t>If <tt>false</tt>, the Message is delivered to the receiving application without preserving the ordering.
This property is used for protocols that support preservation of data ordering,
see <xref target="prop-ordering"/>, but allow out-of-order delivery for certain Messages, e.g., by multiplexing independent Messages onto
different streams.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>preserveOrder</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="msg-safelyreplayable">
            <name>Safely Replayable</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>safelyReplayable</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>If <tt>true</tt>, <tt>safelyReplayable</tt> specifies that a Message is safe to send to the Remote Endpoint
more than once for a single <tt>Send</tt> action. It marks the data as safe for
certain 0-RTT establishment techniques, where retransmission of the 0-RTT data
could cause the remote application to receive the Message multiple times.</t>
            <t>For protocols that do not protect against duplicated Messages,
e.g., UDP, all Messages need to be marked as "safely replayable" by enabling this property.
To enable protocol selection to choose such a protocol,
<tt>safelyReplayable</tt> needs to be added to the TransportProperties passed to the
Preconnection. If such a protocol was chosen, disabling <tt>safelyReplayable</tt> on
individual Messages MUST result in a <tt>SendError</tt>.</t>
          </section>
          <section anchor="msg-final">
            <name>Final</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>final</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>If <tt>true</tt>, this indicates a Message is the last that
the application will send on a Connection. This allows underlying protocols
to indicate to the Remote Endpoint that the Connection has been effectively
closed in the sending direction. For example, TCP-based Connections can
send a FIN once a Message marked as Final has been completely sent,
indicated by marking endOfMessage. Protocols that do not support signalling
the end of a Connection in a given direction will ignore this property.</t>
            <t>A Final Message must always be sorted to the end of a list of Messages.
The Final property overrides Priority and any other property that would re-order
Messages. If another Message is sent after a Message marked as Final has already
been sent on a Connection, the <tt>Send</tt> action for the new Message will cause a <tt>SendError</tt> event.</t>
          </section>
          <section anchor="msg-checksum">
            <name>Sending Corruption Protection Length</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgChecksumLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative) or <tt>Full Coverage</tt></t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>Full Coverage</tt></t>
              </dd>
            </dl>
            <t>If this property is an Integer, it specifies the minimum length of the section of a sent Message,
starting from byte 0, that the application requires to be delivered without
corruption due to lower layer errors. It is used to specify options for simple
integrity protection via checksums. A value of 0 means that no checksum
needs to be calculated, and the enumerated value <tt>Full Coverage</tt> means
that the entire Message needs to be protected by a checksum. Only <tt>Full Coverage</tt> is
guaranteed, any other requests are advisory, which may result in <tt>Full Coverage</tt> being applied.</t>
          </section>
          <section anchor="msg-reliable-message">
            <name>Reliable Data Transfer (Message)</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgReliable</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>the queried Boolean value of the Selection Property <tt>reliability</tt> (<xref target="prop-reliable"/>)</t>
              </dd>
            </dl>
            <t>When true, this property specifies that a Message should be sent in such a way
that the transport protocol ensures all data is received by the Remote Endpoint.
Changing the <tt>msgReliable</tt> property on Messages
is only possible for Connections that were established enabling the Selection Property <tt>perMsgReliability</tt>.
When this is not the case, changing <tt>msgReliable</tt> will generate an error.</t>
            <t>Disabling this property indicates that the Transport Services system could disable retransmissions
or other reliability mechanisms for this particular Message, but such disabling is not guaranteed.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>reliability</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="send-profile">
            <name>Message Capacity Profile Override</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgCapacityProfile</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Enumeration</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>inherited from the Connection Property <tt>connCapacityProfile</tt> (<xref target="prop-cap-profile"/>)</t>
              </dd>
            </dl>
            <t>This enumerated property specifies the application's preferred tradeoffs for
sending this Message; it is a per-Message override of the <tt>connCapacityProfile</tt>
Connection Property (see <xref target="prop-cap-profile"/>).
If it is not configured by the application before sending, this property's default value
will be based on the Connection Property <tt>connCapacityProfile</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="send-singular">
            <name>No Network-Layer Fragmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>noFragmentation</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>This property specifies that a Message should be sent and received
without network-layer fragmentation, if possible. It can be used
to avoid network layer fragmentation when transport segmentation is preferred.</t>
            <t>This only takes effect when the transport uses a network layer that supports this functionality.
When it does take effect, setting this property to
<tt>true</tt> will cause the sender to avoid network-layer source fragmentation.
When using IPv4, this will result in the Don't Fragment bit being set in the IP header.</t>
            <t>Attempts to send a Message with this property that result in a size greater than the
transport's current estimate of its maximum packet size (<tt>singularTransmissionMsgMaxLen</tt>)
can result in transport segmentation when permitted, or in a <tt>SendError</tt>.</t>
            <t>Note: noSegmentation is used when it is desired to only send a Message within
a single network packet.</t>
          </section>
          <section anchor="no-transport-fragmentation">
            <name>No Segmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>noSegmentation</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>When set to <tt>true</tt>, this property requests the transport layer
to not provide segmentation of Messages larger than the
maximum size permitted by the network layer, and also
to avoid network-layer source fragmentation of Messages.
When running over IPv4, setting this property to
<tt>true</tt> will result in a sending endpoint setting the
Don't Fragment bit in the IPv4 header of packets generated by the
transport layer.</t>
            <t>An
attempt to send a Message that results in a size greater than the
transport's current estimate of its maximum packet size (<tt>singularTransmissionMsgMaxLen</tt>)
will result in a <tt>SendError</tt>.
This only takes effect when the transport and network layer
support this functionality.</t>
          </section>
        </section>
      </section>
      <section anchor="sending">
        <name>Sending Data</name>
        <t>Once a Connection has been established, it can be used for sending Messages.
By default, <tt>Send</tt> enqueues a complete Message,
and takes optional per-Message properties (see <xref target="send-basic"/>). All <tt>Send</tt> actions
are asynchronous, and deliver events (see <xref target="send-events"/>). Sending partial
Messages for streaming large data is also supported (see <xref target="send-partial"/>).</t>
        <t>Messages are sent on a Connection using the <tt>Send</tt> action:</t>
        <artwork><![CDATA[
Connection.Send(messageData, messageContext?, endOfMessage?)
]]></artwork>
        <t>where <tt>messageData</tt> is the data object to send, and <tt>messageContext</tt> allows
adding Message Properties, identifying <tt>Send</tt> events related to a specific
Message or inspecting meta-data related to the Message sent (see <xref target="msg-ctx"/>).</t>
        <t>The optional endOfMessage parameter supports partial sending and is described in
<xref target="send-partial"/>.</t>
        <section anchor="send-basic">
          <name>Basic Sending</name>
          <t>The most basic form of sending on a Connection involves enqueuing a single Data
block as a complete Message with default Message Properties.</t>
          <artwork><![CDATA[
messageData := "hello"
Connection.Send(messageData)
]]></artwork>
          <t>The interpretation of a Message to be sent is dependent on the implementation, and
on the constraints on the Protocol Stacks implied by the Connection’s transport properties.
For example, a Message could be the payload of
a single datagram for a UDP Connection; or an HTTP Request for an HTTP
Connection.</t>
          <t>Some transport protocols can deliver arbitrarily sized Messages, but other
protocols constrain the maximum Message size. Applications can query the
Connection Property <tt>sendMsgMaxLen</tt> (<xref target="conn-max-msg-send"/>) to determine the maximum size
allowed for a single Message. If a Message is too large to fit in the Maximum Message
Size for the Connection, the <tt>Send</tt> will fail with a <tt>SendError</tt> event (<xref target="send-error"/>). For
example, it is invalid to send a Message over a UDP connection that is larger than
the available datagram sending size.</t>
        </section>
        <section anchor="send-events">
          <name>Send Events</name>
          <t>Like all actions in Transport Services API, the <tt>Send</tt> action is asynchronous. There are
several events that can be delivered in response to sending a Message.
Exactly one event (<tt>Sent</tt>, <tt>Expired</tt>, or <tt>SendError</tt>) will be delivered in response
to each call to <tt>Send</tt>.</t>
          <t>Note that if partial <tt>Send</tt> calls are used (<xref target="send-partial"/>), there will still be exactly
one <tt>Send</tt> event delivered for each call to <tt>Send</tt>. For example, if a Message
expired while two requests to <tt>Send</tt> data for that Message are outstanding,
there will be two <tt>Expired</tt> events delivered.</t>
          <t>The Transport Services API should allow the application to correlate which <tt>Send</tt> action resulted
in a particular <tt>Send</tt> event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="sent">
            <name>Sent</name>
            <artwork><![CDATA[
Connection -> Sent<messageContext>
]]></artwork>
            <t>The <tt>Sent</tt> event occurs when a previous <tt>Send</tt> call has completed, i.e., when
the data derived from the Message has been passed down or through the
underlying Protocol Stack and is no longer the responsibility of
the Transport Services API. The exact disposition of the Message (i.e.,
whether it has actually been transmitted, moved into a buffer on the network
interface, moved into a kernel buffer, and so on) when the <tt>Sent</tt> event occurs
is implementation-specific. The <tt>Sent</tt> event contains a reference to the Message
Context of the Message to which it applies.</t>
            <t><tt>Sent</tt> events allow an application to obtain an understanding of the amount
of buffering it creates. That is, if an application calls the <tt>Send</tt> action multiple
times without waiting for a <tt>Sent</tt> event, it has created more buffer inside the
Transport Services system than an application that always waits for the <tt>Sent</tt> event before
calling the next <tt>Send</tt> action.</t>
          </section>
          <section anchor="expired">
            <name>Expired</name>
            <artwork><![CDATA[
Connection -> Expired<messageContext>
]]></artwork>
            <t>The <tt>Expired</tt> event occurs when a previous <tt>Send</tt> action expired before completion;
i.e. when the Message was not sent before its Lifetime (see <xref target="msg-lifetime"/>)
expired. This is separate from <tt>SendError</tt>, as it is an expected behavior for
partially reliable transports. The <tt>Expired</tt> event contains a reference to the
Message Context of the Message to which it applies.</t>
          </section>
          <section anchor="send-error">
            <name>SendError</name>
            <artwork><![CDATA[
Connection -> SendError<messageContext, reason?>
]]></artwork>
            <t>A <tt>SendError</tt> occurs when a Message was not sent due to an error condition:
an attempt to send a Message that is too large for the system and
Protocol Stack to handle, some failure of the underlying Protocol Stack, or a
set of Message Properties not consistent with the Connection's transport
properties. The <tt>SendError</tt> contains a reference to the Message Context of the
Message to which it applies.</t>
          </section>
        </section>
        <section anchor="send-partial">
          <name>Partial Sends</name>
          <t>It is not always possible for an application to send all data associated with
a Message in a single <tt>Send</tt> action. The Message data might be too large for
the application to hold in memory at one time, or the length of the Message
might be unknown or unbounded.</t>
          <t>Partial Message sending is supported by passing an endOfMessage Boolean
parameter to the <tt>Send</tt> action. This value is always <tt>true</tt> by default, and
the simpler forms of <tt>Send</tt> are equivalent to passing <tt>true</tt> for endOfMessage.</t>
          <t>The following example sends a Message in two separate calls to <tt>Send</tt>.</t>
          <artwork><![CDATA[
messageContext := NewMessageContext()
messageContext.add(parameter, value)

messageData := "hel"
endOfMessage := false
Connection.Send(messageData, messageContext, endOfMessage)

messageData := "lo"
endOfMessage := true
Connection.Send(messageData, messageContext, endOfMessage)
]]></artwork>
          <t>All data sent with the same MessageContext object will be treated as belonging
to the same Message, and will constitute an in-order series until the
endOfMessage is marked.</t>
        </section>
        <section anchor="send-batching">
          <name>Batching Sends</name>
          <t>To reduce the overhead of sending multiple small Messages on a Connection, the
application could batch several <tt>Send</tt> actions together. This provides a hint to
the system that the sending of these Messages ought to be coalesced when possible,
and that sending any of the batched Messages can be delayed until the last Message
in the batch is enqueued.</t>
          <t>The semantics for starting and ending a batch can be implementation-specific, but need
to allow multiple <tt>Send</tt> actions to be enqueued.</t>
          <artwork><![CDATA[
Connection.StartBatch()
Connection.Send(messageData)
Connection.Send(messageData)
Connection.EndBatch()
]]></artwork>
        </section>
        <section anchor="initiate-and-send">
          <name>Send on Active Open: InitiateWithSend</name>
          <t>For application-layer protocols where the Connection initiator also sends the
first Message, the <tt>InitiateWithSend</tt> action combines Connection initiation with
a first Message sent:</t>
          <artwork><![CDATA[
Connection := Preconnection.InitiateWithSend(messageData,
                                             messageContext?,
                                             timeout?)
]]></artwork>
          <t>Whenever possible, a MessageContext should be provided to declare the Message passed to <tt>InitiateWithSend</tt>
as "safely replayable" using the <tt>safelyReplayable</tt> property. This allows the Transport Services system to make use of 0-RTT establishment in case this is supported
by the available Protocol Stacks. When the selected stack(s) do not support transmitting data upon connection
establishment, <tt>InitiateWithSend</tt> is identical to <tt>Initiate</tt> followed by <tt>Send</tt>.</t>
          <t>Neither partial sends nor send batching are supported by <tt>InitiateWithSend</tt>.</t>
          <t>The events that are sent after <tt>InitiateWithSend</tt> are equivalent to those
that would be sent by an invocation of <tt>Initiate</tt> followed immediately by an
invocation of <tt>Send</tt>, with the caveat that a send failure that occurs because
the Connection could not be established will not result in a
<tt>SendError</tt> separate from the <tt>EstablishmentError</tt> signaling the failure of Connection
establishment.</t>
        </section>
        <section anchor="priority-in-taps">
          <name>Priority and the Transport Services API</name>
          <t>The Transport Services API provides two properties to allow a sender
to signal the relative priority of data transmission: <tt>msgPriority</tt>
            <xref target="msg-priority"/> and <tt>connPriority</tt> <xref target="conn-priority"/>.
These properties are designed to allow the expression
and implementation of a wide variety of approaches to transmission priority in
the transport and application layer, including those which do not appear on
the wire (affecting only sender-side transmission scheduling) as well as those
that do (e.g. <xref target="RFC9218"/>.
A Transport Services system gives no guarantees about how its expression of
relative priorities will be realized.</t>
          <t>The Transport Services API does order <tt>connPriority</tt> over
<tt>msgPriority</tt>. In the absence of other externalities
(e.g., transport-layer flow control), a priority 1 Message on a priority 0
Connection will be sent before a priority 0 Message on a priority 1
Connection in the same group.</t>
        </section>
      </section>
      <section anchor="receiving">
        <name>Receiving Data</name>
        <t>Once a Connection is established, it can be used for receiving data (unless the
<tt>direction</tt> property is set to <tt>unidirectional send</tt>). As with
sending, the data is received in Messages. Receiving is an asynchronous
operation, in which each call to <tt>Receive</tt> enqueues a request to receive new
data from the Connection. Once data has been received, or an error is encountered,
an event will be delivered to complete any pending <tt>Receive</tt> requests (see <xref target="receive-events"/>).
If Messages arrive at the Transport Services system before <tt>Receive</tt> requests are issued,
ensuing <tt>Receive</tt> requests will first operate on these Messages before awaiting any further Messages.</t>
        <section anchor="receiving-action">
          <name>Enqueuing Receives</name>
          <t><tt>Receive</tt> takes two parameters to specify the length of data that an application
is willing to receive, both of which are optional and have default values if not
specified.</t>
          <artwork><![CDATA[
Connection.Receive(minIncompleteLength?, maxLength?)
]]></artwork>
          <t>By default, <tt>Receive</tt> will try to deliver complete Messages in a single event (<xref target="receive-complete"/>).</t>
          <t>The application can set a minIncompleteLength value to indicate the smallest partial
Message data size in bytes to be delivered in response to this <tt>Receive</tt>. By default,
this value is infinite, which means that only complete Messages should be delivered (see <xref target="receive-partial"/>
and <xref target="framing"/> for more information on how this is accomplished).
If this value is set to some smaller value, the associated receive event will be triggered
only when at least that many bytes are available, or the Message is complete with fewer
bytes, or the system needs to free up memory. Applications SHOULD always
check the length of the data delivered to the receive event and not assume
it will be as long as minIncompleteLength in the case of shorter complete Messages
or memory issues.</t>
          <t>The maxLength argument indicates the maximum size of a Message in bytes
that the application is currently prepared to receive. The default
value for maxLength is infinite. If an incoming Message is larger than the
minimum of this size and the maximum Message size on receive for
the Connection's Protocol Stack, it will be delivered via <tt>ReceivedPartial</tt>
events (<xref target="receive-partial"/>).</t>
          <t>Note that maxLength does not guarantee that the application will receive that many
bytes if they are available; the Transport Services API could return <tt>ReceivedPartial</tt> events with less
data than maxLength according to implementation constraints. Note also that maxLength
and minIncompleteLength are intended only to manage buffering, and are not interpreted
as a receiver preference for Message reordering.</t>
        </section>
        <section anchor="receive-events">
          <name>Receive Events</name>
          <t>Each call to <tt>Receive</tt> will be paired with a single <tt>Receive</tt> event. This allows an application
to provide backpressure to the transport stack when it is temporarily not ready to receive Messages.
For example, an application that will later be able to handle multiple receive events at the same time
can make multiple calls to <tt>Receive</tt> without waiting for, or processing, any receive events. An application
that is temporarily unable to process received events for a connection could refrain from calling <tt>Receive</tt>
or delay calling it. This would lead to a build-up of unread data, which, in turn, could result in
backpressure to the sender via a transport protocol's flow control.</t>
          <t>The Transport Services API should allow the application to correlate which call to <tt>Receive</tt> resulted
in a particular <tt>Receive</tt> event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="receive-complete">
            <name>Received</name>
            <artwork><![CDATA[
Connection -> Received<messageData, messageContext>
]]></artwork>
            <t>A <tt>Received</tt> event indicates the delivery of a complete Message.
It contains two objects, the received bytes as <tt>messageData</tt>, and the metadata and properties of the received Message as <tt>messageContext</tt>.</t>
            <t>The <tt>messageData</tt> value provides access to the bytes that were received for this Message, along with the length of the byte array.
The <tt>messageContext</tt> value is provided to enable retrieving metadata about the Message and referring to the Message. The MessageContext object is described in <xref target="msg-ctx"/>.</t>
            <t>See <xref target="framing"/> for handling Message framing in situations where the Protocol
Stack only provides a byte-stream transport.</t>
          </section>
          <section anchor="receive-partial">
            <name>ReceivedPartial</name>
            <artwork><![CDATA[
Connection -> ReceivedPartial<messageData, messageContext,
                              endOfMessage>
]]></artwork>
            <t>If a complete Message cannot be delivered in one event, one part of the Message
can be delivered with a <tt>ReceivedPartial</tt> event. To continue to receive more
of the same Message, the application must invoke <tt>Receive</tt> again.</t>
            <t>Multiple invocations of <tt>ReceivedPartial</tt> deliver data for the same Message by
passing the same MessageContext, until the endOfMessage flag is delivered or a
 <tt>ReceiveError</tt> occurs. All partial blocks of a single Message are delivered in
order without gaps. This event does not support delivering non-contiguous partial
Messages. If, for example, Message A is divided into three pieces (A1, A2, A3) and
Message B is divided into three pieces (B1, B2, B3), and preserveOrder is not Required,
the <tt>ReceivedPartial</tt> could deliver them in a sequence like this: A1, B1, B2, A2, A3, B3,
because the MessageContext allows the application to identify the pieces as belonging
to Message A and B, respectively. However, a sequence like: A1, A3 will never occur.</t>
            <t>If the minIncompleteLength in the Receive request was set to be infinite (indicating
a request to receive only complete Messages), the <tt>ReceivedPartial</tt> event could still be
delivered if one of the following conditions is true:</t>
            <ul spacing="normal">
              <li>
                <t>the underlying Protocol Stack supports message boundary preservation, and
the size of the Message is larger than the buffers available for a single
Message;</t>
              </li>
              <li>
                <t>the underlying Protocol Stack does not support message boundary
preservation, and the Message Framer (see <xref target="framing"/>) cannot determine
the end of the Message using the buffer space it has available; or</t>
              </li>
              <li>
                <t>the underlying Protocol Stack does not support message boundary
preservation, and no Message Framer was supplied by the application</t>
              </li>
            </ul>
            <t>Note that in the absence of message boundary preservation or
a Message Framer, all bytes received on the Connection will be represented as one
large Message of indeterminate length.</t>
            <t>In the following example, an application only wants to receive up to 1000 bytes
at a time from a Connection. If a 1500-byte Message arrives, it would receive
the Message in two separate <tt>ReceivedPartial</tt> events.</t>
            <artwork><![CDATA[
Connection.Receive(1, 1000)

// Receive first 1000 bytes, message is incomplete
Connection -> ReceivedPartial<messageData(1000 bytes),
                              messageContext, false>

Connection.Receive(1, 1000)

// Receive last 500 bytes, message is now complete
Connection -> ReceivedPartial<messageData(500 bytes),
                              messageContext, true>
]]></artwork>
          </section>
          <section anchor="receive-error">
            <name>ReceiveError</name>
            <artwork><![CDATA[
Connection -> ReceiveError<messageContext, reason?>
]]></artwork>
            <t>A <tt>ReceiveError</tt> occurs when data is received by the underlying Protocol Stack
that cannot be fully retrieved or parsed, and when it is useful for the application
to be notified of such errors. For example, a <tt>ReceiveError</tt> can
indicate that a Message (identified via the <tt>messageContext</tt> value)
that was being partially received previously, but had not
completed, encountered an error and will not be completed. This can be useful
for an application, which might wish to use this error as a hint to remove
previously received Message parts from memory. As another example,
if an incoming Message does not fulfill the <tt>recvChecksumLen</tt> property
(see <xref target="conn-recv-checksum"/>),
an application can use this error as a hint to inform the peer application
to adjust the <tt>msgChecksumLen</tt> property (see <xref target="msg-checksum"/>).</t>
            <t>In contrast, internal protocol reception errors (e.g., loss causing retransmissions
in TCP) are not signalled by this event. Conditions that irrevocably lead to
the termination of the Connection are signaled using <tt>ConnectionError</tt>
(see <xref target="termination"/>).</t>
          </section>
        </section>
        <section anchor="recv-meta">
          <name>Receive Message Properties</name>
          <t>Each Message Context could contain metadata from protocols in the Protocol Stack;
which metadata is available is Protocol Stack dependent. These are exposed through additional read-only Message Properties that can be queried from the MessageContext object (see <xref target="msg-ctx"/>) passed by the receive event.
The following metadata values are supported:</t>
          <section anchor="receive-ecn">
            <name>UDP(-Lite)-specific Property: ECN</name>
            <t>When available, Message metadata carries the value of the Explicit Congestion
Notification (ECN) field. This information can be used for logging and debugging,
and for building applications that need access to information about
the transport internals for their own operation. This property is specific to UDP
and UDP-Lite because these protocols do not implement congestion control,
and hence expose this functionality to the application (see <xref target="RFC8293"/>,
following the guidance in <xref target="RFC8085"/>)</t>
          </section>
          <section anchor="receive-early">
            <name>Early Data</name>
            <t>In some cases it can be valuable to know whether data was read as part of early
data transfer (before Connection establishment has finished). This is useful if
applications need to treat early data separately,
e.g., if early data has different security properties than data sent after
connection establishment. In the case of TLS 1.3, client early data can be replayed
maliciously (see <xref target="RFC8446"/>). Thus, receivers might wish to perform additional
checks for early data to ensure it is safely replayable. If TLS 1.3 is available
and the recipient Message was sent as part of early data, the corresponding metadata carries
a flag indicating as such. If early data is enabled, applications should check this metadata
field for Messages received during Connection establishment and respond accordingly.</t>
          </section>
          <section anchor="receiving-final-messages">
            <name>Receiving Final Messages</name>
            <t>The Message Context can indicate whether or not this Message is
the Final Message on a Connection. For any Message that is marked as Final,
the application can assume that there will be no more Messages received on the
Connection once the Message has been completely delivered. This corresponds
to the <tt>final</tt> property that can be marked on a sent Message, see <xref target="msg-final"/>.</t>
            <t>Some transport protocols and peers do not support signaling of the <tt>final</tt> property.
Applications therefore  SHOULD NOT rely on receiving a Message marked Final to know
that the sending endpoint is done sending on a Connection.</t>
            <t>Any calls to <tt>Receive</tt> once the Final Message has been delivered will result in errors.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="termination">
      <name>Connection Termination</name>
      <t>A Connection can be terminated i) by the Local Endpoint (i.e., the application calls the <tt>Close</tt>, <tt>CloseGroup</tt>, <tt>Abort</tt> or <tt>AbortGroup</tt> action), ii) by the Remote Endpoint (i.e., the remote application calls the <tt>Close</tt>, <tt>CloseGroup</tt>, <tt>Abort</tt> or <tt>AbortGroup</tt> action), or iii) because of an error (e.g., a timeout). A local call of the <tt>Close</tt> action will
cause the Connection to either send a <tt>Closed</tt> event or a <tt>ConnectionError</tt> event, and a local call of
the <tt>CloseGroup</tt> action will cause all of the Connections in the group to either send a <tt>Closed</tt> event
or a <tt>ConnectionError</tt> event. A local call of the <tt>Abort</tt> action will cause the Connection to send
a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt> as a reason, and a local call of the <tt>AbortGroup</tt> action
will cause all of the Connections in the group to send a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt>
as a reason.</t>
      <t>Remote action calls map to events similar to local calls (e.g., a remote <tt>Close</tt> causes the
Connection to either send a <tt>Closed</tt> event or a <tt>ConnectionError</tt> event), but, different from local action calls,
it is not guaranteed that such events will indeed be invoked. When an application needs to free resources
associated with a Connection, it ought not to therefore rely on the invocation of such events due to
termination calls from the Remote Endpoint, but instead use the local termination actions.</t>
      <t><tt>Close</tt> terminates a Connection after satisfying all the requirements that were
specified regarding the delivery of Messages that the application has already
given to the Transport Services system. Upon successfully satisfying all these
requirements, the Connection will send the <tt>Closed</tt> event. For example, if reliable delivery was requested
for a Message handed over before calling <tt>Close</tt>, the <tt>Closed</tt> event will signify
that this Message has indeed been delivered. This action does not affect any other Connection
in the same Connection Group.</t>
      <t>An application MUST NOT assume that it can receive any further data on a Connection
for which it has called <tt>Close</tt>, even if such data is already in flight.</t>
      <artwork><![CDATA[
Connection.Close()
]]></artwork>
      <t>The <tt>Closed</tt> event informs the application that a <tt>Close</tt> action has successfully
completed, or that the Remote Endpoint has closed the Connection.
There is no guarantee that a remote <tt>Close</tt> will be signaled.</t>
      <artwork><![CDATA[
Connection -> Closed<>
]]></artwork>
      <t><tt>Abort</tt> terminates a Connection without delivering any remaining Messages. This action does
not affect any other Connection that is entangled with this one in a Connection Group.
When the <tt>Abort</tt> action has finished, the Connection will send a <tt>ConnectionError</tt> event,
indicating local <tt>Abort</tt> as a reason.</t>
      <artwork><![CDATA[
Connection.Abort()
]]></artwork>
      <t><tt>CloseGroup</tt> gracefully terminates a Connection and any other Connections in the
same Connection Group. For example, all of the Connections in a
group might be streams of a single session for a multistreaming protocol; closing the entire
group will close the underlying session. See also <xref target="groups"/>. All Connections in the group
will send a <tt>Closed</tt> event when the <tt>CloseGroup</tt> action was successful.
As with <tt>Close</tt>, any Messages
remaining to be processed on a Connection will be handled prior to closing.</t>
      <artwork><![CDATA[
Connection.CloseGroup()
]]></artwork>
      <t><tt>AbortGroup</tt> terminates a Connection and any other Connections that are
in the same Connection Group without delivering any remaining Messages.
When the <tt>AbortGroup</tt> action has finished, all Connections in the group will
send a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt> as a reason.</t>
      <artwork><![CDATA[
Connection.AbortGroup()
]]></artwork>
      <t>A <tt>ConnectionError</tt> informs the application that: 1) data could not be delivered to the
peer after a timeout,
or 2) the Connection has been aborted (e.g., because the peer has called <tt>Abort</tt>).
There is no guarantee that an <tt>Abort</tt> from the peer will be signaled.</t>
      <artwork><![CDATA[
Connection -> ConnectionError<reason?>
]]></artwork>
    </section>
    <section anchor="state-ordering">
      <name>Connection State and Ordering of Operations and Events</name>
      <t>This Transport Services API is designed to be independent of an implementation's
concurrency model.  The details of how exactly actions are handled, and how
events are dispatched, are implementation dependent.</t>
      <t>Some transitions of Connection states are associated with events:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Ready&lt;&gt;</tt> occurs when a Connection created with <tt>Initiate</tt> or
<tt>InitiateWithSend</tt> transitions to Established state.</t>
        </li>
        <li>
          <t><tt>ConnectionReceived&lt;&gt;</tt> occurs when a Connection created with <tt>Listen</tt>
transitions to Established state.</t>
        </li>
        <li>
          <t><tt>RendezvousDone&lt;&gt;</tt> occurs when a Connection created with <tt>Rendezvous</tt>
transitions to Established state.</t>
        </li>
        <li>
          <t><tt>Closed&lt;&gt;</tt> occurs when a Connection transitions to Closed state without error.</t>
        </li>
        <li>
          <t><tt>EstablishmentError&lt;&gt;</tt> occurs when a Connection created with <tt>Initiate</tt> transitions
from Establishing state to Closed state due to an error.</t>
        </li>
        <li>
          <t><tt>ConnectionError&lt;&gt;</tt> occurs when a Connection transitions to Closed state due to
an error in all other circumstances.</t>
        </li>
      </ul>
      <t>The following diagram shows the possible states of a Connection and the
events that occur upon a transition from one state to another.</t>
      <figure anchor="fig-connstates">
        <name>Connection State Diagram</name>
        <artwork><![CDATA[
              (*)                               (**)
Establishing -----> Established -----> Closing ------> Closed
     |                                                   ^
     |                                                   |
     +---------------------------------------------------+
                  EstablishmentError<>

(*) Ready<>, ConnectionReceived<>, RendezvousDone<>
(**) Closed<>, ConnectionError<>

]]></artwork>
      </figure>
      <t>The Transport Services API  provides the following guarantees about the ordering of
 operations:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Sent&lt;&gt;</tt> events will occur on a Connection in the order in which the Messages
were sent (i.e., delivered to the kernel or to the network interface,
depending on implementation).</t>
        </li>
        <li>
          <t><tt>Received&lt;&gt;</tt> will never occur on a Connection before it is Established; i.e.
before a <tt>Ready&lt;&gt;</tt> event on that Connection, or a <tt>ConnectionReceived&lt;&gt;</tt> or
<tt>RendezvousDone&lt;&gt;</tt> containing that Connection.</t>
        </li>
        <li>
          <t>No events will occur on a Connection after it is closed; i.e., after a
<tt>Closed&lt;&gt;</tt> event, an <tt>EstablishmentError&lt;&gt;</tt> or <tt>ConnectionError&lt;&gt;</tt> will not occur on that Connection. To
ensure this ordering, <tt>Closed&lt;&gt;</tt> will not occur on a Connection while other
events on the Connection are still locally outstanding (i.e., known to the
Transport Services API and waiting to be dealt with by the application).</t>
        </li>
      </ul>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA.
Later versions of this document might create IANA registries for generic transport property names and transport property namespaces (see <xref target="property-names"/>).</t>
    </section>
    <section anchor="privacy-security">
      <name>Privacy and Security Considerations</name>
      <t>This document describes a generic API for interacting with a Transport Services system.
Part of this API includes configuration details for transport security protocols, as discussed
in <xref target="security-parameters"/>. It does not recommend use (or disuse) of specific
algorithms or protocols. Any API-compatible transport security protocol ought to work in a Transport Services system.
Security considerations for these protocols are discussed in the respective specifications.</t>
      <t><xref target="I-D.ietf-taps-arch"/> provides general security considerations and requirements for any system that implements the Transport Services architecture. These include recommendations of relevance to the API, e.g. regarding the use of keying material.</t>
      <t>The described API is used to exchange information between an application and the Transport Services system. While
it is not necessarily expected that both systems are implemented by the same authority, it is expected
that the Transport Services Implementation is either provided as a library that is selected by the application
from a trusted party, or that it is part of the operating system that the application also relies on for
other tasks.</t>
      <t>In either case, the Transport Services API is an internal interface that is used to exchange information locally between two systems.
However, as the Transport Services system is responsible for network communication, it is in the position to
potentially share any information provided by the application with the network or another communication peer.
Most of the information provided over the Transport Services API are useful to configure and select protocols and paths
and are not necessarily privacy-sensitive. Still, some information could be privacy sensitive because
it might reveal usage characteristics and habits of the user of an application.</t>
      <t>Of course any communication over a network reveals usage characteristics, because all
packets, as well as their timing and size, are part of the network-visible wire image <xref target="RFC8546"/>. However,
the selection of a protocol and its configuration also impacts which information is visible, potentially in
clear text, and which other entities can access it. How Transport Services systems ought to choose protocols depending on the security properties required is out of scope of this specification, as it is limited to transport protocols. The choice of a security protocol can be informed by the survey provided in <xref target="RFC8922"/>.</t>
      <t>In most cases, information provided for protocol and path selection
does not directly translate to information that can be observed by network devices on the path.
However, there might be specific configuration
information that is intended for path exposure, e.g., a DiffServ codepoint setting, that is either provided
directly by the application or indirectly configured for a traffic profile.</t>
      <t>Applications should be aware that a single communication attempt can lead to more than one connection establishment procedure.
This is the case, for example, when the Transport Services system also executes name resolution, when support mechanisms such as
TURN or ICE are used to establish connectivity, if protocols or paths are raced, or if a path fails and
fallback or re-establishment is supported in the Transport Services system. Applications should take special
care when using 0-RTT session resumption (see <xref target="prop-0rtt"/>), as early data sent across multiple paths during
connection establishment could reveal information that can be used to correlate endpoints on these paths.</t>
      <t>Applications should also take care to not assume that all data received using the Transport Services API is always
complete or well-formed. Specifically, Messages that are received partially <xref target="receive-partial"/> could be a source
of truncation attacks if applications do not distinguish between partial Messages and complete Messages.</t>
      <t>The Transport Services API explicitly does not require the application to resolve names, though there is
a tradeoff between early and late binding of addresses to names. Early binding
allows the Transport Services Implementation to reduce Connection setup latency, at the cost
of potentially limited scope for alternate path discovery during Connection
establishment, as well as potential additional information leakage about
application interest when used with a resolution method (such as DNS without
TLS) which does not protect query confidentiality.
Names used with the Transport Services API SHOULD be fully-qualified domain names (FQDNs); not providing an FQDN will result in the Transport Services Implementation needing to to use DNS search domains for name resolution, which might lead to inconsistent or unpredictable behavior.</t>
      <t>These communication activities are not different from what is used today. However,
the goal of a Transport Services system is to support
such mechanisms as a generic service within the transport layer. This enables applications to more dynamically
benefit from innovations and new protocols in the transport, although it reduces transparency of the
underlying communication actions to the application itself. The Transport Services API is designed such that protocol and path selection
can be limited to a small and controlled set if the application requires this or to implement a security policy.
can be limited to a small and controlled set if required by the application to perform a function or to provide security.
Further,
introspection on the properties of Connection objects allows an application to determine which protocol(s) and path(s) are in use.
A Transport Services system SHOULD provide a facility logging the communication events of each Connection.</t>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This work has received funding from the European Union's Horizon 2020 research and
innovation programme under grant agreements No. 644334 (NEAT) and No. 688421 (MAMI).</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 Stuart Cheshire, Josh Graessley, David Schinazi, and Eric Kinnear for
their implementation and design efforts, including Happy Eyeballs, that heavily
influenced this work. Thanks to Laurent Chuat and Jason Lee for initial work on
the Post Sockets interface, from which this work has evolved. Thanks to
Maximilian Franke for asking good questions based on implementation experience
and for contributing text, e.g., on multicast.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.ietf-taps-arch">
          <front>
            <title>Architecture and Requirements 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="9" month="November" year="2023"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication.  This
   system exposes transport protocol features to applications for
   network communication.  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 a Transport Services
   Implementation can use multiple IP addresses, multiple protocols, and
   multiple paths, and provide multiple application streams.  This
   document provides the architecture and requirements.  It 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-19"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="ALPN">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.ietf-taps-impl">
          <front>
            <title>Implementing Interfaces to Transport Services</title>
            <author fullname="Anna Brunstrom" initials="A." surname="Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Reese Enghardt" initials="R." surname="Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Philipp S. Tiesel" initials="P. S." surname="Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <date day="14" month="December" year="2023"/>
            <abstract>
              <t>   The Transport Services system enables applications to use transport
   protocols flexibly for network communication and defines a protocol-
   independent Transport Services Application Programming Interface
   (API) that is based on an asynchronous, event-driven interaction
   pattern.  This document serves as a guide to implementing such a
   system.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-18"/>
        </reference>
        <reference anchor="RFC7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author fullname="D. Anipko" initials="D." role="editor" surname="Anipko"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team. It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously. The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information. PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources. PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="TCP-COUPLING">
          <front>
            <title>ctrlTCP: Reducing Latency through Coupled, Heterogeneous Multi-Flow TCP Congestion Control</title>
            <author initials="S." surname="Islam" fullname="Safiqul Islam">
              <organization/>
            </author>
            <author initials="M." surname="Welzl" fullname="Michael Welzl">
              <organization/>
            </author>
            <author initials="K." surname="Hiorth" fullname="Kristian Hiorth">
              <organization/>
            </author>
            <author initials="D." surname="Hayes" fullname="David Hayes">
              <organization/>
            </author>
            <author initials="G." surname="Armitage" fullname="Grenville Armitage">
              <organization/>
            </author>
            <author initials="S." surname="Gjessing" fullname="Stein Gjessing">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="IEEE INFOCOM Global Internet Symposium (GI) workshop (GI 2018)" value=""/>
        </reference>
        <reference anchor="RFC8095">
          <front>
            <title>Services Provided by IETF Transport Protocols and Congestion Control Mechanisms</title>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst"/>
            <author fullname="B. Trammell" initials="B." role="editor" surname="Trammell"/>
            <author fullname="M. Kuehlewind" initials="M." role="editor" surname="Kuehlewind"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>This document describes, surveys, and classifies the protocol mechanisms provided by existing IETF protocols, as background for determining a common set of transport services. It examines the Transmission Control Protocol (TCP), Multipath TCP, the Stream Control Transmission Protocol (SCTP), the User Datagram Protocol (UDP), UDP-Lite, the Datagram Congestion Control Protocol (DCCP), the Internet Control Message Protocol (ICMP), the Real-Time Transport Protocol (RTP), File Delivery over Unidirectional Transport / Asynchronous Layered Coding (FLUTE/ALC) for Reliable Multicast, NACK- Oriented Reliable Multicast (NORM), Transport Layer Security (TLS), Datagram TLS (DTLS), and the Hypertext Transport Protocol (HTTP), when HTTP is used as a pseudotransport. This survey provides background for the definition of transport services within the TAPS working group.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8095"/>
          <seriesInfo name="DOI" value="10.17487/RFC8095"/>
        </reference>
        <reference anchor="RFC8923">
          <front>
            <title>A Minimal Set of Transport Services for End Systems</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl"/>
            <author fullname="S. Gjessing" initials="S." surname="Gjessing"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document recommends a minimal set of Transport Services offered by end systems and gives guidance on choosing among the available mechanisms and protocols. It is based on the set of transport features in RFC 8303.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8923"/>
          <seriesInfo name="DOI" value="10.17487/RFC8923"/>
        </reference>
        <reference anchor="RFC8922">
          <front>
            <title>A Survey of the Interaction between Security Protocols and Transport Services</title>
            <author fullname="T. Enghardt" initials="T." surname="Enghardt"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="C. Perkins" initials="C." surname="Perkins"/>
            <author fullname="K. Rose" initials="K." surname="Rose"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document provides a survey of commonly used or notable network security protocols, with a focus on how they interact and integrate with applications and transport protocols. Its goal is to supplement efforts to define and catalog Transport Services by describing the interfaces required to add security protocols. This survey is not limited to protocols developed within the scope or context of the IETF, and those included represent a superset of features a Transport Services system may need to support.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8922"/>
          <seriesInfo name="DOI" value="10.17487/RFC8922"/>
        </reference>
        <reference anchor="RFC5952">
          <front>
            <title>A Recommendation for IPv6 Address Text Representation</title>
            <author fullname="S. Kawamura" initials="S." surname="Kawamura"/>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>As IPv6 deployment increases, there will be a dramatic increase in the need to use IPv6 addresses in text. While the IPv6 address architecture in Section 2.2 of RFC 4291 describes a flexible model for text representation of an IPv6 address, this flexibility has been causing problems for operators, system engineers, and users. This document defines a canonical textual representation format. It does not define a format for internal storage, such as within an application or database. It is expected that the canonical format will be followed by humans and systems when representing IPv6 addresses as text, but all implementations must accept and be able to handle any legitimate RFC 4291 format. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5952"/>
          <seriesInfo name="DOI" value="10.17487/RFC5952"/>
        </reference>
        <reference anchor="RFC2914">
          <front>
            <title>Congestion Control Principles</title>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <date month="September" year="2000"/>
            <abstract>
              <t>The goal of this document is to explain the need for congestion control in the Internet, and to discuss what constitutes correct congestion control. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="41"/>
          <seriesInfo name="RFC" value="2914"/>
          <seriesInfo name="DOI" value="10.17487/RFC2914"/>
        </reference>
        <reference anchor="RFC8084">
          <front>
            <title>Network Transport Circuit Breakers</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>This document explains what is meant by the term "network transport Circuit Breaker". It describes the need for Circuit Breakers (CBs) for network tunnels and applications when using non-congestion- controlled traffic and explains where CBs are, and are not, needed. It also defines requirements for building a CB and the expected outcomes of using a CB within the Internet.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="208"/>
          <seriesInfo name="RFC" value="8084"/>
          <seriesInfo name="DOI" value="10.17487/RFC8084"/>
        </reference>
        <reference anchor="RFC8801">
          <front>
            <title>Discovering Provisioning Domain Names and Data</title>
            <author fullname="P. Pfister" initials="P." surname="Pfister"/>
            <author fullname="É. Vyncke" surname="É. Vyncke"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="W. Shao" initials="W." surname="Shao"/>
            <date month="July" year="2020"/>
            <abstract>
              <t>Provisioning Domains (PvDs) are defined as consistent sets of network configuration information. PvDs allows hosts to manage connections to multiple networks and interfaces simultaneously, such as when a home router provides connectivity through both a broadband and cellular network provider.</t>
              <t>This document defines a mechanism for explicitly identifying PvDs through a Router Advertisement (RA) option. This RA option announces a PvD identifier, which hosts can compare to differentiate between PvDs. The option can directly carry some information about a PvD and can optionally point to PvD Additional Information that can be retrieved using HTTP over TLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8801"/>
          <seriesInfo name="DOI" value="10.17487/RFC8801"/>
        </reference>
        <reference anchor="RFC8981">
          <front>
            <title>Temporary Address Extensions for Stateless Address Autoconfiguration in IPv6</title>
            <author fullname="F. Gont" initials="F." surname="Gont"/>
            <author fullname="S. Krishnan" initials="S." surname="Krishnan"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <author fullname="R. Draves" initials="R." surname="Draves"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes an extension to IPv6 Stateless Address Autoconfiguration that causes hosts to generate temporary addresses with randomized interface identifiers for each prefix advertised with autoconfiguration enabled. Changing addresses over time limits the window of time during which eavesdroppers and other information collectors may trivially perform address-based network-activity correlation when the same address is employed for multiple transactions by the same host. Additionally, it reduces the window of exposure of a host as being accessible via an address that becomes revealed as a result of active communication. This document obsoletes RFC 4941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8981"/>
          <seriesInfo name="DOI" value="10.17487/RFC8981"/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert"/>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd"/>
            <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="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </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"/>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <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="RFC8489">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin"/>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="R. Mahy" initials="R." surname="Mahy"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with 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.</t>
              <t>This document obsoletes RFC 5389.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8489"/>
          <seriesInfo name="DOI" value="10.17487/RFC8489"/>
        </reference>
        <reference anchor="RFC8656">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="T. Reddy" initials="T." role="editor" surname="Reddy"/>
            <author fullname="A. Johnston" initials="A." role="editor" surname="Johnston"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>If a host is located behind a NAT, it can be impossible for that host to communicate directly with other hosts (peers) in certain situations. 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 "Traversal Using Relays around NAT" (TURN), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay. TURN differs from other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address.</t>
              <t>The TURN protocol was designed to be used as part of the Interactive Connectivity Establishment (ICE) approach to NAT traversal, though it can also be used without ICE.</t>
              <t>This document obsoletes RFCs 5766 and 6156.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8656"/>
          <seriesInfo name="DOI" value="10.17487/RFC8656"/>
        </reference>
        <reference anchor="RFC3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne"/>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo"/>
            <author fullname="A. Johnston" initials="A." surname="Johnston"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <author fullname="R. Sparks" initials="R." surname="Sparks"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="E. Schooler" initials="E." surname="Schooler"/>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants. These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC7478">
          <front>
            <title>Web Real-Time Communication Use Cases and Requirements</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="S. Hakansson" initials="S." surname="Hakansson"/>
            <author fullname="G. Eriksson" initials="G." surname="Eriksson"/>
            <date month="March" year="2015"/>
            <abstract>
              <t>This document describes web-based real-time communication use cases. Requirements on the browser functionality are derived from the use cases.</t>
              <t>This document was developed in an initial phase of the work with rather minor updates at later stages. It has not really served as a tool in deciding features or scope for the WG's efforts so far. It is being published to record the early conclusions of the WG. It will not be used as a set of rigid guidelines that specifications and implementations will be held to in the future.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7478"/>
          <seriesInfo name="DOI" value="10.17487/RFC7478"/>
        </reference>
        <reference anchor="RFC8699">
          <front>
            <title>Coupled Congestion Control for RTP Media</title>
            <author fullname="S. Islam" initials="S." surname="Islam"/>
            <author fullname="M. Welzl" initials="M." surname="Welzl"/>
            <author fullname="S. Gjessing" initials="S." surname="Gjessing"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>When multiple congestion-controlled Real-time Transport Protocol (RTP) sessions traverse the same network bottleneck, combining their controls can improve the total on-the-wire behavior in terms of delay, loss, and fairness. This document describes such a method for flows that have the same sender, in a way that is as flexible and simple as possible while minimizing the number of changes needed to existing RTP applications. This document also specifies how to apply the method for the Network-Assisted Dynamic Adaptation (NADA) congestion control algorithm and provides suggestions on how to apply it to other congestion control algorithms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8699"/>
          <seriesInfo name="DOI" value="10.17487/RFC8699"/>
        </reference>
        <reference anchor="RFC8838">
          <front>
            <title>Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov"/>
            <author fullname="J. Uberti" initials="J." surname="Uberti"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes "Trickle ICE", an extension to the Interactive Connectivity Establishment (ICE) protocol that enables ICE agents to begin connectivity checks while they are still gathering candidates, by incrementally exchanging candidates over time instead of all at once. This method can considerably accelerate the process of establishing a communication session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8838"/>
          <seriesInfo name="DOI" value="10.17487/RFC8838"/>
        </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"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="S. Loreto" initials="S." surname="Loreto"/>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann"/>
            <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>
        <reference anchor="RFC7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author fullname="D. Black" initials="D." role="editor" surname="Black"/>
            <author fullname="P. Jones" initials="P." surname="Jones"/>
            <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="RFC2474">
          <front>
            <title>Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers</title>
            <author fullname="K. Nichols" initials="K." surname="Nichols"/>
            <author fullname="S. Blake" initials="S." surname="Blake"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines the IP header field, called the DS (for differentiated services) field. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2474"/>
          <seriesInfo name="DOI" value="10.17487/RFC2474"/>
        </reference>
        <reference anchor="RFC8622">
          <front>
            <title>A Lower-Effort Per-Hop Behavior (LE PHB) for Differentiated Services</title>
            <author fullname="R. Bless" initials="R." surname="Bless"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document specifies properties and characteristics of a Lower- Effort Per-Hop Behavior (LE PHB). The primary objective of this LE PHB is to protect Best-Effort (BE) traffic (packets forwarded with the default PHB) from LE traffic in congestion situations, i.e., when resources become scarce, BE traffic has precedence over LE traffic and may preempt it. Alternatively, packets forwarded by the LE PHB can be associated with a scavenger service class, i.e., they scavenge otherwise-unused resources only. There are numerous uses for this PHB, e.g., for background traffic of low precedence, such as bulk data transfers with low priority in time, non-time-critical backups, larger software updates, web search engines while gathering information from web servers and so on. This document recommends a standard Differentiated Services Code Point (DSCP) value for the LE PHB.</t>
              <t>This specification obsoletes RFC 3662 and updates the DSCP recommended in RFCs 4594 and 8325 to use the DSCP assigned in this specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8622"/>
          <seriesInfo name="DOI" value="10.17487/RFC8622"/>
        </reference>
        <reference anchor="RFC2597">
          <front>
            <title>Assured Forwarding PHB Group</title>
            <author fullname="J. Heinanen" initials="J." surname="Heinanen"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="W. Weiss" initials="W." surname="Weiss"/>
            <author fullname="J. Wroclawski" initials="J." surname="Wroclawski"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This document defines a general use Differentiated Services (DS) Per-Hop-Behavior (PHB) Group called Assured Forwarding (AF). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2597"/>
          <seriesInfo name="DOI" value="10.17487/RFC2597"/>
        </reference>
        <reference anchor="RFC3246">
          <front>
            <title>An Expedited Forwarding PHB (Per-Hop Behavior)</title>
            <author fullname="B. Davie" initials="B." surname="Davie"/>
            <author fullname="A. Charny" initials="A." surname="Charny"/>
            <author fullname="J.C.R. Bennet" initials="J.C.R." surname="Bennet"/>
            <author fullname="K. Benson" initials="K." surname="Benson"/>
            <author fullname="J.Y. Le Boudec" initials="J.Y." surname="Le Boudec"/>
            <author fullname="W. Courtney" initials="W." surname="Courtney"/>
            <author fullname="S. Davari" initials="S." surname="Davari"/>
            <author fullname="V. Firoiu" initials="V." surname="Firoiu"/>
            <author fullname="D. Stiliadis" initials="D." surname="Stiliadis"/>
            <date month="March" year="2002"/>
            <abstract>
              <t>This document defines a PHB (per-hop behavior) called Expedited Forwarding (EF). The PHB is a basic building block in the Differentiated Services architecture. EF is intended to provide a building block for low delay, low jitter and low loss services by ensuring that the EF aggregate is served at a certain configured rate. This document obsoletes RFC 2598. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3246"/>
          <seriesInfo name="DOI" value="10.17487/RFC3246"/>
        </reference>
        <reference anchor="RFC5865">
          <front>
            <title>A Differentiated Services Code Point (DSCP) for Capacity-Admitted Traffic</title>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="J. Polk" initials="J." surname="Polk"/>
            <author fullname="M. Dolly" initials="M." surname="Dolly"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document requests one Differentiated Services Code Point (DSCP) from the Internet Assigned Numbers Authority (IANA) for a class of real-time traffic. This traffic class conforms to the Expedited Forwarding Per-Hop Behavior. This traffic is also admitted by the network using a Call Admission Control (CAC) procedure involving authentication, authorization, and capacity admission. This differs from a real-time traffic class that conforms to the Expedited Forwarding Per-Hop Behavior but is not subject to capacity admission or subject to very coarse capacity admission. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5865"/>
          <seriesInfo name="DOI" value="10.17487/RFC5865"/>
        </reference>
        <reference anchor="RFC4594">
          <front>
            <title>Configuration Guidelines for DiffServ Service Classes</title>
            <author fullname="J. Babiarz" initials="J." surname="Babiarz"/>
            <author fullname="K. Chan" initials="K." surname="Chan"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <date month="August" year="2006"/>
            <abstract>
              <t>This document describes service classes configured with Diffserv and recommends how they can be used and how to construct them using Differentiated Services Code Points (DSCPs), traffic conditioners, Per-Hop Behaviors (PHBs), and Active Queue Management (AQM) mechanisms. There is no intrinsic requirement that particular DSCPs, traffic conditioners, PHBs, and AQM be used for a certain service class, but as a policy and for interoperability it is useful to apply them consistently. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4594"/>
          <seriesInfo name="DOI" value="10.17487/RFC4594"/>
        </reference>
        <reference anchor="RFC8899">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="T. Jones" initials="T." surname="Jones"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <author fullname="I. Rüngeler" initials="I." surname="Rüngeler"/>
            <author fullname="T. Völker" initials="T." surname="Völker"/>
            <date month="September" year="2020"/>
            <abstract>
              <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram. This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased. This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
              <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
              <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8899"/>
          <seriesInfo name="DOI" value="10.17487/RFC8899"/>
        </reference>
        <reference anchor="RFC5482">
          <front>
            <title>TCP User Timeout Option</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert"/>
            <author fullname="F. Gont" initials="F." surname="Gont"/>
            <date month="March" year="2009"/>
            <abstract>
              <t>The TCP user timeout controls how long transmitted data may remain unacknowledged before a connection is forcefully closed. It is a local, per-connection parameter. This document specifies a new TCP option -- the TCP User Timeout Option -- that allows one end of a TCP connection to advertise its current user timeout value. This information provides advice to the other end of the TCP connection to adapt its user timeout accordingly. Increasing the user timeouts on both ends of a TCP connection allows it to survive extended periods without end-to-end connectivity. Decreasing the user timeouts allows busy servers to explicitly notify their clients that they will maintain the connection state only for a short time without connectivity. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5482"/>
          <seriesInfo name="DOI" value="10.17487/RFC5482"/>
        </reference>
        <reference anchor="RFC9329">
          <front>
            <title>TCP Encapsulation of Internet Key Exchange Protocol (IKE) and IPsec Packets</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="V. Smyslov" initials="V." surname="Smyslov"/>
            <date month="November" year="2022"/>
            <abstract>
              <t>This document describes a method to transport Internet Key Exchange Protocol (IKE) and IPsec packets over a TCP connection for traversing network middleboxes that may block IKE negotiation over UDP. This method, referred to as "TCP encapsulation", involves sending both IKE packets for Security Association (SA) establishment and Encapsulating Security Payload (ESP) packets over a TCP connection. This method is intended to be used as a fallback option when IKE cannot be negotiated over UDP.</t>
              <t>TCP encapsulation for IKE and IPsec was defined in RFC 8229. This document clarifies the specification for TCP encapsulation by including additional clarifications obtained during implementation and deployment of this method. This documents obsoletes RFC 8229.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9329"/>
          <seriesInfo name="DOI" value="10.17487/RFC9329"/>
        </reference>
        <reference anchor="RFC9218">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="K. Oku" initials="K." surname="Oku"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes a scheme that allows an HTTP client to communicate its preferences for how the upstream server prioritizes responses to its requests, and also allows a server to hint to a downstream intermediary how its responses should be prioritized when they are forwarded. This document defines the Priority header field for communicating the initial priority in an HTTP version-independent manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing responses. These share a common format structure that is designed to provide future extensibility.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9218"/>
          <seriesInfo name="DOI" value="10.17487/RFC9218"/>
        </reference>
        <reference anchor="RFC8293">
          <front>
            <title>A Framework for Multicast in Network Virtualization over Layer 3</title>
            <author fullname="A. Ghanwani" initials="A." surname="Ghanwani"/>
            <author fullname="L. Dunbar" initials="L." surname="Dunbar"/>
            <author fullname="M. McBride" initials="M." surname="McBride"/>
            <author fullname="V. Bannai" initials="V." surname="Bannai"/>
            <author fullname="R. Krishnan" initials="R." surname="Krishnan"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>This document provides a framework for supporting multicast traffic in a network that uses Network Virtualization over Layer 3 (NVO3). Both infrastructure multicast and application-specific multicast are discussed. It describes the various mechanisms that can be used for delivering such traffic as well as the data plane and control plane considerations for each of the mechanisms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8293"/>
          <seriesInfo name="DOI" value="10.17487/RFC8293"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <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="RFC8546">
          <front>
            <title>The Wire Image of a Network Protocol</title>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <author fullname="M. Kuehlewind" initials="M." surname="Kuehlewind"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This document defines the wire image, an abstraction of the information available to an on-path non-participant in a networking protocol. This abstraction is intended to shed light on the implications that increased encryption has for network functions that use the wire image.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8546"/>
          <seriesInfo name="DOI" value="10.17487/RFC8546"/>
        </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"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="N. Khademi" initials="N." surname="Khademi"/>
            <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>
      </references>
    </references>
    <?line 3730?>

<section anchor="implmapping">
      <name>Implementation Mapping</name>
      <t>The way the concepts from this abstract API map into concrete APIs in a
given language on a given platform largely depends on the features and norms of
the language and the platform. Actions could be implemented as functions or
method calls, for instance, and events could be implemented via event queues,
handler functions or classes, communicating sequential processes, or other
asynchronous calling conventions.</t>
      <section anchor="types">
        <name>Types</name>
        <t>The basic types mentioned in <xref target="notation"/> typically have natural
correspondences in practical programming languages, perhaps constrained by
implementation-specific limitations. For example:</t>
        <ul spacing="normal">
          <li>
            <t>An Integer can typically be represented in C by an <tt>int</tt> or <tt>long</tt>, subject
to the underlying platform's ranges for each.</t>
          </li>
          <li>
            <t>In C, a Tuple may be represented as a <tt>struct</tt> with one member for each of
the value types in the ordered grouping. In Python, by contrast, a Tuple may
be represented as a <tt>tuple</tt>, a sequence of dynamically-typed
elements.</t>
          </li>
          <li>
            <t>A Set may be represented as a <tt>std::set</tt> in C++ or as a <tt>set</tt> in
Python. In C, it may be represented as an array or as a higher-level data
structure with appropriate accessors defined.</t>
          </li>
        </ul>
        <t>The objects described in <xref target="notation"/> can similarly be represented in
different ways depending on which programming language is used. Objects
like Preconnections, Connections, and Listeners can be long-lived, and
benefit from using object-oriented constructs. Note that in C, these
objects may need to provide a way to release or free their underlying
memory when the application is done using them. For example, since a
Preconnection can be used to initiate multiple Connections, it is the
responsibility of the application to clean up the Preconnection memory
if necessary.</t>
      </section>
      <section anchor="events-and-errors">
        <name>Events and Errors</name>
        <t>This specification treats events and errors similarly. Errors, just as any
other events, may occur asynchronously in network applications. However,
implementations of this API may report errors synchronously,
according to the error handling idioms of the implementation
platform, where they can be immediately detected, such as by generating an
exception when attempting to initiate a Connection with inconsistent
Transport Properties. An error can provide an optional reason to the
application with further details about why the error occurred.</t>
      </section>
      <section anchor="time-duration">
        <name>Time Duration</name>
        <t>Time duration types are implementation-specific.
For instance, it could be a number of seconds, number of milliseconds, or a <tt>struct timeval</tt> in C or a user-defined <tt>Duration</tt> class in C++.</t>
      </section>
    </section>
    <section anchor="convenience-functions">
      <name>Convenience Functions</name>
      <section anchor="preference-conv">
        <name>Adding Preference Properties</name>
        <t>TransportProperties will frequently need to set
Selection Properties of type <tt>Preference</tt>, therefore implementations can provide special actions
for adding each preference level i.e, <tt>TransportProperties.Set(some_property, avoid)
is equivalent to </tt>TransportProperties.Avoid(some_property)`:</t>
        <artwork><![CDATA[
TransportProperties.Require(property)
TransportProperties.Prefer(property)
TransportProperties.NoPreference(property)
TransportProperties.Avoid(property)
TransportProperties.Prohibit(property)
]]></artwork>
      </section>
      <section anchor="property-profiles">
        <name>Transport Property Profiles</name>
        <t>To ease the use of the Transport Services API, implementations
can provide a mechanism to create Transport Property objects (see <xref target="selection-props"/>)
that are preconfigured with frequently used sets of properties; the following are
in common use in current applications:</t>
        <section anchor="reliable-inorder-stream">
          <name>reliable-inorder-stream</name>
          <t>This profile provides reliable, in-order transport service with
congestion control.
TCP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrio">
            <name>reliable-inorder-stream preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">no preference</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="reliable-message">
          <name>reliable-message</name>
          <t>This profile provides message-preserving, reliable, in-order
transport service with congestion control.
SCTP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrm">
            <name>reliable-message preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="unreliable-datagram">
          <name>unreliable-datagram</name>
          <t>This profile provides a datagram transport service without any
reliability guarantee.
An example of a protocol that provides this service is UDP.
It consists of the following properties:</t>
          <table anchor="tabud">
            <name>unreliable-datagram preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">no preference</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">safelyReplayable</td>
                <td align="left">true</td>
              </tr>
            </tbody>
          </table>
          <t>Applications that choose this Transport Property Profile would
avoid the additional latency that could be introduced
by retransmission or reordering in a transport protocol.</t>
          <t>Applications that choose this Transport Property Profile to reduce latency
should also consider setting an appropriate capacity profile Property,
see <xref target="prop-cap-profile"/> and might benefit from controlling checksum
coverage, see <xref target="prop-checksum-control-send"/> and <xref target="prop-checksum-control-receive"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="relationship-to-the-minimal-set-of-transport-services-for-end-systems">
      <name>Relationship to the Minimal Set of Transport Services for End Systems</name>
      <t><xref target="RFC8923"/> identifies a minimal set of transport services that end systems should offer. These services make all non-security-related transport features of TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT available that 1) require interaction with the application, and 2) do not get in the way of a possible implementation over TCP (or, with limitations, UDP). The following text explains how this minimal set is reflected in the present API. For brevity, it is based on the list in  <xref section="4.1" sectionFormat="of" target="RFC8923"/>, updated according to the discussion in <xref section="5" sectionFormat="of" target="RFC8923"/>. The present API covers all elements of this section.
This list is a subset of the transport features in Appendix A of <xref target="RFC8923"/>, which refers to the primitives in "pass 2" (Section 4) of <xref target="RFC8303"/> for further details on the implementation with TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT. This facilitates finding the specifications for implementing
the services listed below with these protocols.</t>
      <ul spacing="normal">
        <li>
          <t>Connect:
<tt>Initiate</tt> action (<xref target="initiate"/>).</t>
        </li>
        <li>
          <t>Listen:
<tt>Listen</tt> action (<xref target="listen"/>).</t>
        </li>
        <li>
          <t>Specify number of attempts and/or timeout for the first establishment Message:
<tt>timeout</tt> parameter of <tt>Initiate</tt> (<xref target="initiate"/>) or <tt>InitiateWithSend</tt> action (<xref target="initiate-and-send"/>).</t>
        </li>
        <li>
          <t>Disable MPTCP:
<tt>multipath</tt> property (<xref target="multipath-mode"/>).</t>
        </li>
        <li>
          <t>Hand over a Message to reliably transfer (possibly multiple times) before connection establishment:
<tt>InitiateWithSend</tt> action (<xref target="initiate-and-send"/>).</t>
        </li>
        <li>
          <t>Change timeout for aborting connection (using retransmit limit or time value):
<tt>connTimeout</tt> property, using a time value (<xref target="conn-timeout"/>).</t>
        </li>
        <li>
          <t>Timeout event when data could not be delivered for too long:
<tt>ConnectionError</tt> event (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>Suggest timeout to the peer:
See "TCP-specific Properties: User Timeout Option (UTO)" (<xref target="tcp-uto"/>).</t>
        </li>
        <li>
          <t>Notification of ICMP error message arrival:
<tt>softErrorNotify</tt> (<xref target="prop-soft-error"/>) and <tt>SoftError</tt> event (<xref target="soft-errors"/>).</t>
        </li>
        <li>
          <t>Choose a scheduler to operate between streams of an association:
<tt>connScheduler</tt> property (<xref target="conn-scheduler"/>).</t>
        </li>
        <li>
          <t>Configure priority or weight for a scheduler:
<tt>connPriority</tt> property (<xref target="conn-priority"/>).</t>
        </li>
        <li>
          <t>"Specify checksum coverage used by the sender" and "Disable checksum when sending":
<tt>msgChecksumLen</tt> property (<xref target="msg-checksum"/>) and <tt>fullChecksumSend</tt> property (<xref target="prop-checksum-control-send"/>).</t>
        </li>
        <li>
          <t>"Specify minimum checksum coverage required by receiver" and "Disable checksum requirement when receiving":
<tt>recvChecksumLen</tt> property (<xref target="conn-recv-checksum"/>) and <tt>fullChecksumRecv</tt> property (<xref target="prop-checksum-control-receive"/>).</t>
        </li>
        <li>
          <t>"Specify DF field":
<tt>noFragmentation</tt> property (<xref target="send-singular"/>).</t>
        </li>
        <li>
          <t>Get max. transport-message size that may be sent using a non-fragmented IP packet from the configured interface:
<tt>singularTransmissionMsgMaxLen</tt> property (<xref target="conn-max-msg-notfrag"/>).</t>
        </li>
        <li>
          <t>Get max. transport-message size that may be received from the configured interface:
<tt>recvMsgMaxLen</tt> property (<xref target="conn-max-msg-recv"/>).</t>
        </li>
        <li>
          <t>Obtain ECN field:
This is a read-only Message Property of the MessageContext object (see "UDP(-Lite)-specific Property: ECN" <xref target="receive-ecn"/>).</t>
        </li>
        <li>
          <t>"Specify DSCP field", "Disable Nagle algorithm", "Enable and configure a <tt>Low Extra Delay Background Transfer</tt>":
as suggested in <xref section="5.5" sectionFormat="of" target="RFC8923"/>, these transport features are collectively offered via the <tt>connCapacityProfile</tt> property (<xref target="prop-cap-profile"/>). Per-Message control ("Request not to bundle messages") is offered via the <tt>msgCapacityProfile</tt> property (<xref target="send-profile"/>).</t>
        </li>
        <li>
          <t>Close after reliably delivering all remaining data, causing an event informing the application on the other side:
this is offered by the <tt>Close</tt> action with slightly changed semantics in line with the discussion in <xref section="5.2" sectionFormat="of" target="RFC8923"/> (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>"Abort without delivering remaining data, causing an event informing the application on the other side" and "Abort without delivering remaining data, not causing an event informing the application on the other side":
this is offered by the <tt>Abort</tt> action without promising that this is signaled to the other side. If it is, a <tt>ConnectionError</tt> event will be invoked at the peer (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>"Reliably transfer data, with congestion control", "Reliably transfer a message, with congestion control" and "Unreliably transfer a message":
data is transferred via the <tt>Send</tt> action (<xref target="sending"/>). Reliability is controlled via the <tt>reliability</tt> (<xref target="prop-reliable"/>) property and the <tt>msgReliable</tt> Message Property (<xref target="msg-reliable-message"/>). Transmitting data as a Message or without delimiters is controlled via Message Framers (<xref target="framing"/>). The choice of congestion control is provided via the <tt>congestionControl</tt> property (<xref target="prop-cc"/>).</t>
        </li>
        <li>
          <t>Configurable Message Reliability:
the <tt>msgLifetime</tt> Message Property implements a time-based way to configure message reliability (<xref target="msg-lifetime"/>).</t>
        </li>
        <li>
          <t>"Ordered message delivery (potentially slower than unordered)" and "Unordered message delivery (potentially faster than ordered)":
these two transport features are controlled via the Message Property <tt>msgOrdered</tt> (<xref target="msg-ordered"/>).</t>
        </li>
        <li>
          <t>Request not to delay the acknowledgment (SACK) of a message:
should the protocol support it, this is one of the transport features the Transport Services system can apply when an application uses the <tt>connCapacityProfile</tt> Property (<xref target="prop-cap-profile"/>) or the <tt>msgCapacityProfile</tt> Message Property (<xref target="send-profile"/>) with value <tt>Low Latency/Interactive</tt>.</t>
        </li>
        <li>
          <t>Receive data (with no message delimiting):
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>Received</tt> event (<xref target="receive-complete"/>).</t>
        </li>
        <li>
          <t>Receive a message:
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>Received</tt> event (<xref target="receive-complete"/>), using Message Framers (<xref target="framing"/>).</t>
        </li>
        <li>
          <t>Information about partial message arrival:
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>ReceivedPartial</tt> event (<xref target="receive-partial"/>).</t>
        </li>
        <li>
          <t>Notification of send failures:
<tt>Expired</tt> event (<xref target="expired"/>) and <tt>SendError</tt> event (<xref target="send-error"/>).</t>
        </li>
        <li>
          <t>Notification that the stack has no more user data to send:
applications can obtain this information via the <tt>Sent</tt> event (<xref target="sent"/>).</t>
        </li>
        <li>
          <t>Notification to a receiver that a partial message delivery has been aborted:
<tt>ReceiveError</tt> event (<xref target="receive-error"/>).</t>
        </li>
        <li>
          <t>Notification of Excessive Retransmissions (early warning below abortion threshold):
 <tt>SoftError</tt> event (<xref target="soft-errors"/>).</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9+3IjR3Y3+H8+RbkVGya/AKC+SWpR45lhs1tSf9MXTpOa
WX/yhFgACmS5gSq4qkAKardj32EfYPdZdt9kn2TPNfNkVgFk6zL2F/E5wrYa
rMrKy8lzP78zHo9dV3bL4ig7rrLjads1+azLjtfrZTnLu7Kuspf5tmiyF1VX
NIt8VmRdnZ03edWu66bLzormupwVrcun06a4PsrOj0/PwsNuXs+qfAWjz5t8
0Y3LoluMu3zdjkt9ZPzwMzfPu+LIwfeKy7rZHmVtN3euXDdHWdds2u7h/ftf
3n/oburm3WVTb9bylb/Cv8vqMvsGf3Pvii08MD/ij1dFN36Gn3Su7fJq/kO+
rCuYxhamui6Psu+7ejbKWlhCUyxa+K/tCv/jb87lm+6qbo5clo3hf7OsrNqj
7OkE17xaFcsl/chretqUeRX/oW4uj7Jv6vpyWWRnN2X3U9Es4fPZN6vpt/RA
U+NeF/Oyqxv6oVjl5fIow535YydDTWZX9Dc4jaLoYEDYhPx6/M1muRyfLvPu
p+wB/X1WdrBbT+7ff5z9j01TyluzelN1uI1mAvFyXk2yvxbLn+xaXsHbebE0
v/dmSmv7riqvi6aFD2f1InvTLutopqdvsqf1j9mD+0/uZ0+XZTWHozBTvf/o
wedZeMvP9HXd3ORbux8rnM9N8cdyUU42ZT2p6ngJbyfZ8+ryKm/mnVnF26Jo
i/gPNOvXsLvL8sdoqg8ePsiOl9OmvLzqsr/K13maL+s2+ybvaiCMk+Psy8/u
P3oYzxd2oSvm2VkHJNviRhyvCtj/vH+ihcxlAhQZr+CbSfZ1XjZXm6a1S/im
njcwdPynga0/nhbNvCiqaE3PinXedKui6vAR2IeyKmBi1WX01NdN3sKVfl1P
gUqfbsrlXJ/g5evQo+z46cPH2aPvnid0Nas7ISq/Wri4zfaPRXM5yafzapLP
Jpt39Hegy6PsquvWR59+enNzM4kf+bRHmH/aFFfL4qaU4ZU6m3/N0z/RpjyH
bW/buoppB56evPNP/7GQhyazehXthL49Pl4uiyK6Vd8WzU/1ZVE1eZdcq2+K
ZpVX23jmJ5PstEB+1Jppn9RwBaLfBw7ym2XeXtY30bzOZld1vcS/ntSr9aZD
Nnc2K4sKWGqYoryZZd88eJg9+fOfB2n0T/DuXJYt+zNr13+E/+VpTWBK8VJO
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
P9BzL+aHZtUGuD7OSKbOaWTZSsArxn3w+C1omIKsorgVRZ3yd4y+YHOJEtQU
9CQ7s/PVPMkJ6Cd+eFyJ8wCxdw3XJ32TQFaT1tmM4EkDeDCqJE2GMg1W9bQk
Dzl3hklSgC/+Wo6/LiVOcCIJBhfp5wPs+ldsSOSS9zwv2nddvUYZuN50WHAb
DfhX1Lvcc/wm3IvesCEzwrhh+0GBtAEh2sE0K5+sG5zosrGc1+s95zVf4l4T
E/gydj5GwiZeVyJO1rbfPdNbWfHMnLarqgU8LdrrVrFzaYfkN/IUI1hhx4kl
C0macTs3n2iLgWbZrz7CycyKVMPivUTvDmoB0q50rcmBmjsS09oAlYXmN7VE
7qSXc8moblVxo0nQoONfVfWyvkS2Ni0olc8cJCUM5T/WVb3aDn2MCIgSbna3
tx6ge0/ryEziEUVmIhj8FB0tDEyZc05Y/eNWjRPT3dCwac3VpqoT1oA3lf7D
p67T0hmIvRr2kOueO303fEOYmhB01IUM495DWeJ5B0wbFMLQtHBtcKNIeDET
DUluIQUkgRuzzBQFoof004pzm8VkYL8k/y3g4XjwPNsewkffBTxTctapC3fo
NDEEYOZLKMLXsXV96x2q/W3ZpULgvhiX6vX8N1YbMIffOWk2S0LcYIcdDMMT
HCayze3WMNSESJJPp1tTHyOlG3L8bnepQU8POf3Ls0gDcXfQQDKvgQx8SICl
CmeySQknFT7mk+qSrEMvAyjTLaBXYdRtoH+YrZGYEHwFmV1G9gtlMPslxrBH
l8iGdQkHG/YxWkS2V4twH6lFZPu0CLdfi9BJz7zebvRCWtXdNAkpRnny5P4D
uNt8rK1eZrK0pX0I+lsEThqTg+ALHFybX+MpczaJ8w2jpKWwRIj57Ml2CB2M
SXZz6Ki4zgNaNeIreSYt/Yi4HQKWZ3CrozaaDkwGWLWSCPuByOLSu2I5c/hz
smGp1uwTTUxyrDsxF8skVeAMuHcwrpF3cS6ax8ApuJ4+x9VyARxDgldmxxWp
SX0B1lGcIx0PqDNJ3EINEHag4JptIz1YgPtLja2W3sCRjl+c+k8S31a9JZxw
2fme1Ox/k3OkgZFXUyc/ydYf+BzLSG1lqAFh03FmWdfvMiz5dUYm6b3XnH/p
C09JLHyEyalp0H7a1IS1jBzH9YmEL41nKhQK7PEaNpGCXA8Z3aw80SnWa+sF
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
u6xmFim2Yy3fQfPDeV6cOvr40zKy0Z6KiAyHwqM/q0BvGWKbBtBX3H0t2sJC
r13QcL5lsvzwXSpEsGu83cNQmVLGkBu/xaLQs78x/Io/pT2lpi89yikIOKhR
uc2kFr1RU8B4TDVtV+5Y9sJhdcx540moS2VA3O00/O+VFsy9LWz9tZsoA8CJ
6yImDfYYE92kshTaGDZ13dEPBVErYKES9nQpGgbxBizB9+RY4JzV6HNI82UU
HJG6bLZYtdaSR+KbeKnwQkarKNrQ8y915/rQrkz6BMkZjHnaXWuulZUxIAgx
OP1o9YHl/iZcv0a1GJjdiRVFd40+yf18rXqGVBcFczfhdrioP1QC2qLU2hac
rk4Yp9gnBW7HgBMjs0SuY4XuANCPx1Jeksk7k9M3WXeaqsurjIwhClhaH5IV
wRY6WcfHJigrn/jKPQq3Lw9EnnGShwHJVi2o4I9hWQlh+oLu8viQ5f+bzkrC
eJuDkcA1uY72r+ZbVSwARQvb5r1od1w/zrewCqIEutFZDxnstL+u40m1H295
WpBKLuI6dqIuIGSXLBtGnFq/9RmrPAkRlo1TIKJSBgSIwo9/Lf2hlLjMSwxV
sdP76kJmCXs5z3C1rC7zyPF2bSFLkOqrC7nrHh/l1if3eR7jvE6Myey5e3pT
wnFz4+N3R46TVn/sbPiNqDVWBaeJjolWxrNM8TTeiDU/EuvTEoolMSMy/qs6
4m34y/WtnzSZfFvKvOwBVXJ8252MLpFTJ111WoxLhyaPOgM8iW0uOKuSPdSK
JBACj9hDhZPsWzDJ1VltJPB0wEXiKPOqdo+lFn2NIl0RYi/Kgmj5X+l6kEd2
JwHQFFcU3/ded1O3mQGxv1MN6qGEU3LBQDohZrEf8EmEH9CpwvMu3hWhR7o5
4+090gHqDhfB7h7LqPjtCPxpl7ah4Z0e5E5VqK3kQftAPDTO8LKmJnwgbAKL
NZcCV3CJQU2ixyymGSaOATHkpBVqS2nfTfpiaF7Q3qu6WnDSQYXAFgwcnHxv
VOhMSgbIu5tCbcbtnH8Z+xPKMKKEGyMkJn+bUKF6WUrX1eu2iJNbeWTQh/Fw
9pfRXnqZ3n/lppvxsXzVpdfbIhIBOtjWLeZv7+5T7LjRVkms6biaE03q2/pq
UV3j9OQF2eHnK/uxzzHGr+Ibt0xAopknrDSn+SdOkzMrMXHITgtPWyb3cIJW
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
AA==

-->

</rfc>
