<?xml version="1.0" encoding="us-ascii"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.31 (Ruby 3.4.8) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

<!ENTITY RFC2119 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY RFC8174 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
<!ENTITY RFC9221 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9221.xml">
<!ENTITY RFC9000 SYSTEM "https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9000.xml">
]>


<rfc ipr="trust200902" docName="draft-song-tsvwg-camp-00" category="info" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="camp">Consistency-Aware Multipath Transport (CAMP) toward Interactive Multimodal LLM-Based Systems</title>

    <author initials="Y." surname="Song" fullname="Yuhong Song">
      <organization>Pengcheng Laboratory</organization>
      <address>
        <email>songyh@pcl.ac.cn</email>
      </address>
    </author>
    <author initials="C." surname="Li" fullname="Changlong Li">
      <organization>East China Normal University</organization>
      <address>
        <email>clli@cs.ecnu.edu.cn</email>
      </address>
    </author>
    <author initials="Q." surname="Li" fullname="Qing Li">
      <organization>Pengcheng Laboratory</organization>
      <address>
        <email>liq@pcl.ac.cn</email>
      </address>
    </author>

    <date year="2026" month="March" day="02"/>

    <area>Web and Internet Transport</area>
    <workgroup>TSVWG</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 45?>

<t>With the prosperity of generative large language models (LLMs), interactive LLM-based services, such as digital humans, have imposed new stringent requirements on low latency and high multimodal consistency. 
Traditional interactive LLM-based systems typically transmit multimodal content over a single network path, thereby failing to exploit the advantages offered by multipath networks. Even when multipath transport mechanisms are adopted, single-stream encapsulation does not enable differentiated management of heterogeneous modalities. However, naively separating modalities into multiple streams further introduces inter-modal arrival inconsistency.
To address these challenges, this document specifies CAMP, a consistency-aware multipath transport design over the Multipath QUIC (MPQUIC) protocol.
First, CAMP defines a three-stream separation encapsulation format to support modality-differentiated transmission. Second, it incorporates a transport-layer consistency-aware multipath scheduler to reduce inter-modal arrival time deviation across network paths. Third, it specifies a client-side application-layer alignment mechanism that operates in coordination with the transport scheduler.
To the best of our knowledge, this is the first specification to address multipath-enabled multimodal consistency guarantees for interactive LLM-based systems.</t>



    </abstract>



  </front>

  <middle>


<?line 53?>

<section anchor="introduction"><name>Introduction</name>
<t>Generative large language models (LLMs) have enabled a new generation of interactive systems, including digital humans, conversational agents, and multimodal assistants. These systems continuously generate and transmit multimodal (i.e., text, audio, and video) content in response to user inputs. Unlike traditional media streaming or static content delivery, interactive LLM-based systems operate under strict real-time constraints and require strong semantic and temporal coupling across modalities.</t>

<t>Existing transport approaches for interactive LLM-based systems predominantly rely on single-path transmission, which fails to leverage the bandwidth aggregation, redundancy, and latency diversity benefits offered by multipath networks. 
In addition, current implementations typically encapsulate multiple modalities within a single transport stream, which preventing fine-grained multimodal data management. For example, text and audio generally require reliable and in-order delivery, whereas video streams may tolerate controlled frame loss to reduce latency.</t>

<t>A straightforward improvement is to separate text, audio, and video into independent streams to enable differentiated transmission. However, this may occur significant inter-modal arrival time, introducing data incosistency probelm. Existing consistency mitigation mechanisms are primarily implemented at the client-side application layer through post-arrival timestamp alignment. However, they operate reactively and lack coordination with transport-layer multipath scheduler, leading sub-optimal performance.
Furtheremore, existing multipath transport mechanisms primarily optimize for throughput or per-stream latency; they do not consider multimodal consistency requirements intrinsic to interactive LLM-based systems.</t>

<t>Based on the above challenges, this document specifies Consistency-Aware Multipath Transport (CAMP), a transport-layer design built on Multipath QUIC (MPQUIC). CAMP introduces structured modality separation, a consistency-aware scheduler, and a coordinated client-side alignment mechanism. The design does not modify the underlying MPQUIC protocol and is deployable over existing MPQUIC implementations.</t>

