<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.24 (Ruby 3.0.5) -->
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc editing="no"?>
<?rfc tocompact="yes"?>
<?rfc iprnotified="no"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-alto-new-transport-10" category="std" consensus="true" tocDepth="3" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.1 -->
  <front>
    <title abbrev="ALTO TIPS">The ALTO Transport Information Publication Service</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-alto-new-transport-10"/>
    <author initials="R." surname="Schott" fullname="Roland Schott">
      <organization>Deutsche Telekom</organization>
      <address>
        <postal>
          <street>Ida-Rhodes-Straße 2</street>
          <city>Darmstadt</city>
          <code>64295</code>
          <country>Germany</country>
        </postal>
        <email>Roland.Schott@telekom.de</email>
      </address>
    </author>
    <author initials="Y. R." surname="Yang" fullname="Yang Richard Yang">
      <organization>Yale University</organization>
      <address>
        <postal>
          <street>51 Prospect Street</street>
          <city>New Haven</city>
          <code>CT</code>
          <country>USA</country>
        </postal>
        <email>yry@cs.yale.edu</email>
      </address>
    </author>
    <author initials="K." surname="Gao" fullname="Kai Gao">
      <organization>Sichuan University</organization>
      <address>
        <postal>
          <street>No.24 South Section 1, Yihuan Road</street>
          <city>Chengdu</city>
          <code>610000</code>
          <country>China</country>
        </postal>
        <email>kaigao@scu.edu.cn</email>
      </address>
    </author>
    <author initials="L." surname="Delwiche" fullname="Lauren Delwiche">
      <organization>Yale University</organization>
      <address>
        <postal>
          <street>51 Prospect Street</street>
          <city>New Haven</city>
          <code>3408</code>
          <country>USA</country>
        </postal>
        <email>lauren.delwiche@yale.edu</email>
      </address>
    </author>
    <author initials="L." surname="Keller" fullname="Lachlan Keller">
      <organization>Yale University</organization>
      <address>
        <postal>
          <street>51 Prospect Street</street>
          <city>New Haven</city>
          <code>3408</code>
          <country>USA</country>
        </postal>
        <email>lachlan.keller@yale.edu</email>
      </address>
    </author>
    <date/>
    <area>Transport Area</area>
    <workgroup>ALTO</workgroup>
    <abstract>
      <t>The ALTO Protocol (RFC 7285) leverages HTTP/1.x and is designed for the simple,
sequential request-reply use case, in which an ALTO client requests a
sequence of information resources, and the server responds with the complete
content of each resource one at a time.</t>
      <t>ALTO incremental updates using Server-Sent Events (SSE) (RFC 8895) defines a
multiplexing protocol on top of HTTP/1.x, so that an ALTO server can
incrementally push resource updates to clients whenever monitored network
information resources change, allowing the clients to monitor multiple resources
at the same time. However, HTTP/2 and later versions already support concurrent,
non-blocking transport of multiple streams in the same HTTP connection.</t>
      <t>To take advantage of newer HTTP features, this document introduces the ALTO