<t>The remainder of this document is organized as follows. Section 2 provides background and summarizes the key challenges. Section 3 defines the problem and presents the design principles. Section 4 specifies the CAMP architecture and mechanisms. Section 5 discusses security considerations, and Section 6 covers IANA considerations.</t>

</section>
<section anchor="background-and-challenges"><name>Background and Challenges</name>

<section anchor="characteristics-of-llm-generated-multimodal-data"><name>Characteristics of LLM-generated Multimodal Data</name>

<t>Interactive LLM-based systems generate heterogeneous yet semantically coupled data streams, typically including text, audio, and video. These modalities differ significantly in their traffic patterns, reliability requirements, delay sensitivity, and tolerance to loss.</t>

<t>Text data is discrete, low-bandwidth, and generally requires reliable and in-order delivery to preserve semantic correctness. Audio data is continuous and delay-sensitive, requiring bounded jitter and reliable delivery within strict playout deadlines. Video data is bandwidth-intensive and latency-sensitive but can tolerate controlled frame loss or quality adaptation in exchange for reduced delay.</t>

<t>Although these modalities exhibit distinct transport requirements, they are derived from a unified generative process and therefore require tight temporal alignment. For example, synthesized speech must correspond to generated text, and video frames representing facial animation must remain synchronized with spoken content. Consequently, multimodal transmission for interactive LLM systems requires both differentiated per-modality management and bounded inter-modal arrival skew.</t>

</section>
<section anchor="traditional-streaming-protocol"><name>Traditional Streaming Protocol</name>

<t>Traditional real-time streaming protocols, such as the Real-Time Messaging Protocol (RTMP), encapsulate audio and video data within logical channels over a single transport connection, typically based on TCP. These protocols were primarily designed for media broadcasting and content distribution rather than interactive, generative workloads.</t>

<t>Such designs exhibit two fundamental limitations in the context of interactive LLM-based systems. First, single-path transport cannot leverage multipath bandwidth aggregation, redundancy, or latency diversity. Second, multiple modalities are often multiplexed within a single transport stream, preventing differentiated congestion control, retransmission strategies, and scheduling policies. As a result, heterogeneous modality requirements cannot be independently satisfied.</t>

<t>These limitations make traditional streaming approaches unsuitable for interactive LLM-based systems that demand both real-time responsiveness and modality-aware management.</t>

</section>
<section anchor="multipath-transport-basics"><name>Multipath Transport Basics</name>

<t>Multipath transport protocols enable a single logical connection to utilize multiple network paths concurrently. Multipath QUIC (MPQUIC, as defined in <xref target="RFC9221"></xref>) extends QUIC (as defined in <xref target="RFC9000"></xref>) by allowing multiple paths under a single connection context, each with independent path characteristics. Multipath transport can provide bandwidth aggregation, path redundancy, and potentially reduced latency through dynamic path selection.</t>

<t>However, existing multipath scheduling algorithms primarily optimize metrics such as throughput maximization, congestion window utilization, or per-stream delivery latency. They do not explicitly account for cross-stream temporal relationships. When independent streams are distributed across heterogeneous paths with different delay and jitter characteristics, arrival-time divergence across streams may increase.</t>

<t>Therefore, while multipath transport improves network utilization and resilience, it does not inherently guarantee multimodal consistency. Moreover, existing multipath schedulers do not consider multimodal inconsistency problem.</t>

</section>
<section anchor="key-challenges"><name>Key Challenges</name>

<t>Based on the above background, four key challenges are concluded in transporting LLM-generated multimodal data:</t>

<t><list style="numbers" type="1">
  <t><strong>Inability of Single-Path Transmission to Exploit Multipath Advantages:</strong> Traditional single-path transport cannot leverage multipath bandwidth aggregation, redundancy, or latency diversity. This limitation constrains achievable performance in real-time interactive environments.</t>
  <t><strong>Lack of Differentiated Multimodal Management under Single-Stream Encapsulation:</strong> Encapsulating text, audio, and video within a single transport stream prevents modality-specific congestion control, reliability policies, and scheduling strategies. As interactive LLM systems impose heterogeneous requirements across modalities, single-stream designs cannot satisfy differentiated quality-of-service objectives.</t>
  <t><strong>Inter-Modal Arrival Inconsistency under Naive Stream Separation with Multipath:</strong> Separating modalities into independent streams enables differentiated management. However, when such streams are scheduled independently across heterogeneous paths, significant inter-modal arrival skew may occur. This timing divergence degrades perceptual synchronization and interactive quality.</t>
  <t><strong>Insufficiency of Pure Application-Layer Alignment without Transport-Layer Coordination:</strong> Existing multimodal consistency mechanisms are primarily implemented at the client-side application layer through post-arrival timestamp alignment. While such approaches can partially compensate for skew, they operate reactively and lack coordination with transport-layer multipath scheduling decisions. Consequently, latency and consistency cannot be jointly optimized. Moreover, existing transport-layer schedulers are not designed to be consistency-aware and do not consider cross-modal timing constraints.</t>
</list></t>

<t>These challenges motivate the need for a consistency-aware multipath transport design tailored to interactive multimodal LLM-based systems.</t>

</section>
</section>
<section anchor="problem-statement-and-design-principles"><name>Problem Statement and Design Principles</name>

<section anchor="problem-statement"><name>Problem Statement</name>

<t>In interactive LLM-based systems, multimodal outputs (i.e., text, audio, video) are generated continuously and transmitted over heterogeneous multipath networks. We aim to achieve low latency and cross-modal consistency under path heterogeneity.</t>

<section anchor="multimodal-data-model"><name>Multimodal Data Model</name>

<t>Let M = {T, A, V} denote the set of modalities.</t>

<t>For each modality m in M, let S_m = {s_m,1, s_m,2, ...} denote the ordered sequence of generated data units.</t>

<t>Each data unit s_m,k is associated with:</t>

<t><list style="symbols">
  <t>generation time g_m,k</t>
  <t>size sigma_m,k</t>
  <t>deadline delta_m</t>
  <t>reliability indicator r_m, where r_m is either 0 or 1</t>
</list></t>

<t>For a given semantic synchronization index k, the set {s_T,k, s_A,k, s_V,k} represents cross-modal correlated data units.</t>

</section>
<section anchor="multipath-network-model"><name>Multipath Network Model</name>

<t>Let P = {p_1, p_2, ..., p_N} denote the set of available paths.</t>

<t>Each path p_i is characterized by:</t>

<t><list style="symbols">
  <t>delay function D_i(t)</t>
  <t>available bandwidth b_i(t)</t>
  <t>loss probability l_i(t)</t>
</list></t>

<t>We assume heterogeneous paths, i.e., there exist i != j such that D_i(t) is not equal to D_j(t).</t>

</section>
<section anchor="scheduling-function"><name>Scheduling Function</name>

<t>Define a scheduling function pi(.) such that: pi(s_m,k) = p_i indicates that data unit s_m,k is transmitted over path p_i.</t>

<t>The arrival time of s_m,k is defined as: a_m,k = g_m,k + D_i(g_m,k).</t>

</section>
<section anchor="performance-metrics"><name>Performance Metrics</name>

<t>End-to-end latency L is defined as: L = average(a_m,k - g_m,k).</t>

<t>Inter-modal arrival skew for synchronization index k is defined as: Delta_k = max_m(a_m,k) - min_m(a_m,k).</t>

<t>Expected cross-modal skew C is defined as: C = average(Delta_k). A smaller C indicates better cross-modal consistency.</t>

</section>
<section anchor="overall-problem-definition"><name>Overall Problem Definition</name>

<t>Given:</t>

<t><list style="symbols">
  <t>modality set M</t>
  <t>multimodal data streams {S_m}</t>
  <t>heterogeneous path set P</t>
  <t>path dynamics {D_i(t), b_i(t), l_i(t)}</t>
</list></t>

<t>Find a scheduling function pi(.) such that:</t>

<t><list style="symbols">
  <t>L is minimized</t>
  <t>C is minimized</t>
  <t>Reliability constraint holds: If r_m = 1, the loss probability of s_m,k MUST be zero</t>
  <t>Deadline constraint holds: a_m,k - g_m,k &lt;= delta_m</t>
  <t>Bandwidth constraint holds for each path p_i: The total transmitted size assigned to p_i at time t MUST NOT exceed b_i(t)</t>