Transport Information Publication Service (TIPS). TIPS uses an incremental
RESTful design to give an ALTO client the new capability to explicitly,
concurrently (non-blocking) request (pull) specific incremental updates using
native HTTP/2 or HTTP/3, while still functioning for HTTP/1.x. TIPS also
provides for an ALTO server to concurrently push specific incremental updates
using native HTTP/2 or HTTP/3 server push.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Application-Layer Traffic Optimization Working Group mailing list (alto@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/alto/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/ietf-wg-alto/draft-ietf-alto-new-transport"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>Application-Layer Traffic Optimization (ALTO) provides means for network
applications to obtain network status information. So far, two transport
protocols have been designed:</t>
      <ol spacing="normal" type="1"><li>The ALTO base protocol <xref target="RFC7285"/>, which is designed for the simple use case
in which an ALTO client requests a network information resource, and the
server sends the complete content of the requested information (if any)
resource to the client.</li>
        <li>ALTO incremental updates using Server-Sent Events (ALTO/SSE) <xref target="RFC8895"/>,
which is designed for an ALTO client to indicate to the server that it wants
to receive updates for a set of resources, and the server can then
concurrently, and incrementally push updates to that client whenever
monitored resources change.</li>
      </ol>
      <t>Both protocols are designed for HTTP/1.x <xref target="RFC9112"/> and, ideally, they should
be able to automatically take advantage of newer HTTP versions such as HTTP/2
<xref target="RFC9113"/> and HTTP/3 <xref target="RFC9114"/>. However, there are issues with both
protocols when higher HTTP versions are used:</t>
      <ul spacing="normal">
        <li>First, consider the ALTO base
protocol, which is designed to transfer only complete information resources.
A client can run the base protocol on top of HTTP/2 or HTTP/3 to request
multiple information resources in concurrent streams, but each
request must be for a complete information resource: there is no capability of
transferring incremental updates. Hence, there can be large overhead when the
client already has an information resource and then there are small changes to
the resource.</li>
        <li>Next, consider ALTO/SSE. Although ALTO/SSE can transfer
incremental updates, it introduces a customized multiplexing protocol on top of
HTTP, assuming a total-order message channel from the server to the client. The
multiplexing design does not provide naming (i.e., providing resource
identifier) to individual incremental updates. Such a design cannot use
concurrent per-stream server push or non-blocking per-stream client pull,
available in HTTP/2 and HTTP/3 because both cases require the resource
identifier. Additionally, ALTO/SSE is a push-only protocol, which denies the
client flexibility in choosing how and when it receives updates.</li>
      </ul>
      <t>To mitigate these concerns, this document introduces a new ALTO service, called the Transport Information
Publication Service (TIPS). TIPS uses an incremental RESTful design to provide
an ALTO client with a new capability to explicitly, concurrently (non-blocking)
request (pull) specific incremental updates using native HTTP/2 or HTTP/3, while
still functioning for HTTP/1.x. TIPS also provides an ALTO server to
concurrently push specific incremental updates using native HTTP/2 or HTTP/3
server push. Specifically, this document specifies:</t>
      <ul spacing="normal">
        <li>Extensions to the ALTO Protocol for dynamic subscription and efficient
uniform updates delivery of an incrementally changing network information
resource.</li>
        <li>A new resource type that indicates the TIPS updates graph model for a
resource.</li>
        <li>URI patterns to fetch the snapshots or incremental updates.</li>
      </ul>
      <t><xref target="sec-bcp-http"/> discusses to what extent the TIPS design adheres to the Best
Current Practices for building protocols with HTTP <xref target="RFC9205"/>.</t>
      <section anchor="requirements-language">
        <name>Requirements Language</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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 anchor="notations">
        <name>Notations</name>
        <t>This document uses the same syntax and notations as introduced in
<xref section="8.2" sectionFormat="of" target="RFC7285"/> to specify the extensions to existing ALTO resources and services.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>TIPS Overview</name>
      <section anchor="requirements">
        <name>Transport Requirements</name>
        <t>The ALTO Protocol and its extensions support two transport mechanisms:
First, a client can directly request an ALTO resource and obtain a complete
snapshot of that ALTO resource, as specified in the base protocol <xref target="RFC7285"/>;
Second, a client can subscribe to incremental changes of one or multiple ALTO
resources using the incremental update extension <xref target="RFC8895"/>, and a server pushes
the updates to the client through a WebSocket connection.</t>
        <t>However, the current transport mechanisms are not optimized for storing,
transmitting, and processing (incremental) updates of ALTO information
resources. Specifically, the new transport mechanism must satisfy the following
requirements:</t>
        <dl>
          <dt>Incremental updates:</dt>
          <dd>
            <t>Incremental updates can reduce both the data storage on an ALTO server and the
transmission time of the updates, especially when the change of an ALTO
resource is minor. The base protocol does not support incremental updates and
the current incremental update mechanism in <xref target="RFC8895"/> has limitations (as
discussed below).</t>
          </dd>
          <dt>Concurrent, non-blocking update transmission:</dt>
          <dd>
            <t>When a client needs to receive and apply multiple incremental updates, it is
desired to transmit the updates concurrently to fully utilize the bandwidth
and to reduce head-of-line blocking. The ALTO incremental update extension
<xref target="RFC8895"/>, unfortunately, does not satisfy this requirement -- even though
the updates can be multiplexed by the server to avoid head-of-line blocking
between multiple resources, the updates are delivered sequentially and can
suffer from head-of-line blocking inside the connection, for example, when
there is a packet loss.</t>
          </dd>
          <dt>Prefetching updates:</dt>
          <dd>
            <t>Prefetching updates can reduce the time to send the request, making it
possible to achieve sub-RTT transmission of ALTO incremental updates. In
<xref target="RFC8895"/>, this requirement is fulfilled using server-sent event (SSE) and
is still desired in the ALTO new transport.</t>
          </dd>
          <dt>Backward compatibility:</dt>
          <dd>
            <t>While some of the previous requirements are offered by HTTP/2 <xref target="RFC9113"/> and
HTTP/3 <xref target="RFC9114"/>, it is desired that the ALTO new transport mechanism can
work with HTTP/1.x as many development tools and current ALTO implementations
are based on HTTP/1.x.</t>
          </dd>
        </dl>
        <t>The ALTO new transport specified in this document satisfies all the design
requirements and hence improves the efficiency of continuous dissemination of
ALTO information. The key idea is to introduce a unified data model to describe
the changes (snapshots and incremental updates) of an ALTO resource, referred to
as a TIPS view. Along with the data model, this document also specifies a
unified naming for the snapshots and incremental updates, independent of the
HTTP version. Thus, these updates can be concurrently requested. Prefetching is
realized using long polling in HTTP/1.1 and using long polling or server push in
higher HTTP versions.</t>
        <t>This document assumes the deployment model discussed in  <xref target="sec-dep-model"/>.</t>
      </section>
      <section anchor="terminology">
        <name>TIPS Terminology</name>
        <t>In addition to the terms defined in <xref target="RFC7285"/>, this document uses the following terms:</t>
        <dl>
          <dt>Transport Information Publication Service (TIPS):</dt>
          <dd>
            <t>Is a new type of ALTO service, as specified in this document, to enable a
uniform transport mechanism for updates of an incrementally changing ALTO
network information resource.</t>
          </dd>
          <dt>Network information resource:</dt>
          <dd>
            <t>Is a piece of retrievable information about network state, per <xref target="RFC7285"/>.</t>
          </dd>
          <dt>TIPS view (tv):</dt>
          <dd>
            <t>Is defined in this document to be the container of incremental transport
information about the network information resource. Though the TIPS view may
include other transport information, it has two basic components: updates
graph (ug) and receiver set (rs).</t>
          </dd>
          <dt>Updates graph (ug):</dt>
          <dd>
            <t>Is a directed, acyclic graph whose nodes represent the set of versions of an
information resource, and edges the set of update items to compute these
versions. An ALTO map service (e.g., Cost Map, Network Map) may need only a
single updates graph. A dynamic network information service (e.g., Filtered
Cost Map) may create an updates graph (within a new TIPS view) for each unique
request.</t>
          </dd>
          <dt>Version:</dt>
          <dd>
            <t>Represents a historical content of an information resource. For an information
resource, each version is associated with and uniquely identified by a
monotonically and consecutively increased sequence number. We use the term
"version s" to refer to the version associated with sequence number s.</t>
          </dd>
          <dt>Start sequence number (start-seq):</dt>
          <dd>
            <t>Is the smallest non-zero sequence number in an updates graph.</t>
          </dd>
          <dt>End sequence number (end-seq):</dt>
          <dd>
            <t>Is the largest sequence number in an updates graph.</t>
          </dd>
          <dt>Snapshot:</dt>
          <dd>
            <t>Is a full replacement of a resource and is contained within an updates graph.</t>
          </dd>
          <dt>Incremental update:</dt>
          <dd>
            <t>Is a partial replacement of a resource contained within an updates graph,
codified in this document as a JSON Merge Patch or JSON Patch. An incremental
update is mandatory if the source version (i) and target version (j) are
consecutive, i.e., i + 1 = j, and optional or a shortcut otherwise. Mandatory
incremental updates are always in an updates graph, while optional/shortcut
incremental updates may or may not be included in an updates graph.</t>
          </dd>
          <dt>Update item:</dt>
          <dd>
            <t>Refers to the content on an edge of the updates graph, which can be either a
snapshot or incremental update. An update item can be considered as a pair
(op, data) where op denotes whether the item is an incremental update or a
snapshot, and data is the content of the item.</t>
          </dd>
          <dt>ID#i-#j:</dt>
          <dd>
            <t>Denotes the update item on a specific edge in the updates graph to transition
from version i to version j, where i and j are the sequence numbers of the
source node and the target node of the edge, respectively.</t>
          </dd>
          <dt>Receiver set (rs):</dt>
          <dd>
            <t>Contains the set of clients who have requested to receive server push updates.</t>
          </dd>
        </dl>
        <figure anchor="fig-overview">
          <name>Overview of ALTO TIPS</name>
          <artwork type="drawing" align="center"><![CDATA[
                                   +-------------+
    +-----------+ +--------------+ |  Dynamic    | +-----------+
    |  Routing  | | Provisioning | |  Network    | | External  |
    | Protocols | |    Policy    | | Information | | Interface |
    +-----------+ +--------------+ +-------------+ +-----------+
          |              |                |              |
+----------------------------------------------------------------------+
| ALTO Server                                                          |
| +------------------------------------------------------------------+ |
| |                                              Network Information | |
| | +-------------+                         +-------------+          | |
| | | Information |                         | Information |          | |
| | | Resource #1 |                         | Resource #2 |          | |
| | +-------------+                         +-------------+          | |
| +-----|--------------------------------------/-------\-------------+ |
|       |                                     /         \              |
| +-----|------------------------------------/-----------\-----------+ |
| |     |       Transport Information       /             \          | |
| | +--------+                     +--------+        +--------+      | |
| | |  tv1   |----+          +-----|  tv2   |        |  tv3   |---+  | |
| | +--------+    |          |     +--------+        +--------+   |  | |
| |     |         |          |           |             |          |  | |
| | +--------+ +--------+ +--------+ +--------+ +--------+ +--------+| |
| | | tv1/ug | | tv1/rs | | tv2/ug | | tv2/rs | | tv3/ug | | tv3/rs || |
| | +--------+ +--------+ +--------+ +--------+ +--------+ +--------+| |
| +----|\---------/\---------|---------/---------------|-------------+ |
|      | \       /  \        |        /                |               |
+------|--\-----/----\-------|-------/-----------------|---------------+
       |   \   /      \      |      /                  |
       |    +-/-----+  \     |     /                   |
       |     /       \  \    |    /  A single          |   A single
     ==|====/==     ==\==\===|===/== HTTP/2 or /3    ==|== HTTP/1.x
       |   /           \  \  |  /    connection        |   connection
   +----------+       +----------+                 +----------+
   | Client 1 |       | Client 2 |                 | Client 3 |
   +----------+       +----------+                 +----------+

tvi   = TIPS view i
tvi/ug = incremental updates graph associated with tvi
tvi/rs = receiver set of tvi (for server push)
]]></artwork>
        </figure>
        <t><xref target="fig-overview"/> shows an example illustrating an overview of the ALTO TIPS
service. The server provides the TIPS service of two information resources (#1
and #2) where we assume #1 is an ALTO map service, and #2 is a filterable
service. There are 3 ALTO clients (Client 1, Client 2, and Client 3) that are
connected to the ALTO server. Each client maintains a single HTTP connection
with the ALTO server and uses the TIPS view to retrieve updates (see the
arguments in <xref target="single-http"/>). Specifically, a TIPS view (tv1) is created for
the map service #1, and is shared by multiple clients. For the filtering service
#2, two different TIPS view (tv2 and tv3) are created upon different client
requests.</t>
      </section>
    </section>
    <section anchor="tips-updates-graph">
      <name>TIPS Updates Graph</name>
      <t>In order to provide incremental updates for a resource, an ALTO server creates
an updates graph, which is a directed, acyclic graph that contains a sequence of
incremental updates and snapshots (collectively called update items) of a
network information resource.</t>
      <section anchor="data-model">
        <name>Basic Data Model of Updates Graph</name>
        <t>For each resource (e.g., a cost map, a network map), the incremental updates and
snapshots can be represented using the following directed acyclic graph model,
where the server maps base resource IDs to incremental update IDs that are
assigned sequentially (i.e., incremented by 1 each time):</t>
        <ul spacing="normal">
          <li>Each node in the graph is a version of the resource, where a tag identifies
content of the version (tag is valid only within the scope of resource).
Version 0 is reserved as the initial state (empty/null).</li>
          <li>Each edge is an update item. In particular, edge from i to j is the update
item to transit from version i to version j.</li>
          <li>Version is path independent (different paths arrive at the same version/node
has the same content)</li>
        </ul>
        <t>A concrete example is as shown in <xref target="fig-ug"/>. There are 7 nodes in the graph,
representing 7 different versions of the resource. Edges in the figure represent
the updates from the source version to the target version. Thick lines represent
mandatory incremental updates (e.g., ID103-104), dotted lines represent optional
incremental updates (e.g., ID103-105), and thin lines represent snapshots (e.g.,
ID0-103). Note that node content is path independent: the content of node v can
be obtained by applying the updates from any path that ends at v. For example,
assume the latest version is 105 and a client already has version 103. The
target version 105 can either be directly fetched as a snapshot, computed
incrementally by applying the incremental updates between 103 and 104, then 104
and 105, or if the optional update from 103 to 105 exists, computed
incrementally by taking the "shortcut" path from 103 to 105.</t>
        <figure anchor="fig-ug">
          <name>TIPS Model Example</name>
          <artwork type="drawing" align="center"><![CDATA[
                                                        +======+
                                                  ------|  0   |
                                                 /      +======+
                                        ID0-101 /        |   |
                                              |/__       |   |
                                       +======+          |   |
                  tag: 109783421097 -> | 101  |          |   |
                                       +======+          |   |
                               ID101-102  ||             |   |
                                          \/             |   |
                                       +======+          |   |
                  tag: 123566431234 -> | 102  |          |   |
                                       +======+          |   |
                               ID102-103  ||             |   |
                                          \/             |   |
                                       +======+          /   |
                  tag: 123400881080 -> | 103  |<--------/    |
   +---------------+                   +======+ ID0-103      |
   | Base Resource |   =====>  ID103-104  ||    ..           |
   +---------------+                      \/     ..          |
                                       +======+  ..          |
                  tag: 123566452654 -> | 104  |  .. ID103    |
                                       +======+  .. -105     |
                               ID104-105  ||     ..          | ID0-105
                                          \/   |._           /
                                       +======+             /
                  tag: 123567838392 -> | 105  |<-----------/
                                       +======+
                               ID105-106  ||
                                          \/
                                       +======+
                  tag: 123566470983 -> | 106  |
                                       +======+
]]></artwork>
        </figure>
      </section>
      <section anchor="schema">
        <name>Resource Location Schema</name>
        <t>Update items are exposed as HTTP resources and the URLs of these items, which we
call resource location schema, follow specific patterns. To access each
individual update in an updates graph, consider the model represented as a
"virtual" file system (adjacency list), contained within the root of a TIPS view
URI (see <xref target="open-resp"/> for the definition of tips-view-uri). For example,
assuming that the update graph of a TIPS view is as shown in <xref target="fig-ug"/>, the
location schema of this TIPS view will have the format as in <xref target="fig-ug-schema"/>.</t>
        <figure anchor="fig-ug-schema">
          <name>Location Schema Example</name>
          <artwork type="drawing" align="center"><![CDATA[
  <tips-view-uri>  // relative URI to a TIPS view
    |_ ug    // updates graph
    |  |_ 0
    |  |  |_ 101    // full 101 snapshot
    |  |  |_ 103
    |  |  \_ 105
    |  |_ 101
    |  |  \_ 102    // 101 -> 102 incremental update
    |  |_ 102
    |  |  \_ 103
    |  |_ 103
    |  |  |_ 104
    |  |  \_ 105    // optional shortcut 103 -> 105 incr. update
    |  |_ 104
    |  |  \_ 105
    |  \_ 105
    |     \_ 106
    |_ push         // server push metadata
    |  \_ ...
    \_ meta         // TIPS view meta
       \_ ...
]]></artwork>
        </figure>
        <t>TIPS uses this directory schema to generate template URIs which allow
clients to construct the location of incremental updates after receiving the
tips-view-uri path from the server. The generic template for the location of the
update item on the edge from node i to node j in the updates graph is:</t>
        <artwork><![CDATA[
    <tips-view-uri>/ug/<i>/<j>
]]></artwork>
        <t>Due to the sequential nature of the update item IDs, a client can long poll a
future update that does not yet exist (e.g., the incremental update from 106 to
107) by constructing the URI for the next edge that will be added, starting from
the sequence number of the current last node (denoted as end-seq) in the graph
to the next sequential node (with the sequence number of end-seq + 1):</t>
        <artwork><![CDATA[
    GET /<tips-view-uri>/ug/<end-seq>/<end-seq + 1>
]]></artwork>
      </section>
      <section anchor="updates-graph-modification-invariants">
        <name>Updates Graph Modification Invariants</name>
        <t>A server may change its updates graph (to compact, to add nodes,
etc.), but it must ensure that any resource state that it makes
available is reachable by clients, either directly via a snapshot
(that is, relative to 0) or indirectly by requesting an earlier
snapshot and a contiguous set of incremental updates.  Additionally,
to allow clients to proactively construct URIs for future update
items, the ID of each added node in the updates graph must increment
contiguously by 1.  More specifically, the updates graph <bcp14>MUST</bcp14> satisfy
the following invariants:</t>
        <ul spacing="normal">
          <li>Continuity: At any time, let ns denote the smallest non-zero version (i.e.,
start-seq) in the update graph and ne denote the latest version (i.e.,
end-seq). Then any version in between ns and ne must also exist. This implies
that the incremental update from ni to ni + 1 exists for any ns &lt;= ni &lt;= ne,
and all versions in the update graph (except 0) is an integer interval
<tt>[ns, ne]</tt>.</li>
          <li>Feasibility: Let ns denote the start-seq in the update graph. The server must
provide a snapshot of ns and, in other words, there is always a direct link
to ns in the update graph.</li>
          <li>"Right shift" only: Assume a server provides versions in <tt>[n1, n2]</tt> at time t
and versions in <tt>[n1', n2']</tt> at time t'. If t' &gt; t, then n1' &gt;= n1 and n2' &gt;=
n2.</li>
        </ul>
        <t>For example, consider the case that a server compacts a resource's updates graph
to conserve space, using the example model in <xref target="data-model"/>. Assume at time 0,
the server provides the versions <tt>{101, 102, 103, 104, 105, 106}</tt>. At time 1,
both <tt>{103, 104, 105, 106}</tt> and <tt>{105, 106}</tt> are valid sets. However, <tt>{102,
103, 104, 105, 106}</tt> and <tt>{104, 105, 106}</tt> are not valid sets as there is no
snapshot to version 102 or 104 in the update graph. Thus, there is a risk that
the right content of version 102 (in the first example) or 104 (in the second
example) cannot be obtained by a client that does not have the previous version
101 or 103, respectively.</t>
      </section>
    </section>
    <section anchor="workflow">
      <name>TIPS High Level Workflow</name>
      <section anchor="workflow-overview">
        <name>Workflow Overview</name>
        <t>There are two ways a client can receive updates for a resource:</t>
        <ol spacing="normal" type="1"><li>Client Pull (see <xref target="pull"/>);</li>
          <li>Server Push (see <xref target="push"/>).</li>
        </ol>
        <t>At a high level, an ALTO client first uses the TIPS service to indicate the
information resource(s) that the client wants to monitor. For each requested
resource, the server returns a JSON object that contains a URI, which points to
the root of a TIPS view, and a summary of the current view, which contains, at
the minimum, the start-seq and end-seq of the update graph and a
server-recommended edge to consume first.</t>
        <t>In the simplest use case, for client pull, the TIPS view summary provides enough
information for the client to continuously pull each additional update,
following the workflow in <xref target="fig-workflow-pull"/>.</t>
        <figure anchor="fig-workflow-pull">
          <name>ALTO TIPS Workflow Supporting Client Pull</name>
          <artwork type="drawing" align="center"><![CDATA[
Client                                  TIPS
  o                                       .
  | Open persistent HTTP connection       .
  |-------------------------------------->|
  |                                       .
  | POST to create/receive a TIPS view    .
  |           for resource 1              .
  | ------------------------------------> |
  | <tips-view-uri1>, <tips-view-summary> .
  |<------------------------------------- |
  |                                       .
  | GET /<tips-view-uri1>/ug/<i>/<j>      .
  | --------------------------------------|
  | content on edge i to j                .
  |<--------------------------------------|
  |                                       .
  | GET /<tips-view-uri1>/ug/<j>/<j+1>    .
  | ------------------------------------->|
  |                                       .
  |                                       .
  | content on edge j to j+1              .
  |<--------------------------------------|
  |                                       .
  | DELETE TIPS view for resource 1       .
  |-------------------------------------> |
  |                                       .
  | Close HTTP connection                 .
  |-------------------------------------->|
  o
]]></artwork>
        </figure>
        <t>Note: in <xref target="fig-workflow-pull"/>, the update item at
<tt>/&lt;tips-view-uri1&gt;/ug/&lt;j&gt;/&lt;j+1&gt;</tt> may not yet exist, so the server holds the
request until the update becomes available (long polling).</t>
        <t>A client that prefers server push can use the workflow as shown in
<xref target="fig-workflow-push"/>. In this case, the client indicates for server push when it
creates the TIPS view. Future updates are pushed to the client as soon as they
become available.</t>
        <figure anchor="fig-workflow-push">
          <name>ALTO TIPS Workflow Supporting Server Push</name>
          <artwork type="drawing" align="center"><![CDATA[
Client                                  TIPS
  o                                       .
  | Open persistent HTTP connection       .
  |-------------------------------------->|
  |                                       .
  | POST to create/receive a TIPS view    .
  |      for resource 1 and add           .
  |      self to receiver set             .
  | ------------------------------------> |
  | <tips-view-uri1>, <tips-view-summary> .
  |<------------------------------------- |
  |                                       .
  | PUSH <tips-view-uri1>/ug/<i>/<j>      .
  | <-------------------------------------|
  |                                       .
  | PUSH <tips-view-uri1>/ug/<j>/<j+1>    .
  | <-------------------------------------|
  |                                       .
  | PUT to remove self from receiver      .
  |      set of resource 1                .
  |-------------------------------------> |
  |                                       .
  | Close HTTP connection                 .
  |-------------------------------------->|
  o
]]></artwork>
        </figure>
      </section>
      <section anchor="single-http">
        <name>TIPS over a Single HTTP Connection</name>
        <t>A key requirement in the current new transport extension is that a client must
interact with the ALTO server using a single persistent HTTP connection, and the
life cycle of the TIPS views are bounded to that specific connection. This
design is due to the following reasons:</t>
        <t>The first reason is to reduce the management complexity in modern server
deployment technologies. As microservices are becoming the new trend of web
development, requests to the same service are load balanced to different
instances, even between the same source and destination addresses. However, TIPS
views are stateful information which depends on the client's input. If requests
from the same client session can be directed to different instances, the
operator of the ALTO server must implement complex mapping management or load
balancing mechanisms to make sure the requests arrive at the same server.</t>
        <t>The second reason is to simplify the state management of a single session. If
multiple connections are associated with a single session, implementations of
ALTO servers and clients must manage the state of the connections, e.g., whether
a connection enables server push, which increases the complexity of both ALTO
servers and clients.</t>
        <t>Third, single persistent HTTP connection offers an implicit way of life cycle
management of TIPS views, which can be resource-consuming. Malicious users may
create TIPS views and then disconnect, to get around the limits on concurrent
TIPS views, if not implemented correctly by an ALTO server. Leaving the TIPS
views alive after the HTTP connection is closed or timed out also makes session
management complex: When a client reconnects, should it try to access the TIPS
view before the disconnection or simply start a new session? Whether and when
can the server remove the TIPS views? In the current extension, the idea is to
avoid such complexity and enforce the consensus that a session will be
automatically closed once the connection is closed or timed out.</t>
      </section>
      <section anchor="tips-with-different-http-versions">
        <name>TIPS with Different HTTP Versions</name>
        <t>The HTTP version of a "https" connection is negotiated between client and
server using the TLS ALPN extension, as specified in Section 3.1 of <xref target="RFC9113"/>
for HTTP/2 and Section 3.1 of <xref target="RFC9114"/> for HTTP/3. For a "http" connection,
the explicit announcement of HTTP/2 or HTTP/3 support by the server is outside
the scope of this document.</t>
        <t>While TIPS is designed to take advantage of newer HTTP features like
server push and substreams for concurrent fetch, TIPS still functions
with HTTP/1.x for client pull defined in <xref target="pull"/>, with the
limitation that it cannot cancel any outstanding requests or fetch
resources concurrently over the same connection due to the blocking
nature of HTTP/1.x requests.  Additionally, because HTTP/1.x does not
support server push, the use of TIPS with server push defined in
<xref target="push"/> is not available if a client connects to an ALTO server
with HTTP/1.x. If a client only capable of HTTP/1.x desires to concurrently
monitor multiple resources at the same time, it must open multiple connections,
one for each resource, so that an outstanding long-poll request can be issued
for each resource to monitor for new updates. For HTTP/2 and /3, with
multiplexed streams, multiple resources can be monitored simultaneously.</t>
      </section>
    </section>
    <section anchor="ird">
      <name>TIPS Information Resource Directory (IRD) Announcement</name>
      <t>To announce a TIPS information resource in the information resource directory
(IRD), an ALTO server <bcp14>MUST</bcp14> specify the "media-type", "capabilities" and "uses"
as follows.</t>
      <section anchor="media-type">
        <name>Media Type</name>
        <t>The media type of the Transport Information Publication Service resource is
"application/alto-tips+json".</t>
      </section>
      <section anchor="capabilities">
        <name>Capabilities</name>
        <t>The capabilities field of TIPS is modeled on that defined in
Section 6.3 of <xref target="RFC8895"/>.</t>
        <t>Specifically, the capabilities are defined as an object of type
TIPSCapabilities:</t>
        <artwork><![CDATA[
     object {
       IncrementalUpdateMediaTypes incremental-change-media-types;
       Boolean                     support-server-push;
     } TIPSCapabilities;

     object-map {
        ResourceID -> String;
     } IncrementalUpdateMediaTypes;
]]></artwork>
        <t>with fields:</t>
        <dl>
          <dt>incremental-change-media-types:</dt>
          <dd>
            <t>If a TIPS can provide updates with incremental changes for a
resource, the "incremental-change-media-types" field has an entry
for that resource-id, and the value is the supported media types
of the incremental change separated by commas.  For the
implementation of this specification, this will be "application/
merge-patch+json", "application/json-patch+json", or "application/
merge-patch+json,application/json-patch+json".  Future extensions
may define other types of incremental changes.
</t>
            <t>When choosing the media types to encode incremental updates for a
resource, the server <bcp14>MUST</bcp14> consider the limitations of the
encoding.  For example, when a JSON merge patch specifies that the
value of a field is null, its semantics are that the field is
removed from the target and hence the field is no longer defined
(i.e., undefined).  This, however, may not be the intended result
for the resource, when null and undefined have different semantics
for the resource.  In such a case, the server <bcp14>MUST</bcp14> choose JSON
patch over JSON merge patch if JSON patch is indicated as a
capability of the TIPS.  If the server does not support JSON patch
to handle such a case, the server then needs to send a full
replacement.</t>
          </dd>
          <dt>support-server-push:</dt>
          <dd>
            <t>The "support-server-push" field specifies whether the given TIPS
supports server push.  If the "support-server-push" field is TRUE,
this TIPS will allow a client to start or stop server push.  If
the field is FALSE or not present, this TIPS does not provide
server push.</t>
          </dd>
        </dl>
      </section>
      <section anchor="uses">
        <name>Uses</name>
        <t>The "uses" attribute <bcp14>MUST</bcp14> be an array with the resource-ids of every
network information resource for which this TIPS can provide service.</t>
        <t>This set may be any subset of the ALTO server's network information resources
and may include resources defined in linked IRDs. However, it is <bcp14>RECOMMENDED</bcp14>
that the ALTO server selects a set that is closed under the resource dependency
relationship. That is, if a TIPS' "uses" set includes resource R1 and resource
R1 depends on ("uses") resource R0, then the TIPS' "uses" set <bcp14>SHOULD</bcp14> include R0
as well as R1. For example, if a TIPS provides a TIPS view for a cost map, it
<bcp14>SHOULD</bcp14> also provide a TIPS view for the network map upon which that cost map
depends.</t>
        <t>If the set is not closed, at least one resource R1 in the "uses" field of a TIPS
depends on another resource R0 which is not in the "uses" field of the same
TIPS. Thus, a client cannot receive incremental updates for R0 from the same
TIPS service. If the client observes in an update of R1 that the version tag for
R0 has changed, it must make a request to retrieve the full content of R0, which
is likely to be less efficient than receiving the incremental updates of R0.</t>
      </section>
      <section anchor="example">
        <name>Example</name>
        <t>Extending the IRD example in Section 8.1 of <xref target="RFC8895"/>, below is the IRD of an
ALTO server supporting ALTO base protocol, ALTO/SSE, and ALTO TIPS.</t>
        <artwork><![CDATA[
    "my-network-map": {
      "uri": "https://alto.example.com/networkmap",
      "media-type": "application/alto-networkmap+json"
    },
    "my-routingcost-map": {
      "uri": "https://alto.example.com/costmap/routingcost",
      "media-type": "application/alto-costmap+json",
      "uses": ["my-networkmap"],
      "capabilities": {
        "cost-type-names": ["num-routingcost"]
      }
    },
    "my-hopcount-map": {
      "uri": "https://alto.example.com/costmap/hopcount",
      "media-type": "application/alto-costmap+json",
      "uses": ["my-networkmap"],
      "capabilities": {
        "cost-type-names": ["num-hopcount"]
      }
    },

    "my-simple-filtered-cost-map": {
      "uri": "https://alto.example.com/costmap/filtered/simple",
      "media-type": "application/alto-costmap+json",
      "accepts": "application/alto-costmapfilter+json",
      "uses": ["my-networkmap"],
      "capabilities": {
        "cost-type-names": ["num-routingcost", "num-hopcount"],
        "cost-constraints": false
      }
    },

    "update-my-costs-tips": {
      "uri": "https://alto.example.com/updates-new/costs",
      "media-type": "application/alto-tips+json",
      "accepts": "application/alto-tipsparams+json",
      "uses": [
          "my-network-map",
          "my-routingcost-map",
          "my-hopcount-map",
          "my-simple-filtered-cost-map"
      ],
      "capabilities": {
        "incremental-change-media-types": {
          "my-network-map": "application/json-patch+json",
          "my-routingcost-map": "application/merge-patch+json",
          "my-hopcount-map": "application/merge-patch+json",
          "my-simple-filtered-cost-map": "application/merge-patch+json"
        },
        "support-server-push": true
      }
    }
]]></artwork>
        <t>Note that it is straightforward for an ALTO sever to run HTTP/2 and
support concurrent retrieval of multiple resources such as "my-
network-map" and "my-routingcost-map" using multiple HTTP/2 streams.</t>
        <t>The resource "update-my-costs-tips" provides an ALTO TIPS based
connection, and this is indicated by the media-type "application/
alto-tips+json".</t>
      </section>
    </section>
    <section anchor="tips-openclose">
      <name>TIPS Open/Close</name>
      <t>Upon request, a server sends a TIPS view to a client.  This TIPS view
may be created at the time of the request or may already exist
(either because another client has an active connection to a TIPS
view for the same requested network resource or because the server
perpetually maintains a TIPS view for an often-requested resource).
The server <bcp14>MAY</bcp14> keep track of which clients have an active connection
to each TIPS view to determine whether or not it should delete a TIPS
view and its corresponding updates graph and associated data.</t>
      <section anchor="open-req">
        <name>Open Request</name>
        <t>An ALTO client requests that the server provide a TIPS view for a given resource
by sending an HTTP POST body with the media type
"application/alto-tipsparams+json". That body contains a JSON object of type
TIPSReq, where:</t>
        <artwork><![CDATA[
    object {
       ResourceID   resource-id;
       [JSONString  tag;]
       [Object      input;]
       [Boolean     server-push;]
    } TIPSReq;
]]></artwork>
        <t>with the following fields:</t>
        <dl>
          <dt>resource-id:</dt>
          <dd>
            <t>The resource-id of an ALTO resource and <bcp14>MUST</bcp14> be in the TIPS' "uses" list
(<xref target="ird"/>). If a client does not support all incremental methods from the set
announced in the server's capabilities, the client <bcp14>MUST NOT</bcp14> use the TIPS
service.</t>
          </dd>
          <dt>tag:</dt>
          <dd>
            <t>If the resource-id is a GET-mode resource with a version tag (or
"vtag"), as defined in Section 10.3 of <xref target="RFC7285"/>, and the ALTO
client has previously retrieved a version of that resource from
ALTO, the ALTO client <bcp14>MAY</bcp14> set the "tag" field to the tag part of
the client's version of that resource.  The server <bcp14>MAY</bcp14> use the tag
when calculating a recommended starting edge for the client to
consume.  Note that the client <bcp14>MUST</bcp14> support all incremental
methods from the set announced in the server's capabilities for
this resource.</t>
          </dd>
          <dt>input:</dt>
          <dd>
            <t>If the resource is a POST-mode service that requires input, the
ALTO client <bcp14>MUST</bcp14> set the "input" field to a JSON object with the
parameters that the resource expects.</t>
          </dd>
          <dt>server-push:</dt>
          <dd>
            <t>Set to TRUE if a client desires to receive updates via server
push.  If the value is FALSE or not present, the client does not
accept server push updates.  See <xref target="push"/> for detailed
specifications.</t>
          </dd>
        </dl>
      </section>
      <section anchor="open-resp">
        <name>Open Response</name>
        <t>The response to a valid request <bcp14>MUST</bcp14> be a JSON object of type
AddTIPSResponse, denoted as media type "application/alto-tips+json":</t>
        <artwork><![CDATA[
    object {
      JSONString        tips-view-uri;
      TIPSViewSummary   tips-view-summary;
    } AddTIPSResponse;

    object {
      UpdatesGraphSummary   updates-graph-summary;
      [Boolean              server-push;]
    } TIPSViewSummary;

    object {
      JSONNumber       start-seq;
      JSONNumber       end-seq;
      StartEdgeRec     start-edge-rec;
    } UpdatesGraphSummary;

    object {
      JSONNumber       seq-i;
      JSONNumber       seq-j;
    } StartEdgeRec;
]]></artwork>
        <t>with the following fields:</t>
        <dl>
          <dt>tips-view-uri:</dt>
          <dd>
            <t>Relative URI to the TIPS view of a network resource, which <bcp14>MUST</bcp14> be
unique per connection, and is de-aliased by the server to refer to
the actual location of the TIPS view which may be shared by other
clients.</t>
          </dd>
          <dt/>
          <dd>
            <t>When creating the URI for the TIPS view, TIPS <bcp14>MUST NOT</bcp14> use other
properties of an HTTP request, such as cookies or the client's IP
address, to determine the TIPS view.  Furthermore, TIPS <bcp14>MUST NOT</bcp14>
reuse a URI for a different object in the same connection.</t>
          </dd>
          <dt/>
          <dd>
            <t>It is expected that there is an internal mechanism to map a tips-
view-uri to the TIPS view to be accessed.  For example, TIPS may
assign a unique, internal state id to each TIPS view instance.
However, the exact mechanism is left to the TIPS provider.</t>
          </dd>
          <dt>tips-view-summary:</dt>
          <dd>
            <t>Contains both an updates-graph-summary and an optional server-push
boolean value which is set to TRUE if and only if the client
indicates server push.
</t>
            <t>The updates-graph-summary field contains the starting sequence
number (start-seq) of the updates graph and the last sequence
number (end-seq) that is currently available, along with a
recommended edge to consume (start-edge-rec).  How the server
calculates the recommended edge depends on the implementation.
Ideally, if the client does not provide a version tag, the server
should recommend the edge of the latest snapshot available.  If
the client does provide a version tag, the server should calculate
the cumulative size of the incremental updates available from that
version onward and compare it to the size of the complete resource
snapshot.  If the snapshot is bigger, the server should recommend
the first incremental update edge starting from client's tagged
version.  Else, the server should recommend the latest snapshot
edge.  If the client indicates server push, the recommended edge
will be the first content pushed.</t>
          </dd>
        </dl>
        <t>If the request has any errors, the TIPS service must return an HTTP
"400 Bad Request" to the ALTO client; the body of the response
follows the generic ALTO error response format specified in
Section 8.5.2 of <xref target="RFC7285"/>.  Hence, an example ALTO error response
has the format:</t>
        <artwork><![CDATA[
    HTTP/1.1 400 Bad Request
    Content-Length: 131
    Content-Type: application/alto-error+json
    Connection: close

    {
        "meta":{
            "code":  "E_INVALID_FIELD_VALUE",
            "field": "resource-id",
            "value": "my-network-map/#"
        }
    }
]]></artwork>
        <t>Note that "field" and "value" are optional fields.  If the "value"
field exists, the "field" field <bcp14>MUST</bcp14> exist.</t>
        <ul spacing="normal">
          <li>If the TIPS request does not have a "resource-id" field, the error
code of the error message <bcp14>MUST</bcp14> be <tt>E_MISSING_FIELD</tt> and the "field"
field <bcp14>SHOULD</bcp14> be "resource-id".  The TIPS service <bcp14>MUST NOT</bcp14> create
any TIPS view.</li>
          <li>If the "resource-id" field is invalid or is not associated with
the TIPS, the error code of the error message <bcp14>MUST</bcp14> be
<tt>E_INVALID_FIELD_VALUE</tt>.  The "field" field <bcp14>SHOULD</bcp14> be the full path
of the "resource-id" field, and the "value" field <bcp14>SHOULD</bcp14> be the
invalid resource-id.</li>
          <li>If the resource is a POST-mode service that requires input, the
client <bcp14>MUST</bcp14> set the "input" field to a JSON object with the
parameters that that resource expects.  If the "input" field is
missing or invalid, TIPS <bcp14>MUST</bcp14> return the same error response that
resource would return for missing or invalid input (see
<xref target="RFC7285"/>).</li>
        </ul>
        <t>Furthermore, it is <bcp14>RECOMMENDED</bcp14> that the server uses the following HTTP codes to
indicate other errors, with the media type "application/alto-error+json".</t>
        <ul spacing="normal">
          <li>429 (Too Many Requests): when the number of TIPS views open requests exceeds
server threshold. Server may indicate when to re-try the request in the
"Re-Try After" headers.</li>
        </ul>
      </section>
      <section anchor="open-example">
        <name>Open Example</name>
        <t>For simplicity, assume that the ALTO server is using the Basic
authentication.  If a client with username "client1" and password
"helloalto" wants to create a TIPS view of an ALTO Cost Map resource
with resource ID "my-routingcost-map", it can send the following
request:</t>
        <artwork><![CDATA[
    POST /tips HTTP/1.1
    Host: alto.example.com
    Accept: application/alto-tips+json, application/alto-error+json
    Authorization: Basic Y2xpZW50MTpoZWxsb2FsdG8K
    Content-Type: application/alto-tipsparams+json
    Content-Length: 41

    {
      "resource-id": "my-routingcost-map"
    }
]]></artwork>
        <t>If the operation is successful, the ALTO server returns the following
message:</t>
        <artwork><![CDATA[
    HTTP/1.1 200 OK
    Content-Type: application/alto-tips+json
    Content-Length: 291

    {
        "tips-view-uri": "/tips/2718281828459",
        "tips-view-summary": {
          "updates-graph-summary": {
            "start-seq": 101,
            "end-seq": 106,
            "start-edge-rec" : {
              "seq-i": 0,
              "seq-j": 105
            }
          },
          "server-push": false
        }
    }
]]></artwork>
      </section>
      <section anchor="close-req">
        <name>Close Request</name>
        <t>An ALTO client can indicate it no longer desires to pull/receive updates for a
specific network resource by "deleting" the TIPS view using the returned
tips-view-uri and the HTTP DELETE method. Whether or not the server actually
deletes the TIPS view is implementation dependent. For example, an ALTO server
may maintain a set of clients that subscribe to the TIPS view of a resource: a
client that deletes the view is removed from the set, and the TIPS view is only
removed when the dependent set becomes empty. See other potential
implementations in <xref target="shared-tips-view"/>. The DELETE request <bcp14>MUST</bcp14> have the
following format:</t>
        <artwork><![CDATA[
    DELETE /<tips-view-uri>
]]></artwork>
        <t>The response to a valid request must be 200 if success, and the
corresponding error code if there is any error.</t>
        <t>If the connection between the client and TIPS provider is severed
without a DELETE request having been sent, the server <bcp14>MUST</bcp14> treat it
as if the client had sent a DELETE request because the TIPS view is,
at least from the client view, per-session based.</t>
        <t>It is <bcp14>RECOMMENDED</bcp14> that the server uses the following HTTP codes to
indicate errors, with the media type "application/alto-error+json",
regarding TIPS view close requests.</t>
        <ul spacing="normal">
          <li>404 (Not Found): if the requested TIPS view does not exist or is
closed.</li>
        </ul>
      </section>
    </section>
    <section anchor="pull">
      <name>TIPS Data Transfers - Client Pull</name>
      <t>TIPS allows an ALTO client to retrieve the content of an update item
from the updates graph, with an update item defined as the content
(incremental update or snapshot) on an edge in the updates graph.</t>
      <section anchor="request">
        <name>Request</name>
        <t>The client sends an HTTP GET request, where the media type of an
update item resource <bcp14>MUST</bcp14> be the same as the "media-type" field of
the update item on the specified edge in the updates graph.</t>
        <t>The GET request <bcp14>MUST</bcp14> have the following format:</t>
        <artwork><![CDATA[
    GET /<tips-view-uri>/ug/<i>/<j>
]]></artwork>
        <t>For example, consider the updates graph in <xref target="fig-ug-schema"/>. If the client
wants to query the content of the first update item (0 -&gt; 101) whose media type
is "application/alto- costmap+json", it must send a request to
"/tips/2718281828459/ug/0/101" and set the "Accept" header to "application/alto-
costmap+json, application/alto-error+json". See <xref target="iu-example"/> for a concrete
example.</t>
      </section>
      <section anchor="response">
        <name>Response</name>
        <t>If the request is valid (<tt>ug/&lt;i&gt;/&lt;j&gt;</tt> exists), the response is encoded
as a JSON object whose data format is indicated by the media type.</t>
        <t>It is possible that a client conducts proactive fetching of future updates, by
long polling updates that have not been listed in the directory yet. For
long-poll prefetch, the client must have indicated the media type which may
appear. It is <bcp14>RECOMMENDED</bcp14> that the server allows for at least the prefetch of
<tt>&lt;end-seq&gt; -&gt; &lt;end-seq + 1&gt;</tt></t>
        <t>Hence, the server processing logic <bcp14>SHOULD</bcp14> be:</t>
        <ul spacing="normal">
          <li>If <tt>ug/&lt;i&gt;/&lt;j&gt;</tt> exists: return content using encoding.</li>
          <li>Else if <tt>ug/&lt;i&gt;/&lt;j&gt;</tt> pre-fetch is acceptable: put request in a
backlog queue.</li>
          <li>Else: return error.</li>
        </ul>
        <t>It is <bcp14>RECOMMENDED</bcp14> that the server uses the following HTTP codes to
indicate errors, with the media type "application/alto-error+json",
regarding update item requests.</t>
        <ul spacing="normal">
          <li>404 (Not Found): if the requested TIPS view does not exist or is
closed.</li>
          <li>410 (Gone): if an update has a seq that is smaller than the start-
seq.</li>
          <li>415 (Unsupported Media Type): if the media type(s) accepted by the
client does not include the media type of the update chosen by the
server.</li>
          <li>425 (Too Early): if the seq exceeds the server prefetch window</li>
          <li>429 (Too Many Requests): when the number of pending (long-poll)
requests exceeds server threshold.  Server may indicate when to
re-try the request in the "Re-Try After" headers.</li>
        </ul>
      </section>
      <section anchor="iu-example">
        <name>Example</name>
        <t>Assume the client wants to get the contents of the update item on
edge 0 to 101.  The request is:</t>
        <artwork><![CDATA[
    GET /tips/2718281828459/ug/0/101 HTTP/1.1
    Host: alto.example.com
    Accept: application/alto-costmap+json, application/alto-error+json
]]></artwork>
        <t>And the response will be:</t>
        <artwork><![CDATA[
    HTTP/1.1 200 OK
    Content-Type: application/alto-costmap+json
    Content-Length: 50

    { ... full replacement of my-routingcost-map ... }
]]></artwork>
      </section>
      <section anchor="new-next-edge-recommendation">
        <name>New Next Edge Recommendation</name>
        <t>While intended TIPS usage is for the client to recieve a recommended
starting edge in the TIPS summary, consume that edge, then construct
all future URIs by incrementing the sequence count by 1, there may be
cases in which the client needs to request a new next edge to
consume.  For example, if a client has an open TIPS view yet has not
polled in a while, the client may requests the next logical
incremental URI but the server has compacted the updates graph so it
no longer exists.  Thus, the client must request a new next edge to
consume based on its current version of the resource.</t>
        <section anchor="request-1">
          <name>Request</name>
          <t>An ALTO client requests that the server provide a next edge
recommendation for a given TIPS view by sending an HTTP POST request
with the media type "application/alto-tipsparams+json".  The URI has
the form:</t>
          <artwork><![CDATA[
    POST /<tips-view-uri>/ug
]]></artwork>
          <t>The POST body have the following form, where providing the version
tag of the resource the client already has is optional:</t>
          <artwork><![CDATA[
    object {
        [JSONString  tag;]
    } TIPSNextEdgeReq;
]]></artwork>
        </section>
        <section anchor="response-1">
          <name>Response</name>
          <t>The response to a valid request <bcp14>MUST</bcp14> be a JSON object of type
UpdatesGraphSummary (defined in <xref target="open-resp"/> but reproduced below as well),
denoted as media type "application/alto-tips+json":</t>
          <artwork><![CDATA[
    object {
      JSONNumber       start-seq;
      JSONNumber       end-seq;
      StartEdgeRec     start-edge-rec;
    } UpdatesGraphSummary;

    object {
      JSONNumber       seq-i;
      JSONNumber       seq-j;
    } StartEdgeRec;
]]></artwork>
          <t>It is <bcp14>RECOMMENDED</bcp14> that the server uses the following HTTP codes to
indicate errors, with the media type "application/alto-error+json",
regarding new next edge requests.</t>
          <ul spacing="normal">
            <li>404 (Not Found): if the requested TIPS view does not exist or is
closed.</li>
            <li>415 (Unsupported Media Type): if the media type(s) accepted by the
client does not include the media type <tt>application/alto-tips+json</tt>.</li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="push">
      <name>TIPS Data Transfer - Server Push</name>
      <t>TIPS allows an ALTO client to receive an update item pushed by the
ALTO server.</t>
      <t>If a client registers for server push, it should not request updates
via pull to avoid receiving the same information twice, unless the
client does not receive the expected updates (see <xref target="client-processing"/>).</t>
      <section anchor="manage-server-push">
        <name>Manage Server Push</name>
        <t>A client starts to receive server push when it is added to the
receiver set.  A client can read the status of the push state and
remove itself from the receiver set to stop server push.</t>
        <section anchor="start-server-push">
          <name>Start Server Push</name>
          <t>A client can add itself explicitly to the receiver set or add itself
to the receiver set when requesting the TIPS view.  Before a client
starts receiving server push for a TIPS view, it <bcp14>MUST</bcp14> enable server
push in HTTP, i.e., following Section 8.4 of <xref target="RFC9113"/> for HTTP/2 and
Section 4.6 of <xref target="RFC9114"/> for HTTP/3.  If the client does not enable
HTTP server push, the ALTO server <bcp14>MUST</bcp14> return an ALTO error with the
<tt>E_INVALID_FIELD_VALUE</tt> code and set the "field" to "server-push".</t>
          <t>Explicit add: A client can explicitly add itself in the receiver set
by using the HTTP PUT method with media type "application/alto-
tipsparams+json", where the client may optionally specify a starting
edge (next-edge) from which it would like to receive updates:</t>
          <artwork><![CDATA[
    PUT /<tips-view-uri>/push

    object {
      Boolean     server-push;
      [NextEdge    next-edge;]
    } PushState;

    object {
      JSONNumber       seq-i;
      JSONNumber       seq-j;
    } NextEdge;
]]></artwork>
          <t>with the following fields:</t>
          <dl>
            <dt>server-push:</dt>
            <dd>
              <t>Set to true if the client desires to receive server push updates.</t>
            </dd>
            <dt>next-edge:</dt>
            <dd>
              <t>Optional field to request a starting edge to be pushed if the
client has pulled the updates graph directory and has calculated
the path it desires to take.  The server <bcp14>MAY</bcp14> push this edge first
if available.</t>
            </dd>
          </dl>
          <t>Short cut add: When requesting a TIPS view, an ALTO client can start
server push by setting the option "server-push" field to be true
using the HTTP POST method defined in <xref target="open-req"/>.</t>
          <t>Example of a client requesting a TIPS view and starting server push:</t>
          <artwork><![CDATA[
    Client -> server request

    HEADERS
      - END_STREAM
      + END_HEADERS
        :method = POST
        :scheme = https
        :path = /tips
        host = alto.example.com
        accept = application/alto-error+json,
                      application/alto-tips+json
        content-type = application/alto-tips+json
        content-length = 67

    DATA
      - END_STREAM
      {
        "resource-id": "my-routingcost-map",
        "server-push": true
      }

    Server -> client response:

    HEADERS
      - END_STREAM
      + END_HEADERS
        :status = 200
        content-type = application/alto-tips+json
        content-length = 196

    DATA
      - END_STREAM
      {
        "tips-view-uri": "/tips/2718281828459",
        "tips-view-summary": {
          "updates-graph-summary": {
            "start-seq": 101,
            "end-seq": 106,
            "start-edge-rec" : {
              "seq-i": 0,
              "seq-j": 105
            }
          },
          "server-push": true
        }
      }
]]></artwork>
        </section>
        <section anchor="read-push-state">
          <name>Read Push State</name>
          <t>A client can use the HTTP GET method, with accept header set to
"application/alto-tipsparams+json" to check the status of server push.</t>
          <artwork><![CDATA[
    GET /<tips-view-uri>/push
]]></artwork>
          <t>Example:</t>
          <artwork><![CDATA[
    Client -> server request

    HEADERS
      - END_STREAM
      + END_HEADERS
        :method = GET
        :scheme = https
        :path = /tips/2718281828459/push
        host = alto.example.com
        accept = application/alto-error+json,
                      application/alto-tipsparams+json

    Server -> client response:

    HEADERS
      - END_STREAM
      + END_HEADERS
        :status = 200
        content-type = application/alto-tipsparams+json
        content-length = 519

    DATA
      - END_STREAM
      {
        "server-push": true
      }
]]></artwork>
        </section>
        <section anchor="stop-push">
          <name>Stop Push</name>
          <t>A client can stop receiving server push updates either explicitly or
implicitly.</t>
          <dl>
            <dt>Explicit stop:</dt>
            <dd>
              <t>A client stops push by using the HTTP PUT method to <tt>/&lt;tips-view- uri&gt;/push</tt>,
with content type "application/alto-tipsparams+json" and setting server-push
to FALSE:</t>
            </dd>
            <dt>Implicit stop:</dt>
            <dd>
              <t>There are two ways. First, TIPS view is connection ephemeral: the close of
connection or stream for the TIPS view deletes the TIPS view from the view
of the client.
</t>
              <t>Second, the client sends a DELETE <tt>/&lt;tips-view-uri&gt;</tt> request, indicating it
no longer is interested in the resource, which also deletes the
client from the push receiver set if present.</t>
            </dd>
          </dl>
          <t>Note that a client may choose to explicitly stop server push for a
resource, but may not delete the TIPS view so that it can switch
seamlessly from server push to client pull in the case that the
server push frequency is undesirable, without having to request a new
TIPS view.</t>
          <t>Example of explicit stop:</t>
          <artwork><![CDATA[
    Client -> server request

    HEADERS
      - END_STREAM
      + END_HEADERS
        :method = PUT
        :scheme = https
        :path = /tips/2718281828459/push
        host = alto.example.com
        accept = application/alto-error+json
        content-type = application/alto-tipsparams+json
        content-length = 69

    DATA
      - END_STREAM
      {
        "server-push": false
      }

    Server-> client response

    HEADERS
      - END_STREAM
      + END_HEADERS
        :status = 200
]]></artwork>
        </section>
      </section>
      <section anchor="scheduling-server-push-updates">
        <name>Scheduling Server Push Updates</name>
        <t>The objective of the server is to push the latest version to the
client using the lowest cost (sum of size) of the updates.  Hence, it
is <bcp14>RECOMMENDED</bcp14> that the server computes the push path using the
following algorithm, upon each event computing a push:</t>
        <ul spacing="normal">
          <li>Compute client current version (nc). During initialization, if the TIPS view
request has a tag, find that version; otherwise nc = 0</li>
          <li>Compute the shortest path from the current version to the latest version, nc,
n1, ... ne (latest version). Note that the shortest path may not involve the
tagged version and instead follow the edge from 0 to the latest snapshot.</li>
          <li>push <tt>/&lt;tips-view-uri&gt;/ug/nc/n1</tt></li>
        </ul>
        <t>Note</t>
        <ul spacing="normal">
          <li>Initialization: If the client specifically requests a starting
edge to be pushed, the server <bcp14>MAY</bcp14> start with that edge even if it
is not the shortest path.</li>
          <li>Push state: the server <bcp14>MUST</bcp14> maintain the last entry pushed to the
client (and hence per client, per connection state) and schedule
next update push accordingly.</li>
          <li>Push management: The client <bcp14>MUST NOT</bcp14> cancel (<tt>RST_STREAM</tt>) a
<tt>PUSH_PROMISE</tt> to avoid complex server state management.</li>
        </ul>
      </section>
      <section anchor="examples">
        <name>Examples</name>
        <t>Using the example updates graph in <xref target="data-model"/>, a client can wait on
the server for incremental push, where the server first sends
<tt>PUSH_PROMISE</tt>:</t>
        <artwork><![CDATA[
    Server -> client PUSH_PROMISE in current stream:

    PUSH_PROMISE
      - END_STREAM
        Promised Stream 4
        HEADER BLOCK
        :method = GET
        :scheme = https
        :path = /tips/2718281828459/ug/0/101
        host = alto.example.com
        accept = application/alto-error+json,
                      application/alto-costmap+json

    Server -> client content Stream 4:

    HEADERS
      + END_STREAM
      + END_HEADERS
        :status = 200
        content-type = application/alto-costmap+json
        content-length = 539

    DATA
      + END_STREAM
      {
        "meta" : {
          "dependent-vtags" : [{
              "resource-id": "my-network-map",
              "tag": "da65eca2eb7a10ce8b059740b0b2e3f8eb1d4785"
            }],
          "cost-type" : {
            "cost-mode"  : "numerical",
            "cost-metric": "routingcost"
          },
          "vtag": {
            "resource-id" : "my-routingcost-map",
            "tag" : "3ee2cb7e8d63d9fab71b9b34cbf764436315542e"
          }
        },
        "cost-map" : {
          "PID1": { "PID1": 1,  "PID2": 5,  "PID3": 10 },
          "PID2": { "PID1": 5,  "PID2": 1,  "PID3": 15 },
          "PID3": { "PID1": 20, "PID2": 15  }
        }
    }

    Server -> client PUSH_PROMISE in current stream:

    PUSH_PROMISE
      - END_STREAM
        Promised Stream 6
        HEADER BLOCK
        :method = GET
        :scheme = https
        :path = /tips/2718281828459/ug/101/102
        host = alto.example.com
        accept = application/alto-error+json,
                      application/merge-patch+json

    Server -> client content Stream 6

    HEADERS
      + END_STREAM
      + END_HEADERS
        :status = 200
        content-type = application/merge-patch+json
        content-length = 7

    DATA
      + END_STREAM
      {
        "meta": {
            "vtag": {
              "tag": "c0ce023b8678a7b9ec00324673b98e54656d1f6d"
            }
        },
        "cost-map": {
          "PID1": {
            "PID2": 9
          },
          "PID3": {
            "PID1": null,
            "PID3": 1
          }
        }
      }
]]></artwork>
      </section>
      <section anchor="server-push-stream-management">
        <name>Server Push Stream Management</name>
        <t>The server push <bcp14>MUST</bcp14> satisfy the following requirements:</t>
        <ul spacing="normal">
          <li>
            <tt>PUSH_PROMISE</tt> frames <bcp14>MUST</bcp14> be sent in stream <tt>SID_tq</tt> to serialize and allow
the client to know the push order;</li>
          <li>Each <tt>PUSH_PROMISE</tt> frame chooses a new server-selected stream ID, and the
stream is closed after push.</li>
        </ul>
      </section>
    </section>
    <section anchor="operation-and-processing-considerations">
      <name>Operation and Processing Considerations</name>
      <section anchor="load-balancing">
        <name>Considerations for Load Balancing</name>
        <t>TIPS allow clients to make concurrent pulls of the incremental
updates potentially through different HTTP connections.  As a
consequence, it introduces additional complexities when the ALTO
server is being load balanced -- a feature widely used to build
scalable and fault-tolerant web services.  For example, a request may
be incorrectly processed if the following two conditions both hold:</t>
        <ul spacing="normal">
          <li>the backend servers are stateful, i.e., the TIPS view is created
and stored only on a single server;</li>
          <li>the ALTO server is using layer-4 load balancing, i.e., the
requests are distributed based on the TCP 5-tuple.</li>
        </ul>
        <t>Thus, additional considerations are required to enable correct load
balancing for TIPS, including:</t>
        <ul spacing="normal">
          <li>Use a stateless architecture: One solution is to follow the
stateless computing pattern: states about the TIPS view are not
maintained by the backend servers but are stored in a distributed
database.  Thus, concurrent requests to the same TIPS view can be
processed on arbitrary stateless backend servers, which all
fetches data from the same database.</li>
          <li>Configure the load balancers properly: In case when the backend
servers are stateful, the load balancers must be properly
configured to guarantee that requests of the same TIPS view always
arrive at the same server.  For example, an operator or a provider
of an ALTO server may configure layer-7 load balancers that
distribute requests based on URL or cookies.</li>
        </ul>
      </section>
      <section anchor="considerations-for-choosing-updates">
        <name>Considerations for Choosing Updates</name>
        <t>When implementing TIPS, a developer should be cognizant of the
effects of update schedule, which includes both the choice of timing
(i.e., when/what to trigger an update on the updates graph) and the
choice of message format (i.e., given an update, send a full
replacement or an incremental change).  In particular, the update
schedule can have effects on both the overhead and the freshness of
information.  To minimize overhead, developers may choose to batch a
sequence of updates for resources that frequently change by
cumulative updates or a full replacement after a while.  Developers
should be cognizant that batching reduces the freshness of
information and should also consider the effect of such delays on
client behaviors.</t>
        <t>For incremental updates, this design allows both JSON patch and JSON
merge patch for incremental changes.  JSON merge patch is clearly
superior to JSON patch for describing incremental changes to cost
maps, endpoint costs, and endpoint properties.  For these data
structures, JSON merge patch is more space efficient, as well as
simpler to apply.  There is no advantage allowing a server to use
JSON patch for those resources.</t>
        <t>The case is not as clear for incremental changes to network maps.</t>
        <t>First, consider small changes, such as moving a prefix from one PID
to another.  JSON patch could encode that as a simple insertion and
deletion, while JSON merge patch would have to replace the entire
array of prefixes for both PIDs.  On the other hand, to process a
JSON patch update, the ALTO client would have to retain the indexes
of the prefixes for each PID.  Logically, the prefixes in a PID are
an unordered set, not an array; aside from handling updates, a client
has no need to retain the array indexes of the prefixes.  Hence, to
take advantage of JSON patch for network maps, ALTO clients would
have to retain additional, otherwise unnecessary, data.</t>
        <t>Second, consider more involved changes, such as removing half of the
prefixes from a PID.  JSON merge patch would send a new array for
that PID, while JSON patch would have to send a list of remove
operations and delete the prefix one by one.</t>
        <t>Therefore, each TIPS instance may choose to encode the updates using
JSON merge patch or JSON patch based on the type of changes in
network maps.</t>
      </section>
      <section anchor="considerations-for-cross-resource-dependency-scheduling">
        <name>Considerations for Cross-Resource Dependency Scheduling</name>
        <t>Dependent ALTO resources result in cross-resource dependencies in
TIPS.  Consider the following pair of resources, where my-cost-map
(C) is dependent on my-network-map (N).  The updates graph for each
resource is shown, along with links in between the respective updates
graphs to show dependency:</t>
        <figure anchor="fig-cross">
          <name>Example Dependency Model</name>
          <artwork type="drawing" align="center"><![CDATA[
                       +---+   +---+   +---+   +---+   +---+
  my-network-map (N)   | 0 |-->|89 |-->|90 |-->|91 |-->|92 |
                       +---+   +---+   +---+   +---+   +---+
                                 |   \       \       \
                                 |    \       \       \
                       +---+   +---+   +---+   +---+   +---+
  my-cost-map (C)      | 0 |-->|101|-->|102|-->|103|-->|104|
                       +---+   +---+   +---+   +---+   +---+
                        |_______________________|
]]></artwork>
        </figure>
        <t>In <xref target="fig-cross"/>, the cost-map versions 101 and 102 (denoted as C101 and C102)
are dependent on the network-map version 89 (denoted as N89). The cost-map
version 103 (C103) is dependent on the network-map version 90 (N90), and so on.</t>
        <t>In pull-mode, a client can decide the order in which to receive the updates.</t>
        <t>In push-mode, the server must decide.  Pushing order may affect how
fast the client can build a consistent view and how long the client
needs to buffer the update.</t>
        <ul spacing="normal">
          <li>Example 1: The server pushes N89, N90, N91, C101, C102 in that
order.  The client either gets no consistent view of the resources
or it has to buffer N90 and N91.</li>
          <li>Example 2: The server pushes C101, C102, C103, N89.  The client
either gets no consistent view or it has to buffer C103.</li>
        </ul>
        <t>Therefore, the server is <bcp14>RECOMMENDED</bcp14> to push updates in the ascending
order of the smallest dependent tag, e.g., {C101, C102, N89} before
{C103, N90}</t>
      </section>
      <section anchor="client-processing">
        <name>Considerations for Client Processing Updates</name>
        <t>In general, when an ALTO client receives a full replacement for a
resource, the ALTO client should replace the current version with the
new version.  When an ALTO client receives an incremental update for
a resource, the ALTO client should apply those updates to the current
version of the resource.</t>
        <t>However, because resources can depend on other resources (e.g., cost
maps depend on network maps), an ALTO client <bcp14>MUST NOT</bcp14> use a dependent
resource if the resource on which it depends has changed.  There are
at least two ways an ALTO client can do that.  The following
paragraphs illustrate these techniques by referring to network and
cost map messages, although these techniques apply to any dependent
resources.</t>
        <t>Note that when a network map changes, the server <bcp14>SHOULD</bcp14> send the
network map update message before sending the updates for the
dependent cost maps.</t>
        <t>One approach is for the ALTO client to save the network map update
message in a buffer and continue to use the previous network map and
the associated cost maps until the ALTO client receives the update
messages for all dependent cost maps.  The ALTO client then applies
all network and cost map updates atomically.</t>
        <t>Alternatively, the ALTO client <bcp14>MAY</bcp14> update the network map
immediately.  In this case, the cost maps using the network map
become invalid because they are inconsistent with the current network
map; hence, the ALTO client <bcp14>MUST</bcp14> mark each such dependent cost map as
temporarily invalid and <bcp14>MUST NOT</bcp14> use each such cost map until the
ALTO client receives a cost map update indicating that it is based on
the new network map version tag.</t>
        <t>When implementing server push, the server <bcp14>SHOULD</bcp14> send updates for
dependent resource (i.e., the cost maps in the preceding example) in
a timely fashion.  However, if the ALTO client does not receive the
expected updates, a simple recovery method is that the ALTO client
uses client pull to request the missing update.  The ALTO client <bcp14>MAY</bcp14>
retain the version tag of the last version of any tagged resources
and search those version tags when identifying the new updates to
pull.  Although not as efficient as possible, this recovery method is
simple and reliable.</t>
        <t>Though a server <bcp14>SHOULD</bcp14> send update items sequentially, it is possible
that a client receives the update items out of order (in the case of
a retransmitted update item or a result of concurrent fetch).  The
client <bcp14>MUST</bcp14> buffer the update items if they arrive out of order and
then apply them sequentially (based upon the sequence numbers) due to
the operation of JSON merge patch and JSON patch.</t>
      </section>
      <section anchor="considerations-for-updates-to-filtered-cost-maps">
        <name>Considerations for Updates to Filtered Cost Maps</name>
        <t>If TIPS provides updates to a Filtered Cost Map that allows
constraint tests, then an ALTO client <bcp14>MAY</bcp14> request updates to a
Filtered Cost Map request with a constraint test.  In this case, when
a cost changes, the updates graph <bcp14>MUST</bcp14> have an update if the new
value satisfies the test.  If the new value does not, whether there
is an update depends on whether the previous value satisfied the
test.  If it did not, the updates graph <bcp14>SHOULD NOT</bcp14> have an update.
But if the previous value did, then the updates graph <bcp14>MUST</bcp14> add an
update with a "null" value to inform the ALTO client that this cost
no longer satisfies the criteria.</t>
        <t>TIPS can avoid having to handle such a complicated behavior by
offering TIPS only for Filtered Cost Maps that do not allow
constraint tests.</t>
      </section>
      <section anchor="considerations-for-updates-to-ordinal-mode-costs">
        <name>Considerations for Updates to Ordinal Mode Costs</name>
        <t>For an ordinal mode cost map, a change to a single cost point may
require updating many other costs.  As an extreme example, suppose
the lowest cost changes to the highest cost.  For a numerical mode
cost map, only that one cost changes.  But for an ordinal mode cost
map, every cost might change.  While this document allows TIPS to
offer incremental updates for ordinal mode cost maps, TIPS
implementors should be aware that incremental updates for ordinal
costs are more complicated than for numerical costs, and that small
changes of the original cost value may result in large updates.</t>
        <t>A TIPS implementation can avoid this complication by only offering
full replacements as updates in the updates graph for ordinal cost
maps.</t>
      </section>
      <section anchor="shared-tips-view">
        <name>Considerations for Managing Shared TIPS Views</name>
        <t>From a client's point of view, it sees only one copy of the TIPS view
for any resource.  However, on the server side, there are different
implementation options, especially for common resources (e.g.,
network map or cost map) that may be frequently queried by many
clients.  Some potential options are listed below:</t>
        <ul spacing="normal">
          <li>An ALTO server creates one TIPS view of the common resource for
each client.  When the client deletes the view, the server deletes
the view in the server storage.</li>
          <li>
            <t>An ALTO server maintains one copy of the TIPS view for each common
resource and all clients requesting the same resources use the
same copy.  There are two ways to manage the storage for the
shared copy:  </t>
            <ul spacing="normal">
              <li>the ALTO server maintains the set of clients that subscribe to
the TIPS view, and only removes the view from the storage when
the set becomes empty.</li>
              <li>the TIPS view is never removed from the storage.</li>
            </ul>
          </li>
        </ul>
        <t>Developers may choose different implementation options depending on
criteria such as request frequency, available resources of the ALTO
server, the ability to scale, and programming complexity.</t>
      </section>
      <section anchor="considerations-for-offering-shortcut-incremental-updates">
        <name>Considerations for Offering Shortcut Incremental Updates</name>
        <t>Besides the mandatory stepwise incremental updates (from i to i+1),
an ALTO server may optionally offer shortcut incremental updates, or
simple shortcuts, between two non-consecutive versions i and i+k (k &gt;
1).  Such shortcuts offer alternative paths in the update graph and
can potentially speed up the transmission and processing of
incremental updates, leading to faster synchronization of ALTO
information, especially when the client has limited bandwidth and
computation.  However, implementors of an ALTO server must be aware
that:</t>
        <ol spacing="normal" type="1"><li>Optional shortcuts may increase the size of the update graph, in
the worst case being the square of the number of updates (i.e.,
when a shortcut is offered for each version to all future
versions).</li>
          <li>Optional shortcuts require additional storage on the ALTO server.</li>
          <li>Optional shortcuts may reduce concurrency when the updates do not
overlap, e.g., when the updates apply to different parts of an
ALTO resource.  In such a case, the total size of the original
updates is close to the size of the shortcut, but the original
updates can be transmitted concurrently while the shortcut is
transmitted in a single connection.</li>
        </ol>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations (Section 15 of <xref target="RFC7285"/>) of the base
protocol fully apply to this extension.  For example, the same
authenticity and integrity considerations (Section 15.1 of <xref target="RFC7285"/>)
still fully apply; the same considerations for the privacy of ALTO
users (Section 15.4 of <xref target="RFC7285"/>) also still fully apply.</t>
      <t>The additional services (addition of update read service and update
push service) provided by this extension extend the attack surface
described in Section 15.1.1 of <xref target="RFC7285"/>.  The following sub-sections discuss the
additional risks and their remedies.</t>
      <section anchor="tips-denial-of-service-attacks">
        <name>TIPS: Denial-of-Service Attacks</name>
        <t>Allowing TIPS views enables a new class of Denial-of-Service attacks.
In particular, for the TIPS server, an ALTO client might
create an excessive number of TIPS views.</t>
        <t>To avoid these attacks on the TIPS server, the server <bcp14>SHOULD</bcp14> choose
to limit the number of active views and reject new requests when that threshold
is reached. TIPS allows predictive fetching and the server <bcp14>SHOULD</bcp14> also choose to
limit the number of pending requests. If a new request exceeds the threshold,
the server <bcp14>SHOULD</bcp14> log the event and may return the HTTP status "429 Too many
requests".</t>
        <t>It is important to note that the preceding approaches are not the
only possibilities.  For example, it may be possible for TIPS to use
somewhat more clever logic involving IP reputation, rate-limiting,
and compartmentalization of the overall threshold into smaller
thresholds that apply to subsets of potential clients.</t>
      </section>
      <section anchor="alto-client-update-overloading-or-instability">
        <name>ALTO Client: Update Overloading or Instability</name>
        <t>The availability of continuous updates, when the client indicates
receiving server push, can also cause overload for an ALTO client, in
particular, an ALTO client with limited processing capabilities.  The
current design does not include any flow control mechanisms for the
client to reduce the update rates from the server.  Under
overloading, the client <bcp14>MAY</bcp14> choose to remove the information
resources with high update rates.</t>
        <t>Also, under overloading, the client may no longer be able to detect
whether information is still fresh or has become stale.  In such a
case, the client should be careful in how it uses the information to
avoid stability or efficiency issues.</t>
      </section>
      <section anchor="spoofed-uri">
        <name>Spoofed URI</name>
        <t>An outside party that can read the TIPS response or that can observe
TIPS requests can obtain the TIPS view URI and use that to send
fraudulent "DELETE" requests, thus disabling the service for the
valid ALTO client.  This can be avoided by encrypting the requests
and responses (Section 15 of <xref target="RFC7285"/>).</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to register the following media types following the
same process in <xref target="RFC7285"/>:</t>
      <ul spacing="normal">
        <li>application/alto-tips+json: as described in <xref target="open-resp"/>;</li>
        <li>application/alto-tipsparams+json: as described in <xref target="open-req"/>;</li>
      </ul>
      <section anchor="applicationalto-tipsjson-media-type">
        <name>application/alto-tips+json Media Type</name>
        <dl>
          <dt>Type name:</dt>
          <dd>
            <t>application</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>alto-tips+json</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>Encoding considerations are identical to those specified for the
"application/json" media type. See <xref target="RFC8259"/>.</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>Security considerations relating to the generation and consumption of ALTO
Protocol messages are discussed in Section 10 of <xref target="RFC8895"/> and Section 15 of
<xref target="RFC7285"/>.</t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>This document specifies format of conforming messages and the interpretation
thereof.</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t><xref target="open-resp"/> of this document.</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>ALTO servers and ALTO clients either stand alone or are embedded within other
applications.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Additional information:</dt>
          <dd>
            <t><br/>
            </t>
            <dl>
              <dt>Deprecated alias names for this type:</dt>
              <dd>
                <t>N/A</t>
              </dd>
              <dt>Magic number(s):</dt>
              <dd>
                <t>N/A</t>
              </dd>
              <dt>File extension(s):</dt>
              <dd>
                <t>This document uses the media type to refer to protocol messages and thus
 does not require a file extension.</t>
              </dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>
                <t>N/A</t>
              </dd>
            </dl>
          </dd>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>See Authors' Addresses section.</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>See Authors' Addresses section.</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>Internet Engineering Task Force (mailto:iesg@ietf.org).</t>
          </dd>
        </dl>
      </section>
      <section anchor="applicationalto-tipsparamsjson-media-type">
        <name>application/alto-tipsparams+json Media Type</name>
        <dl>
          <dt>Type name:</dt>
          <dd>
            <t>application</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>alto-tipsparams+json</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>Encoding considerations are identical to those specified for the
 "application/json" media type. See <xref target="RFC8259"/>.</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>Security considerations relating to the generation and consumption of ALTO
Protocol messages are discussed in Section 10 of <xref target="RFC8895"/> and Section 15 of
<xref target="RFC7285"/>.</t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>This document specifies format of conforming messages and the interpretation
thereof.</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t><xref target="open-req"/> of this document.</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>ALTO servers and ALTO clients either stand alone or are embedded within other
applications.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Additional information:</dt>
          <dd>
            <t><br/>
            </t>
            <dl>
              <dt>Deprecated alias names for this type:</dt>
              <dd>
                <t>N/A</t>
              </dd>
              <dt>Magic number(s):</dt>
              <dd>
                <t>N/A</t>
              </dd>
              <dt>File extension(s):</dt>
              <dd>
                <t>This document uses the media type to refer to protocol messages and thus
 does not require a file extension.</t>
              </dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>
                <t>N/A</t>
              </dd>
            </dl>
          </dd>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>See Authors' Addresses section.</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>See Authors' Addresses section.</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>Internet Engineering Task Force (mailto:iesg@ietf.org).</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7285">
          <front>
            <title>Application-Layer Traffic Optimization (ALTO) Protocol</title>
            <author fullname="R. Alimi" initials="R." role="editor" surname="Alimi">
              <organization/>
            </author>
            <author fullname="R. Penno" initials="R." role="editor" surname="Penno">
              <organization/>
            </author>
            <author fullname="Y. Yang" initials="Y." role="editor" surname="Yang">
              <organization/>
            </author>
            <author fullname="S. Kiesel" initials="S." surname="Kiesel">
              <organization/>
            </author>
            <author fullname="S. Previdi" initials="S." surname="Previdi">
              <organization/>
            </author>
            <author fullname="W. Roome" initials="W." surname="Roome">
              <organization/>
            </author>
            <author fullname="S. Shalunov" initials="S." surname="Shalunov">
              <organization/>
            </author>
            <author fullname="R. Woundy" initials="R." surname="Woundy">
              <organization/>
            </author>
            <date month="September" year="2014"/>
            <abstract>
              <t>Applications using the Internet already have access to some topology information of Internet Service Provider (ISP) networks.  For example, views to Internet routing tables at Looking Glass servers are available and can be practically downloaded to many network application clients.  What is missing is knowledge of the underlying network topologies from the point of view of ISPs.  In other words, what an ISP prefers in terms of traffic optimization -- and a way to distribute it.</t>
              <t>The Application-Layer Traffic Optimization (ALTO) services defined in this document provide network information (e.g., basic network location structure and preferences of network paths) with the goal of modifying network resource consumption patterns while maintaining or improving application performance.  The basic information of ALTO is based on abstract maps of a network.  These maps provide a simplified view, yet enough information about a network for applications to effectively utilize them.  Additional services are built on top of the maps.</t>
              <t>This document describes a protocol implementing the ALTO services. Although the ALTO services would primarily be provided by ISPs, other entities, such as content service providers, could also provide ALTO services.  Applications that could use the ALTO services are those that have a choice to which end points to connect.  Examples of such applications are peer-to-peer (P2P) and content delivery networks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7285"/>
          <seriesInfo name="DOI" value="10.17487/RFC7285"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8895">
          <front>
            <title>Application-Layer Traffic Optimization (ALTO) Incremental Updates Using Server-Sent Events (SSE)</title>
            <author fullname="W. Roome" initials="W." surname="Roome">
              <organization/>
            </author>
            <author fullname="Y. Yang" initials="Y." surname="Yang">
              <organization/>
            </author>
            <date month="November" year="2020"/>
            <abstract>
              <t>The Application-Layer Traffic Optimization (ALTO) protocol (RFC 7285) provides network-related information, called network information resources, to client applications so that clients can make informed decisions in utilizing network resources. This document presents a mechanism to allow an ALTO server to push updates to ALTO clients to achieve two benefits: (1) updates can be incremental, in that if only a small section of an information resource changes, the ALTO server can send just the changes and (2) updates can be immediate, in that the ALTO server can send updates as soon as they are available.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8895"/>
          <seriesInfo name="DOI" value="10.17487/RFC8895"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC9205">
          <front>
            <title>Building Protocols with HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>Applications often use HTTP as a substrate to create HTTP-based APIs. This document specifies best practices for writing specifications that use HTTP to define new application protocols. It is written primarily to guide IETF efforts to define application protocols using HTTP for deployment on the Internet but might be applicable in other situations.</t>
              <t>This document obsoletes RFC 3205.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="56"/>
          <seriesInfo name="RFC" value="9205"/>
          <seriesInfo name="DOI" value="10.17487/RFC9205"/>
        </reference>
      </references>
    </references>
    <section anchor="sec-dep-model">
      <name>A High Level Deployment Model</name>
      <t>Conceptually, the TIPS system consists of three types of resources:</t>
      <ul spacing="normal">
        <li>(R1) TIPS frontend to manage (create/delete) TIPS views.</li>
        <li>(R2) TIPS view directory, which provides metadata (e.g., references) about the
network resource data.</li>
        <li>(R3) The actual network resource data, encoded as complete ALTO network
resources (e.g., cost map, network map) or incremental updates.</li>
      </ul>
      <figure anchor="fig-service-model">
        <name>Sample TIPS Deployment Model</name>
        <artwork type="drawing" align="center"><![CDATA[
                      +------------------------------------------------+
                      |                                                |
 +------+             |R1: Frontend/Open  R2: Directory/Meta  R3: Data |
 |      | "iget" base |     +-----+           +-----+         +-----+  |
 |      | resource 1  |     |     |           |     |         |     |  |
 |      |-------------|---->|     |           |     |         |     |  |
 |      | incremental |     |     |           |     |-------->|     |  |
 |      | transfer    |     |     |           |     |         |     |  |
 |      | resource    |     |     |           |     |         |     |  |
 |      |<------------|-----|     |           +-----+         +-----+  |
 |Client|             |     |     |                                    |
 |      | "iget" base |     |     |                                    |
 |      | resource 2  |     |     |           +-----+         +-----+  |
 |      |-------------|---->|     |           |     |         |     |  |
 |      | incremental |     |     |           |     |         |     |  |
 |      | transfer    |     |     |           |     | ------->|     |  |
 |      | resource    |     |     |           |     |         |     |  |
 |      |<------------|-----|     |           |     |         |     |  |
 +------+             |     +-----+           +-----+         +-----+  |
                      |                                                |
                      +------------------------------------------------+
]]></artwork>
      </figure>
      <t>Design Point: Component Resource Location</t>
      <ul spacing="normal">
        <li>Design 1 (Single): all the three resource types at the same, single server (accessed via
relative reference)</li>
        <li>Design 2 (Flexible): all three resource types can be at their own server (accessed via
absolute reference)</li>
        <li>Design 3 (Dir + Data): R2 and R3 must remain together, though R1 might not be
on the same server</li>
      </ul>
      <t>This document specifies Design 1 in order to simplify session management, though
at the expense of maximum load balancing flexibility. See <xref target="load-balancing"/> for
a discussion on load balancing considerations. Future documents may extend the
protocol to support Design 2 or Design 3.</t>
    </section>
    <section anchor="sec-bcp-http">
      <name>Conformance to "Building Protocols with HTTP" Best Current Practices</name>
      <t>This specification adheres fully to <xref target="RFC9205"/> as further elaborated below:</t>
      <ul spacing="normal">
        <li>TIPS does not "redefine, refine, or overlay the semantics of
generic protocol elements such as methods, status codes, or
existing header fields" and instead focuses on "protocol elements
that are specific to <tt>[the TIPS]</tt> application -- namely, <tt>[its]</tt> HTTP
resources" (<xref section="3.1" sectionFormat="of" target="RFC9205"/>).</li>
        <li>There are no statically defined URI components (<xref section="3.2" sectionFormat="of" target="RFC9205"/>).</li>
        <li>No minimum version of HTTP is specified by TIPS which is
recommended (<xref section="4.1" sectionFormat="of" target="RFC9205"/>).</li>
        <li>The TIPS design follows the advice that "When specifying examples of
protocol interactions, applications should document both the
request and response messages with complete header sections,
preferably in HTTP/1.1 format" (<xref section="4.1" sectionFormat="of" target="RFC9205"/>).</li>
        <li>TIPS uses URI templates which is recommended (<xref section="4.2" sectionFormat="of" target="RFC9205"/>).</li>
        <li>TIPS follows the pattern that "a client will begin interacting
with a given application server by requesting an initial document
that contains information about that particular deployment,
potentially including links to other relevant resources.  Doing so
ensures that the deployment is as flexible as possible
(potentially spanning multiple servers), allows evolution, and
also gives the application the opportunity to tailor the
"discovery document" to the client" (<xref section="4.4.1" sectionFormat="of" target="RFC9205"/>).</li>
        <li>TIPS uses existing HTTP schemes (<xref section="4.4.2" sectionFormat="of" target="RFC9205"/>).</li>
        <li>TIPS defines its errors "to use the most applicable status code"
(<xref section="4.6" sectionFormat="of" target="RFC9205"/>).</li>
        <li>TIPS does not "make assumptions about the relationship between
separate requests on a single transport connection; doing so
breaks many of the assumptions of HTTP as a stateless protocol and
will cause problems in interoperability, security, operability,
and evolution" (<xref section="4.11" sectionFormat="of" target="RFC9205"/>).  The only relationship
between requests is that a client must make a request to first
discover where a TIPS view of resource will be served, which is
consistent with the URI discovery in <xref section="4.4.1" sectionFormat="of" target="RFC9205"/>.</li>
        <li>
          <xref section="4.14" sectionFormat="of" target="RFC9205"/> notes that there are
quite a few caveats with using server push, mostly because of lack
of widespread support.  The authors have considered these
factors and have still decided server push can be valuable in the
TIPS use case.</li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors of this document would like to thank Mark Nottingham and
Spencer Dawkins for providing invaluable reviews of earlier versions of this
document, Adrian Farrel, Qin Wu, and Jordi Ros Giralt for their continuous
feedback, and Russ White, Donald Eastlake, Martin Thomson, Bernard Adoba,
Spencer Dawkins, and Sheng Jiang for the directorate reviews.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
16FCDv7hYHNiEJ6zUzzBv/2lrBPrhXxdxsSaDCZMDo/DiLs5TH0pRkni1koD
vgpi9UKVKFTlOMJe7pRiFt2FlLy3ImWnq4p4WyZVekPFRUOJXegtdagugnVg
HeBuvh0thzLUOIUOTesUOjYLWs2cnlOG+0rOz/cRY4u633Xc5rT2oLww6Ret
44pM8uGp9UhEJwkm8MeHD/UAOX194u7PVLlTzS5VcEf3gc68xIfbO2jtsRHH
1/Cxjw4RnYxMFU8Pj56enArlDlMQCX88fXPy9PCFfHSbPgofS9MDWcUjWpP/
mHwkOXxMtTX857S9j9iU4z49x0CjR/32GvyRVLlH11ll4vAL9+71cSv4I0Yq
rgzQM8n6N+Zkk4F37t1nLB4dvjlcj0ITC/P5wB9bGWJ9RQj6RWQC2FlHJayR
Hfy6vRVp5hGar35LbO0+vPeF6Pqv0CHZb/P7NaFDhkT8S5+sCn+CEivpFnS7
RaKkBiA4VzGfcnVl83EUXyFLrTeoM0ABh+f55H0kKYei7vX+W7rleRnCHf+J
HA4g+jIGF9mqNT+Lfv7pPM/GJv57co04etK+53jH3d2HX8g7ruGeahC/BacA
lK4epYqUsX61RmUbKclihPGqTjTUl0qqOxEeRyNxy+ii1bJxgsV6GR3OTtCz
MHXH4R1RAR1M9Yfe0KapGogRGlwOIcxH2exAC8eLGPo3nVbNo/QZyl+DMHDN
Nq1Z4nGps/mBCKsVdRJIeIttOxKqC9RNjk37w/2cFk3VdVKXfCD1d4hUTqlN
UGDq1qo9EnwVt4N8/M4Hx4iRC3FUkIDpTekUQYCln6zDPs5PpgqbBngjLDvg
af8DBRykWCkgMLKpNpnVtqSIMGapetqLrQcSwumhQiuqVkaWQjghSrWPgUZx
A2lNzkEEzhZorYEpCGw7BTJ20yhDu5+5LvS46gCkmn02VxTqXpKoz+maGmwn
sXWxZyaxyTJGPM7DA/bPk3nf/pvdCL89v73369htWJzP3Dvda+c3vHWco/MU
9mS6mket/tTozu4LVulRUdZasS4Ng8KiG9bKJUnT5cZW1m7pGTdo7tTjAzdz
E+RKknCKv+dxmrNPTwSu8hlDPLr3Vsr7CCCiKTepCcjN5mdVDYdoMeBqvZS/
jj3qWhmFNUfRDYfoXqax3Z0XufM2S8yDPlqRg6goC4wklqQJl8Dsq5ulLkpB
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
gPHMxVeqoZRZjNhT/zd22aGt+UgBAA==

-->

</rfc>