</list></t>

</section>
</section>
<section anchor="design-principles"><name>Design Principles</name>

<t>Based on the above problem statement, the consistency-aware multipath transport (CAMP) design for LLM-generated multimodal data is guided by the following principles:</t>

<t><list style="numbers" type="1">
  <t><strong>Modality Differentiation:</strong> Different modalities (text, audio, and video) exhibit heterogeneous requirements in reliability, latency sensitivity, and rate characteristics. The transport layer MUST support differentiated handling across modalities rather than enforcing a single homogeneous policy.</t>
  <t><strong>Consistency Awareness</strong>: In interactive multimodal systems, cross-modal arrival consistency is a first-order requirement. Scheduling decisions MUST consider inter-modal arrival skew in addition to per-flow latency. Minimizing latency alone is insufficient.</t>
  <t><strong>Coordination Between Transport and Application Layers</strong>: Cross-modal consistency is an end-to-end property that depends on both transport-layer scheduling and receiver-side application-level alignment mechanisms. Transport-layer multipath scheduling decisions influence arrival ordering and skew, while the receiver performs timestamp-based alignment and buffering. These mechanisms SHOULD be designed to cooperate, rather than operate independently.</t>
</list></t>

</section>
</section>
<section anchor="consistency-aware-multipath-transport-camp-design"><name>Consistency-Aware Multipath Transport (CAMP) Design</name>

<section anchor="overall-architecture"><name>Overall Architecture</name>

<t>CAMP adopts an end-to-end architecture that integrates multimodal generation, transport-layer consistency-aware scheduling, and receiver-side alignment. The high-level architecture is illustrated below.</t>

<figure><artwork><![CDATA[
                       +------------------------------------+
                       |              Server                |
                       |------------------------------------|
                       |          LLM Application           |
                       |  (Multimodal Generation Engine)    |
                       +----------------+-------------------+
                                        |
                                        v
                       +------------------------------------+
                       |   Server Side: Application Layer   |
                       |------------------------------------|          
                       |          - Text Output             |
                       |          - Audio Output            |
                       |          - Video Output            |
                       +----------------+-------------------+
                                        |
                                        v
                       +------------------------------------+
                       | Server Side: Transport Layer (CAMP)|
                       |------------------------------------|
                       |  - Three Logical Streams           |
                       |      * Text Stream                 |
                       |      * Audio Stream                |
                       |      * Video Stream                |
                       |  - Consistency-Aware Scheduler     |
                       |  - Multipath Manager               |
                       +----------------+-------------------+
                                        |
                        ======================================
                               Heterogeneous Paths
                        (p1, p2, ..., pN with diverse settings)
                        ======================================
                                        |
                                        v
                       +------------------------------------+
                       | Client Side: Transport Layer (CAMP)|
                       |------------------------------------|
                       |        - Stream Reassembly         |
                       |        - Path Reordering           |
                       +----------------+-------------------+
                                        |
                                        v
                       +------------------------------------+
                       |  Client Side: Application Layer    |
                       |------------------------------------|
                       |  - Timestamp-Based Alignment       |
                       |  - Cross-Modal Synchronization     |
                       +----------------+-------------------+
                                        |
                                        v
                       +------------------------------------+
                       |               Client               |
                       |   (Multimodal Rendering Engine)    |
                       +------------------------------------+                   
]]></artwork></figure>

<t>The above architecture consists of two primary components: Server Side and Client Side, with clear separation of responsibilities between the transport layer and the application layer at both ends. The end-to-end design ensures that the transport layer and application layer work in coordination to meet the low-latency and consistency requirements of multimodal interactive systems.</t>

<section anchor="server-side"><name>Server Side</name>

<t>At the server side, the system is responsible for generating multimodal data, including text, audio, and video, which are produced by the LLM-based application. These modalities are generated by the LLM Application (Multimodal Generation Engine), which processes user inputs and produces multimodal outputs in real-time.</t>

<t>Once the data is generated, the Application Layer handles the preparation of each modality for transmission. This layer separates the modalities (text, audio, video) into different logical streams, enabling modality-specific handling. For example, while text and audio may require reliable transmission, video might be able to tolerate some packet loss, and thus can be transmitted with a different reliability strategy.</t>

<t>The Transport Layer (CAMP) then encapsulates each modality into its own logical stream. The transport layer is responsible for consistency-aware scheduling, managing how data is sent over multiple paths. This layer uses a Consistency-Aware Scheduler to make scheduling decisions that minimize inter-modal arrival skew and optimize the use of available bandwidth. It takes into account the heterogeneity of the transport paths and the varying needs of different data types (modalities).</t>

</section>
<section anchor="multipath-transport-network"><name>Multipath Transport Network</name>

<t>The network is composed of multiple heterogeneous paths (denoted as p1, p2, ..., pN) that offer diverse characteristics such as delay, bandwidth, and packet loss. These paths are utilized by the CAMP Transport Layer to maximize the available bandwidth and optimize latency, while ensuring cross-modal consistency.</t>

<t>CAMP uses multipath transport to enable the aggregation of bandwidth and path redundancy, but the scheduling of data across these paths is done in a way that minimizes the inter-modal arrival skew. The transport layer takes the different path characteristics into account, ensuring that data from different modalities arrives at the receiver in a synchronized manner.</t>

</section>
<section anchor="client-side"><name>Client Side</name>

<t>On the client side, the data streams are received and reassembled by the Transport Layer (CAMP). This layer is responsible for reordering data packets that may have arrived out of order due to the diverse paths used for transmission. The Multipath Manager ensures that the transport layer maintains synchronization across all streams and guarantees consistency in the arrival times of the different modalities.</t>

<t>Once the data is reassembled, the Application Layer at the client side performs timestamp-based alignment and cross-modal synchronization. The timestamp-based alignment mechanism ensures that the data from all modalities (text, audio, video) is correctly synchronized before being presented to the user. This synchronization is essential for interactive multimodal applications like digital humans or virtual assistants, where inconsistencies in the timing of different modalities would disrupt the user experience.</t>

<t>The Client then renders the synchronized multimodal data, ensuring a seamless experience for the user. The interaction between the transport layer and application layer ensures that latency is minimized, and consistency between modalities is maintained throughout the system.</t>

</section>
</section>
<section anchor="three-stream-separation-format"><name>Three-Stream Separation Format</name>

<t>The Three-Stream Separation Format is designed to handle multimodal data (text, audio, and video) in a manner that ensures independent management and optimized transmission for each modality. In this format, each modality is encapsulated in its own logical stream within the CAMP protocol. By separating these modalities, we can apply different transmission policies tailored to the unique needs of each type of data, such as reliability, latency, and throughput.</t>

<t>Each stream is identified by a unique stream identifier (e.g., T for text, A for audio, V for video), allowing for differentiation and independent handling. The encapsulation of each modality also includes important metadata that is used to ensure the correct delivery and synchronization of the streams. This metadata can include generation timestamp, modality-specific parameters, synchronization index, etc.</t>

<t>By using separate streams and attaching the appropriate metadata, we enable more efficient and precise transmission of each modality. The CAMP protocol leverages multipath transport to distribute these streams across different network paths, optimizing the delivery of each modality based on its specific transmission needs.</t>

</section>
<section anchor="consistency-aware-scheduler"><name>Consistency-Aware Scheduler</name>

<t>The Consistency-Aware Scheduler is responsible for optimizing the transmission of multimodal data streams while ensuring that the inter-modal timing remains consistent. By leveraging multipath transport, the scheduler assigns each modality to the most appropriate network path based on its specific needs. It considers factors such as bandwidth, latency, and reliability, ensuring that each stream (text, audio, or video) is transmitted under the conditions that best suit its characteristics.</t>

<t>The scheduler dynamically adjusts to changing network conditions, such as congestion or fluctuating bandwidth, while also ensuring that the timing between different streams remains consistent. It operates by coordinating the scheduling of streams in a way that minimizes timing skew between modalities, thus improving the overall synchronization. This coordination with the transport layer enables a consistent delivery of multimodal data, ensuring that all streams are delivered in sync for interactive LLM-based systems.</t>

</section>
<section anchor="client-side-alignment-mechanism"><name>Client-Side Alignment Mechanism</name>

<t>The Client-Side Alignment Mechanism is responsible for ensuring that multimodal data streams received by the client are synchronized correctly before being rendered. Upon receiving the streams, the client uses timestamps and synchronization indices, which were embedded during the transmission process, to align the streams (text, audio, and video) based on their respective generation times. This ensures that the modalities are presented in a synchronized manner, with minimal temporal divergence.</t>

<t>The alignment process involves using the application layer to adjust the playback of each modality based on the synchronization index and timestamps. In the event of minor discrepancies caused by network conditions or transmission delays, the client employs techniques such as buffering to mitigate these differences and ensure smooth playback. This mechanism relies on continuous feedback from the transport layer to adjust the synchronization strategy dynamically, ensuring that the multimodal data remains consistent across all modalities throughout the interaction.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The CAMP protocol design includes several elements to ensure secure transmission of multimodal data across different network paths. However, as with any transport protocol, security considerations must be addressed to prevent potential security threats.</t>

<t><list style="numbers" type="1">
  <t><strong>Data Integrity and Confidentiality</strong><br />
Given that CAMP uses multipath transport to transmit multimodal data across multiple paths, ensuring data integrity and confidentiality is critical. We recommend leveraging the existing encryption mechanisms of MPQUIC, which supports encryption of data in transit using standard algorithms like advanced encryption standard (AES). This ensures that data is not compromised during transmission, preventing eavesdropping and unauthorized access.</t>
  <t><strong>Authentication and Authorization</strong><br />
As with any network protocol, ensuring that both sender and receiver are authenticated is vital. CAMP relies on MPQUIC&#39;s built-in authentication mechanisms, which leverage public key infrastructure (PKI) or certificate-based authentication to prevent unauthorized parties from participating in the communication session.</t>
  <t><strong>Replay and Man-in-the-Middle Attacks</strong><br />
CAMP utilizes time-stamped data and synchronization indices to coordinate multimodal streams. These timestamps should be protected from tampering to prevent replay attacks or man-in-the-middle (MITM) attacks. To mitigate this risk, CAMP ensures that all communication channels are protected by end-to-end encryption, and utilizes integrity protection schemes (e.g., HMAC) to verify the authenticity of the timestamps and synchronization indices.</t>
  <t><strong>DoS and DDoS Attacks</strong><br />
The CAMP protocol should also consider protection against denial-of-service (DoS) and distributed denial-of-service (DDoS) attacks, where malicious users could flood the system with excessive data, causing network congestion and delaying or disrupting data transmission. To mitigate such attacks, CAMP should implement rate limiting and congestion control mechanisms as defined in the MPQUIC specification.</t>
  <t><strong>Trust and Privacy Considerations</strong><br />
Since CAMP is designed to handle multimodal data streams, it is important to consider the privacy of the data being transmitted. Any sensitive data, such as personally identifiable information (PII), should be encrypted and anonymized when possible. Additionally, careful access controls should be implemented to ensure that only authorized entities can access the data.</t>
</list></t>

<t>These are just some of the key security considerations related to the CAMP protocol. Future versions of the protocol may introduce additional security measures as new threats emerge.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document does not define any new protocol numbers, port numbers, or other IANA-managed resources. However, future revisions of the CAMP protocol may define new types, identifiers, or registry entries, in which case the relevant considerations will be added.</t>

<t>If any new IANA registries or assignments are required in future versions of this document, the authors will request the necessary changes from IANA.</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">

&RFC2119;
&RFC8174;


    </references>

    <references title='Informative References' anchor="sec-informative-references">

&RFC9221;
&RFC9000;


    </references>

</references>



  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+Vd+28cx5H+ff+KPviHI5VdglIed+GdgdCUZBMRZUakbQSH
gzA707s75jzW0zOk1rn871dfVT9nZ0kqgJPgjoAtanemH/X8qrqqtVgsZn3Z
V/pMXbSNKU2vm3y3OH/IOq2uhqovt1m/Ubdd1pht2/Xq6OL86vpY9S09UajL
ptddlvflvX26bousUu/eXS2+yowu1M2ORqzNLFsuO31/pvKs3s6KNm+ymqYs
umzVL0zbrBe9uX9YL/D14vR0VmQ9ff3q9NXvFqe/Xpy+ms3KbXem+m4w/avT
09/TJ7TA7Ez9oJcqa+xCGt2Hlc4e1mfq9ub7H76e3T2c+QcWrzHnLM/6M1U2
q3Y2y9uibOjZwSwyk5flbFuezRTtMD9TO23oV0PDdXpl/N93dfjrLBv6Tdvh
lQX9p2hU+ubPJ+qGtsUfyF7/PGzog/Bp29Gc17pZ5xv6n3qXLdsu69tux9/q
OiurMwXS7DZ/2ObVSZaf5E06ycWJeldGU1xssmZdYRb7Mc/xJjM9fVU2mXrf
djWx57uG+NWZsk/myquq/ENuTnTeDCe6GPam+9Nouj+Vo5me2k1V/hRtZdZg
NRAd0O7D24tXL1/+3v767y//7TdnxHRiUPrM71+9eul+PT09pWdmi8VCZUvT
Qw5nsx9KEtd+o9W2a81Wd7RJ1a7UWjckqCynVdat8f9mPWT0C0msrow6Ipk1
x3PaaZBoiPGSxdjo7r7MtZkrM+QblRlVlOuyJ1puhpoEbq42Gb1Q1tsWjzf6
QdGCiD666VWnfxrKTtf0u1Fto6r2gaZnRWPZ3ZTrjaqD9uRBEU/UjAS6KPuy
beibA4sTHVP9blvmWVXtSE9oTXXZj0btsZqWWK8yZWhxlaaV9g9td6eg5XPQ
rdPLnVoRu8DcvlX607ZqaSSQNCvus6YnotE2Vit6tFD0cO2thB3MnKg397pR
DyQK0be9tyG1zklSS0NrhpnJinbb62Ju17QgyumsVrT/bGsGohRtXhUtzdq0
PX2cLWnhRckraPqSKFkoYgKtq+YNrtRGE51a8LwdjOL9Ewk1Leyb9kETAeYk
wkREIpXR2wyCQbsNz4HQrV06zSULMmo1dKAQvu3aYsjlQd0thMJZ15X3zKWY
g7PblnZYdNoYENFoRZuvKtISiFO/KUmW2nzgpZPA5uUKC4CVnRObopEWGRvl
KYIW2pTrRlgLRgXD/afvLi/U0dU1/jyGTpBZa6uT2duyM/2cp6G3V2VDc2b0
bqc9/R1liPgpK0QnIRxm2ApDhXK7xYgrVg6NodfIIGraDbGZpAkk6rYwETKv
28miyna0h8d2bcjCFEOFnbakWmDDJBdI7klK9H0pi85ysgcmkXcSh9tN2cmK
AumJ6FVJW1iYsiDh3G4r0iqMYRdHO103zC4vx0Q4Iki71bKhsqEdtB25FZn7
wdmkwDG/C5YPfLfUhmW3HTp117QPlS7W2gpIyaKjVmCaW6msCURw0uVptBAd
KQ4YFUWGjxbSa1oq8fJxq3IiBrYui6LSs9mlFX3MPfsy+pl9/TwLK4bSLTBj
U+mMM22HCBAvxy4CZjmvBvjpPcNLG4Mzy6yJzGBy6WMY1mj7mcHuadPMdGih
s5qwi2UzkKEga2BXovn1KSt6VJ7oE+KK/kTak9GKWpnqnmSlPfZGliSAWLIl
mmtwaDBsNbYDpv+uqco7lgVv12tdlJk1M9gjMYUW25e5H5AoCJ+9O+ig7G6s
DKqhKXTHPiiHA8qqBesDpIAmLuGJsGzrmvAgYIMhR91gWt6+rqGhEJ1hy+7A
6lBkT2ezN5+IruwrvGyTynRtRgL+DPEik6SLljZN8xL9O5hkEgPrCYKZs0Zk
Tk6lJAcMB2VA2QrWHELGKkTLfigLeidbrzu9ZpmYs5FoiowkX3jlfG/hUBDp
XkM2sH/SrZH4Q9tKGTcfuo6ZXZOTgEHg+WI/HOymDt4kcjMwDCQq3htH9oFl
wW2XiHQPo0pkhqlerMHCVL8JMWeRFzxRb4n0+lOGtYm88t5ZZK2YV0xwEQAi
fMl+FQ+VzYKsF8lPkLoHIAOCPSzn3iHWGWGNthKRg6h2bQW1XnUEEAnnGBMZ
aUt2ouLsXLEUrjc9CQgHEkTDjtwXm9WS37LuRx/QNXHRJYn5VtP/mt4vCqBl
EiOk3sgjAbaw2EmbE0cVPCmbV1bjab8y9xCALRJID4/mDSztZamrmnCQ047Y
/JJJKUU2x0ho25V11pXEFy9TMJKCvg54JSVeiVx3OxCOJADaL+K1kiGpt8Fp
JRvXO28wiHasotXO6kh+N+XERo56wi3PSSczttRmWC4I2ZUIOWgWhg1Nrgl8
CI7SddsRKbWj0RNQMRCHBy1/1mxe7MbJtsJs0jwOv1h5+w/ZZ9EyemQ+FG7l
+64xwepgMkU+ZA9Z1B73khLvwiMDKS9JmJ8H9D4j6p5PQCUL/ZZDWfWY/QD0
OxGoFyFXohK58QHWzsG3CPJNY8+IyWxMgoTQKIl87mMk9rtuuR7N09Tlasc0
Y5dV7SAJsmgPV8UoEfk0xSI7Vm2Gul5y7PMjQ0xMwZQdok92hwQuUjbQ7xS4
0vJ+hprBXVUUnBmGqiz0r7AG2BtDziW/W5OoYd/0nxlqSOPPWqDZHYlYYHcY
4NceXduYlBZf8wBk0w1LWR/IQiLe5HAS0Qi/iYQFjzIfsy7flL1m/gnU8XoS
3vwtGUCTD8aA25psG1jsFEBIJHx0L/yOvoVLVJfn789HT7KEJxS48NtNgGD6
M5t98QWehOZQME7syuFlWYMc2Cri1NFrMqYMMx/BDB6lpXHeTvcewbBzY+BC
77GBtu5hHrnnACqnfYyDipHHFpcSOwkeB5wpOyjnij5FdIFsk5lbv1qydsW2
ZQ7fmkHjiMi0TfpeJhZ3SmaS0Q15UEgxvLd4GcM87Wjfc+QRFh7yyNt7jt08
4dkxC0tiB7Tt4B8FZx3JBIktidM5QwY3fYDLPCDvYuF2oed2XtB0CUkh6v9Y
ghgWbtq1+OktArJAdUuDtQPQblZU0JoT9T07eze73+4C5pgmvdcxpAsLIYNI
xj5rnoIn5DJ+GsT4ZUW2FcsBhupPUKi1+BhBMHa3xJDzqt+wt+3H8qE/bcol
hQwFWybaUnBlKfvZKcGmEjdovVhUS4aBrCBUvYgTVmQ1csR3LB7wm7Qk7ZFb
DxgVwHrk6BMEaHYNFsuWjgwKmQtygaYXViNSgeipoJJWIzzcYppBmqzdYiya
5SWmbMrawhmMKPYWE+bkmsW2MnigWe5040KaE3Z9tAkNHZrHDjkGalMhhDcE
XsiXLY0/gntbB93A3Cg/hD052ZwCeOZOP5yw3YpTbzc+OLu2XmmWpOZCjBXC
OOe/orQhLPgHPHqLR6+Irdk6HlQdfbhlTx+HDgLaAy9YG6zmVO0a1gzOp2kQ
Zqf5vSB+RPZG7HxsApcOtdxeXDtz55etHnQCSsVLQVaJJxKzLinSK/JM3DBW
6APWEjpNWggekkhtGKNmTczLeSzlCLEqGgwG7wbUktmCSlEQplYI5NjDV6oi
DOhCLrHAMvmnfpxF2Idryua/9uJMIRWRkrCJjy0DMH1GhEmk2QswQ+5rKgqE
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
fJuqdfpYhP2HJRAYzf4Xgtz/OIZqAAA=

-->

</rfc>

