<?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.27 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-wish-whip-08" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.0 -->
  <front>
    <title abbrev="whip">WebRTC-HTTP ingestion protocol (WHIP)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whip-08"/>
    <author initials="S." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>Millicast</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <author initials="A." surname="Gouaillard" fullname="Alexandre Gouaillard">
      <organization>CoSMo Software</organization>
      <address>
        <email>alex.gouaillard@cosmosoftware.io</email>
      </address>
    </author>
    <date year="2023" month="March" day="30"/>
    <area>ART</area>
    <workgroup>wish</workgroup>
    <keyword>WebRTC</keyword>
    <abstract>
      <t>This document describes a simple HTTP-based protocol that will allow WebRTC-based ingestion of content into streaming services and/or CDNs.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The IETF RTCWEB working group standardized JSEP (<xref target="RFC8829"/>), a mechanism used to control the setup, management, and teardown of a multimedia session. It also describes how to negotiate media flows using the Offer/Answer Model with the Session Description Protocol (SDP) <xref target="RFC3264"/> as well as the formats for data sent over the wire (e.g., media types, codec parameters, and encryption). WebRTC intentionally does not specify a signaling transport protocol at application level.</t>
      <t>Unfortunately, the lack of a standardized signaling mechanism in WebRTC has been an obstacle to adoption as an ingestion protocol within the broadcast/streaming industry, where a streamlined production pipeline is taken for granted: plug in cables carrying raw media to hardware encoders, then push the encoded media to any streaming service or Content Delivery Network (CDN) ingest using an ingestion protocol.</t>
      <t>While WebRTC can be integrated with standard signaling protocols like SIP <xref target="RFC3261"/> or XMPP <xref target="RFC6120"/>, they are not designed to be used in broadcasting/streaming services, and there also is no sign of adoption in that industry. RTSP <xref target="RFC7826"/>, which is based on RTP, is not compatible with the SDP offer/answer model <xref target="RFC3264"/>.</t>
      <t>This document proposes a simple protocol for supporting WebRTC as media ingestion method which:</t>
      <ul spacing="normal">
        <li>Is easy to implement,</li>
        <li>Is as easy to use as popular IP-based broadcast protocols</li>
        <li>Is fully compliant with WebRTC and RTCWEB specs</li>
        <li>Allows for ingest both in traditional media platforms and in WebRTC end-to-end platforms with the lowest possible latency.</li>
        <li>Lowers the requirements on both hardware encoders and broadcasting services to support WebRTC.</li>
        <li>Is usable both in web browsers and in native encoders.</li>
      </ul>
    </section>
    <section anchor="terminology">
      <name>Terminology</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>
      <ul spacing="normal">
        <li>WHIP client: WebRTC media encoder or producer that acts as a client of the WHIP protocol by encoding and delivering the media to a remote Media Server.</li>
        <li>WHIP endpoint: Ingest server receiving the initial WHIP request.</li>
        <li>WHIP endpoint URL: URL of the WHIP endpoint that will create the WHIP resource.</li>
        <li>Media Server: WebRTC Media Server or consumer that establishes the media session with the WHIP client and receives the media produced by it.</li>
        <li>WHIP resource: Allocated resource by the WHIP endpoint for an ongoing ingest session that the WHIP client can send requests for altering the session (ICE operations or termination, for example).</li>
        <li>WHIP resource URL: URL allocated to a specific media session by the WHIP endpoint which can be used to perform operations such as terminating the session or ICE restarts.</li>
      </ul>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>The WebRTC-HTTP Ingest Protocol (WHIP) uses an HTTP POST request to perform a single-shot SDP offer/answer so an ICE/DTLS session can be established between the encoder/media producer (WHIP client) and the broadcasting ingestion endpoint (Media Server).</t>
      <t>Once the ICE/DTLS session is set up, the media will flow unidirectionally from the encoder/media producer (WHIP client) to the broadcasting ingestion endpoint (Media Server). In order to reduce complexity, no SDP renegotiation is supported, so no  "m=" sections can be added once the initial SDP offer/answer over HTTP is completed.</t>
      <figure>
        <name>WHIP session setup and teardown</name>
        <artwork><![CDATA[
                                                                               
 +-------------+    +---------------+ +--------------+ +---------------+
 | WHIP client |    | WHIP endpoint | | Media Server | | WHIP resource |
 +--+----------+    +---------+-----+ +------+-------+ +--------|------+
    |                         |              |                  |       
    |                         |              |                  |       
    |HTTP POST (SDP Offer)    |              |                  |       
    +------------------------>+              |                  |       
    |201 Created (SDP answer) |              |                  |       
    +<------------------------+              |                  |       
    |          ICE REQUEST                   |                  |       
    +--------------------------------------->+                  |       
    |          ICE RESPONSE                  |                  |       
    |<---------------------------------------+                  |       
    |          DTLS SETUP                    |                  |       
    |<======================================>|                  |       
    |          RTP/RTCP FLOW                 |                  |       
    +<-------------------------------------->+                  |       
    | HTTP DELETE                                               |       
    +---------------------------------------------------------->+       
    | 200 OK                                                    |       
    <-----------------------------------------------------------x       
                                                                               
]]></artwork>
      </figure>
    </section>
    <section anchor="protocol-operation">
      <name>Protocol Operation</name>
      <t>In order to set up an ingestion session, the WHIP client will generate an SDP offer according to the JSEP rules and perform an HTTP POST request to the configured WHIP endpoint URL.</t>
      <t>The HTTP POST request will have a content type of "application/sdp" and contain the SDP offer as the body. The WHIP endpoint will generate an SDP answer and return a "201 Created" response with a content type of "application/sdp", the SDP answer as the body, and a Location header field pointing to the newly created resource.</t>
      <t>The SDP offer <bcp14>SHOULD</bcp14> use the "sendonly" attribute and the SDP answer <bcp14>MUST</bcp14> use the "recvonly" attribute.</t>
      <figure>
        <name>HTTP POST doing SDP O/A example</name>
        <artwork><![CDATA[
POST /whip/endpoint HTTP/1.1
Host: whip.example.com
Content-Type: application/sdp
Content-Length: 1326

v=0
o=- 5228595038118931041 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE 0 1
a=extmap-allow-mixed
a=msid-semantic: WMS
m=audio 9 UDP/TLS/RTP/SAVPF 111
c=IN IP4 0.0.0.0
a=rtcp:9 IN IP4 0.0.0.0
a=ice-ufrag:EsAw
a=ice-pwd:bP+XJMM09aR8AiX1jdukzR6Y
a=ice-options:trickle
a=fingerprint:sha-256 DA:7B:57:DC:28:CE:04:4F:31:79:85:C4:31:67:EB:27:58:29:ED:77:2A:0D:24:AE:ED:AD:30:BC:BD:F1:9C:02
a=setup:actpass
a=mid:0
a=bundle-only
a=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid
a=sendonly
a=msid:- d46fb922-d52a-4e9c-aa87-444eadc1521b
a=rtcp-mux
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10;useinbandfec=1
m=video 9 UDP/TLS/RTP/SAVPF 96 97
c=IN IP4 0.0.0.0
a=rtcp:9 IN IP4 0.0.0.0
a=ice-ufrag:EsAw
a=ice-pwd:bP+XJMM09aR8AiX1jdukzR6Y
a=ice-options:trickle
a=fingerprint:sha-256 DA:7B:57:DC:28:CE:04:4F:31:79:85:C4:31:67:EB:27:58:29:ED:77:2A:0D:24:AE:ED:AD:30:BC:BD:F1:9C:02
a=setup:actpass
a=mid:1
a=bundle-only
a=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid
a=extmap:10 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id
a=extmap:11 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id
a=sendonly
a=msid:- d46fb922-d52a-4e9c-aa87-444eadc1521b
a=rtcp-mux
a=rtcp-rsize
a=rtpmap:96 VP8/90000
a=rtcp-fb:96 ccm fir
a=rtcp-fb:96 nack
a=rtcp-fb:96 nack pli
a=rtpmap:97 rtx/90000
a=fmtp:97 apt=96

HTTP/1.1 201 Created
ETag: "xyzzy"
Content-Type: application/sdp
Content-Length: 1400
Location: https://whip.example.com/resource/id

v=0
o=- 1657793490019 1 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE 0 1
a=extmap-allow-mixed
a=ice-lite
a=msid-semantic: WMS *
m=audio 9 UDP/TLS/RTP/SAVPF 111
c=IN IP4 0.0.0.0
a=rtcp:9 IN IP4 0.0.0.0
a=ice-ufrag:38sdf4fdsf54
a=ice-pwd:2e13dde17c1cb009202f627fab90cbec358d766d049c9697
a=fingerprint:sha-256 F7:EB:F3:3E:AC:D2:EA:A7:C1:EC:79:D9:B3:8A:35:DA:70:86:4F:46:D9:2D:CC:D0:BC:81:9F:67:EF:34:2E:BD
a=candidate:1 1 UDP 2130706431 198.51.100.1 39132 typ host
a=setup:passive
a=mid:0
a=bundle-only
a=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid
a=recvonly
a=rtcp-mux
a=rtcp-rsize
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10;useinbandfec=1
m=video 9 UDP/TLS/RTP/SAVPF 96 97
c=IN IP4 0.0.0.0
a=rtcp:9 IN IP4 0.0.0.0
a=ice-ufrag:38sdf4fdsf54
a=ice-pwd:2e13dde17c1cb009202f627fab90cbec358d766d049c9697
a=fingerprint:sha-256 F7:EB:F3:3E:AC:D2:EA:A7:C1:EC:79:D9:B3:8A:35:DA:70:86:4F:46:D9:2D:CC:D0:BC:81:9F:67:EF:34:2E:BD
a=candidate:1 1 UDP 2130706431 198.51.100.1 39132 typ host
a=setup:passive
a=mid:1
a=bundle-only
a=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid
a=extmap:10 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id
a=extmap:11 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id
a=recvonly
a=rtcp-mux
a=rtcp-rsize
a=rtpmap:96 VP8/90000
a=rtcp-fb:96 ccm fir
a=rtcp-fb:96 nack
a=rtcp-fb:96 nack pli
a=rtpmap:97 rtx/90000
a=fmtp:97 apt=96
]]></artwork>
      </figure>
      <t>Once a session is setup, ICE consent freshness <xref target="RFC7675"/> <bcp14>SHALL</bcp14> be used to detect non graceful disconnection and DTLS teardown for session termination by either side.</t>
      <t>To explicitly terminate a session, the WHIP client <bcp14>MUST</bcp14> perform an HTTP DELETE request to the resource URL returned in the Location header field of the initial HTTP POST. Upon receiving the HTTP DELETE request, the WHIP resource will be removed and the resources freed on the Media Server, terminating the ICE and DTLS sessions.</t>
      <t>A Media Server terminating a session <bcp14>MUST</bcp14> follow the procedures in <xref target="RFC7675"/> section 5.2 for immediate revocation of consent.</t>
      <t>The WHIP endpoints <bcp14>MUST</bcp14> return an "405 Method Not Allowed" response for any HTTP GET, HEAD or PUT requests on the endpoint URL in order to reserve its usage for future versions of this protocol specification.</t>
      <t>The WHIP endpoints <bcp14>MUST</bcp14> support OPTIONS requests for Cross-Origin Resource Sharing (CORS) as defined in <xref target="FETCH"/> and it <bcp14>SHOULD</bcp14> include an "Accept-Post" header with a mime type value of "application/sdp" on the "200 OK" response to any OPTIONS request received as per <xref target="W3C.REC-ldp-20150226"/>.</t>
      <t>The WHIP resources <bcp14>MUST</bcp14> return an "405 Method Not Allowed" response for any HTTP GET, HEAD, POST or PUT requests on the resource URL in order to reserve its usage for future versions of this protocol specification.</t>
      <section anchor="ice-and-nat-support">
        <name>ICE and NAT support</name>
        <t>The initial offer by the WHIP client <bcp14>MAY</bcp14> be sent after the full ICE gathering is complete with the full list of ICE candidates, or it <bcp14>MAY</bcp14> only contain local candidates (or even an empty list of candidates) as per <xref target="RFC8863"/>.</t>
        <t>In order to simplify the protocol, there is no support for exchanging gathered trickle candidates from Media Server ICE candidates once the SDP answer is sent. The WHIP Endpoint <bcp14>SHALL</bcp14> gather all the ICE candidates for the Media Server before responding to the client request and the SDP answer <bcp14>SHALL</bcp14> contain the full list of ICE candidates of the Media Server. The Media Server <bcp14>MAY</bcp14> use ICE lite, while the WHIP client <bcp14>MUST</bcp14> implement full ICE.</t>
        <t>The WHIP client <bcp14>MAY</bcp14> perform trickle ICE or ICE restarts as per <xref target="RFC8838"/> by sending an HTTP PATCH request to the WHIP resource URL with a body containing a SDP fragment with MIME type "application/trickle-ice-sdpfrag" as specified in <xref target="RFC8840"/>. When used for trickle ICE, the body of this PATCH message will contain the new ICE candidate; when used for ICE restarts, it will contain a new ICE ufrag/pwd pair.</t>
        <t>Trickle ICE and ICE restart support is <bcp14>RECOMMENDED</bcp14> for a WHIP resource.</t>
        <t>If the WHIP resource supports either Trickle ICE or ICE restarts, but not both, it <bcp14>MUST</bcp14> return a "405 Not Implemented" response for the HTTP PATCH requests that are not supported.</t>
        <t>If the  WHIP resource does not support the PATCH method for any purpose, it <bcp14>MUST</bcp14> return a "501 Not Implemented" response, as described in <xref target="RFC9110"/> section 6.6.2.</t>
        <t>As the HTTP PATCH request sent by a WHIP client may be received out-of-order by the WHIP resource, the WHIP resource <bcp14>MUST</bcp14> generate a
unique strong entity-tag identifying the ICE session as per <xref target="RFC9110"/> section 2.3. The initial value of the entity-tag identifying the initial ICE session <bcp14>MUST</bcp14> be returned in an ETag header field in the "201 Created" response to the initial POST request to the WHIP endpoint. It <bcp14>MUST</bcp14> also be returned in the "200 OK" of any PATCH request that triggers an ICE restart. Note that including the ETag in the original "201 Created" response is only <bcp14>REQUIRED</bcp14> if the WHIP resource supports ICE restarts and <bcp14>OPTIONAL</bcp14> otherwise.</t>
        <t>A WHIP client sending a PATCH request for performing trickle ICE <bcp14>MUST</bcp14> include an "If-Match" header field with the latest known entity-tag as per <xref target="RFC9110"/> section 3.1. When the PATCH request is received by the WHIP resource, it <bcp14>MUST</bcp14> compare the indicated entity-tag value with the current entity-tag of the resource as per <xref target="RFC9110"/> section 3.1 and return a "412 Precondition Failed" response if they do not match.</t>
        <t>WHIP clients <bcp14>SHOULD NOT</bcp14> use entity-tag validation when matching a specific ICE session is not required, such as for example when initiating a DELETE request to terminate a session.</t>
        <t>A WHIP resource receiving a PATCH request with new ICE candidates, but which does not perform an ICE restart, <bcp14>MUST</bcp14> return a "204 No Content" response without body. If the Media Server does not support a candidate transport or is not able to resolve the connection address, it <bcp14>MUST</bcp14> accept the HTTP request with the "204 No Content" response and silently discard the candidate.</t>
        <figure>
          <name>Trickle ICE request</name>
          <artwork><![CDATA[
PATCH /resource/id HTTP/1.1
Host: whip.example.com
If-Match: "xyzzy"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 548

a=ice-ufrag:EsAw
a=ice-pwd:P2uYro0UCOQ4zxjKXaWCBui1
m=audio 9 RTP/AVP 0
a=mid:0
a=candidate:1387637174 1 udp 2122260223 192.0.2.1 61764 typ host generation 0 ufrag EsAw network-id 1
a=candidate:3471623853 1 udp 2122194687 198.51.100.1 61765 typ host generation 0 ufrag EsAw network-id 2
a=candidate:473322822 1 tcp 1518280447 192.0.2.1 9 typ host tcptype active generation 0 ufrag EsAw network-id 1
a=candidate:2154773085 1 tcp 1518214911 198.51.100.2 9 typ host tcptype active generation 0 ufrag EsAw network-id 2
a=end-of-candidates

HTTP/1.1 204 No Content
]]></artwork>
        </figure>
        <t>A WHIP client sending a PATCH request for performing ICE restart <bcp14>MUST</bcp14> contain an "If-Match" header field with a field-value "*" as per <xref target="RFC9110"/> section 3.1.</t>
        <t>If the HTTP PATCH request results in an ICE restart, the WHIP resource <bcp14>SHALL</bcp14> return a "200 OK" with an "application/trickle-ice-sdpfrag" body containing the new ICE username fragment and password and OPTIONALLY a new set of ICE candidates for the WHIP client . Also, the "200 OK" response for a successful ICE restart <bcp14>MUST</bcp14> contain the new entity-tag corresponding to the new ICE session in an ETag response header field and <bcp14>MAY</bcp14> contain a new set of ICE candidates for the Media Server.</t>
        <t>If the ICE request cannot be satisfied by the WHIP resource, the resource <bcp14>MUST</bcp14> return an appropriate HTTP error code and <bcp14>MUST NOT</bcp14> terminate the session immediately. The WHIP client <bcp14>MAY</bcp14> retry performing a new ICE restart or terminate the session by issuing an HTTP DELETE request instead. In either case, the session <bcp14>MUST</bcp14> be terminated if the ICE consent expires as a consequence of the failed ICE restart as per <xref target="RFC7675"/> section 5.1.</t>
        <figure>
          <name>ICE restart request</name>
          <artwork><![CDATA[
PATCH /resource/id HTTP/1.1
Host: whip.example.com
If-Match: "*"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 54

a=ice-ufrag:ysXw
a=ice-pwd:vw5LmwG4y/e6dPP/zAP9Gp5k

HTTP/1.1 200 OK
ETag: "abccd"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 102

a=ice-lite
a=ice-ufrag:289b31b754eaa438
a=ice-pwd:0b66f472495ef0ccac7bda653ab6be49ea13114472a5d10a
]]></artwork>
        </figure>
        <t>Because the WHIP client needs to know the entity-tag associated with the ICE session in order to send new ICE candidates, it <bcp14>MUST</bcp14> buffer any gathered candidates before it receives the HTTP response to the initial POST request or the PATCH request with the new entity-tag value. Once it knows the entity-tag value, the WHIP client <bcp14>SHOULD</bcp14> send a single aggregated HTTP PATCH request with all the ICE candidates it has buffered so far.</t>
        <t>In case of unstable network conditions, the ICE restart HTTP PATCH requests and responses might be received out of order. In order to mitigate this scenario, when the client performs an ICE restart, it <bcp14>MUST</bcp14> discard any previous ice username and passwords fragments and ignore any further HTTP PATCH response received from a pending HTTP PATCH request. WHIP clients <bcp14>MUST</bcp14> apply only the ICE information received in the response to the last sent request. If there is a mismatch between the ICE information at the client and at the server (because of an out-of-order request), the STUN requests will contain invalid ICE information and will be rejected by the server. When this situation is detected by the WHIP Client, it <bcp14>SHOULD</bcp14> send a new ICE restart request to the server.</t>
      </section>
      <section anchor="webrtc-constraints">
        <name>WebRTC constraints</name>
        <t>In the specific case of media ingestion into a streaming service, some assumptions can be made about the server-side which simplifies the WebRTC compliance burden, as detailed in WebRTC-gateway document <xref target="I-D.draft-ietf-rtcweb-gateways"/>.</t>
        <t>In order to reduce the complexity of implementing WHIP in both clients and Media Servers, WHIP imposes the following restrictions regarding WebRTC usage:</t>
        <t>Both the WHIP client and the WHIP endpoint <bcp14>SHALL</bcp14> use SDP bundle <xref target="RFC9143"/>. Each "m=" section <bcp14>MUST</bcp14> be part of a single BUNDLE group. Hence, when a WHIP client sends an SDP offer, it <bcp14>MUST</bcp14> include a "bundle-only" attribute in each bundled "m=" section. The WHIP client and the Media Server <bcp14>MUST</bcp14> support multiplexed media associated with the BUNDLE group as per <xref target="RFC9143"/> section 9. In addition, per <xref target="RFC9143"/> the WHIP client and Media Server will use RTP/RTCP multiplexing for all bundled media. The WHIP client and Media Server <bcp14>SHOULD</bcp14> include the "rtcp-mux-only" attribute in each bundled "m=" sections as per <xref target="RFC8858"/>.</t>
        <t>This version of the specification only supports, at most, a single audio and video MediaStreamTrack in a single MediaStream as defined in [[!RFC8830]] and therefore, all "m=" sections <bcp14>MUST</bcp14> contain an "msid" attribute with the same value. However, it would be possible for future revisions of this spec to allow more than a single MediaStream or MediaStreamTrack of each media kind, so in order to ensure forward compatibility, if the number of audio and or video tracks or number streams is not supported by the WHIP Endpoint, it <bcp14>MUST</bcp14> reject the HTTP POST request with a "406 Not Acceptable" error response.</t>
        <t>Furthermore, the WHIP Endpoint <bcp14>SHOULD NOT</bcp14> reject individual "m=" sections as per <xref target="RFC8829"/> section 5.3.1 in case there is any error processing the "m=" section, but reject the HTTP POST request with a "406 Not Acceptable" error response to prevent having partially successful WHIP sessions.</t>
        <t>When a WHIP client sends an SDP offer, it <bcp14>SHOULD</bcp14> insert an SDP "setup" attribute with an "actpass" attribute value, as defined in <xref target="RFC8842"/>. However, if the WHIP client only implements the DTLS client role, it <bcp14>MAY</bcp14> use an SDP "setup" attribute with an "active" attribute value. If the WHIP endpoint does not support an SDP offer with an SDP "setup" attribute with an "active" attribute value, it <bcp14>SHOULD</bcp14> reject the request with a "422 Unprocessable Entity" response.</t>
        <t>NOTE: <xref target="RFC8842"/> defines that the offerer must insert an SDP "setup" attribute with an "actpass" attribute value. However, the WHIP client will always communicate with a Media Server that is expected to support the DTLS server role, in which case the client might choose to only implement support for the DTLS client role.</t>
        <t>Trickle ICE and ICE restarts support is <bcp14>OPTIONAL</bcp14> for both the WHIP clients and Media Servers as explained in section 4.1.</t>
      </section>
      <section anchor="load-balancing-and-redirections">
        <name>Load balancing and redirections</name>
        <t>WHIP endpoints and Media Servers might not be colocated on the same server, so it is possible to load balance incoming requests to different Media Servers. WHIP clients <bcp14>SHALL</bcp14> support HTTP redirection via the "307 Temporary Redirect" response as described in <xref target="RFC9110"/> section 6.4.7. The WHIP resource URL <bcp14>MUST</bcp14> be a final one, and redirections are not required to be supported for the PATCH and DELETE requests sent to it.</t>
        <t>In case of high load, the WHIP endpoints <bcp14>MAY</bcp14> return a "503 Service Unavailable" response indicating that the server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. The WHIP endpoint might send a Retry-After header field indicating the minimum time that the user agent ought to wait before making a follow-up request.</t>
      </section>
      <section anchor="stunturn-server-configuration">
        <name>STUN/TURN server configuration</name>
        <t>The WHIP endpoint <bcp14>MAY</bcp14> return STUN/TURN server configuration URLs and credentials usable by the client in the "201 Created" response to the HTTP POST request to the WHIP endpoint URL.</t>
        <t>Each STUN/TURN server will be returned using the "Link" header field <xref target="RFC8288"/> with a "rel"" attribute value of "ice-server". The Link target URI is the server URL as defined in <xref target="RFC7064"/> and <xref target="RFC7065"/>. The credentials are encoded in the Link target attributes as follows:</t>
        <ul spacing="normal">
          <li>username: If the Link header field represents a TURN server, and credential-type is "password", then this attribute specifies the username to use with that TURN server.</li>
          <li>credential: If the "credential-type" attribute is missing or has a "password" value, the credential attribute represents a long-term authentication password, as described in <xref target="RFC8489"/>, Section 10.2.</li>
          <li>credential-type: If the Link header field represents a TURN server, then this attribute specifies how the credential attribute value should be used when that TURN server requests authorization. The default value if the attribute is not present is "password".</li>
        </ul>
        <figure>
          <name>Example ICE server configuration</name>
          <artwork><![CDATA[
     Link: <stun:stun.example.net>; rel="ice-server"
     Link: <turn:turn.example.net?transport=udp>; rel="ice-server";
           username="user"; credential="myPassword"; credential-type="password"
     Link: <turn:turn.example.net?transport=tcp>; rel="ice-server";
           username="user"; credential="myPassword"; credential-type="password"
     Link: <turns:turn.example.net?transport=tcp>; rel="ice-server";
           username="user"; credential="myPassword"; credential-type="password"
]]></artwork>
        </figure>
        <t>NOTE: The naming of both the "rel" attribute value of "ice-server" and the target attributes follows the one used on the W3C WebRTC recommendation <xref target="W3C.REC-webrtc-20210126"/> RTCConfiguration dictionary in section 4.2.1. "rel" attribute value of "ice-server" is not prepended with the "urn:ietf:params:whip:" so it can be reused by other specifications which may use this mechanism to configure the usage of STUN/TURN servers.</t>
        <t>NOTE: Depending on the ICE Agent implementation, the WHIP client may need to call the setConfiguration method before calling the setLocalDescription method with the local SDP offer in order to avoid having to perform an ICE restart for applying the updated STUN/TURN server configuration on the next ICE gathering phase.</t>
        <t>There are some WebRTC implementations that do not support updating the STUN/TURN server configuration after the local offer has been created as specified in <xref target="RFC8829"/> section 4.1.18. In order to support these clients, the WHIP endpoint <bcp14>MAY</bcp14> also include the STUN/TURN server configuration on the responses to OPTIONS request sent to the WHIP endpoint URL before the POST request is sent. However, this method is not <bcp14>NOT RECOMMENDED</bcp14> and if supported by the underlying WHIP Client's webrtc implementation, the WHIP Client <bcp14>SHOULD</bcp14> wait for the information to be returned by the WHIP Endpoint on the response of the HTTP POST request instead.</t>
        <t>The generation of the TURN server credentials may require performing a request to an external provider, which can both add latency to the OPTIONS request processing and increase the processing required to handle that request. In order to prevent this, the WHIP Endpoint <bcp14>SHOULD NOT</bcp14> return the STUN/TURN server configuration if the OPTIONS request is a preflight request for CORS, that is, if The OPTIONS request does not contain an Access-Control-Request-Method with "POST" value and the the Access-Control-Request-Headers HTTP header does not contain the "Link" value.</t>
        <t>It might be also possible to configure the STUN/TURN server URLs with long term credentials provided by either the broadcasting service or an external TURN provider on the WHIP client, overriding the values provided by the WHIP endpoint.</t>
      </section>
      <section anchor="authentication-and-authorization">
        <name>Authentication and authorization</name>
        <t>WHIP endpoints and resources <bcp14>MAY</bcp14> require the HTTP request to be authenticated using an HTTP Authorization header field with a Bearer token as specified in <xref target="RFC6750"/> section 2.1. WHIP clients <bcp14>MUST</bcp14> implement this authentication and authorization mechanism and send the HTTP Authorization header field in all HTTP requests sent to either the WHIP endpoint or resource except the preflight OPTIONS requests for CORS.</t>
        <t>The nature, syntax, and semantics of the bearer token, as well as how to distribute it to the client, is outside the scope of this document. Some examples of the kind of tokens that could be used are, but are not limited to, JWT tokens as per <xref target="RFC6750"/> and <xref target="RFC8725"/> or a shared secret stored on a database. The tokens are typically made available to the end user alongside the WHIP endpoint URL and configured on the WHIP clients (similar to the way RTMP URLs and Stream Keys are distributed).</t>
        <t>WHIP endpoints and resources could perform the authentication and authorization by encoding an authentication token within the URLs for the WHIP endpoints or resources instead. In case the WHIP client is not configured to use a bearer token, the HTTP Authorization header field must not be sent in any request.</t>
      </section>
      <section anchor="simulcast-and-scalable-video-coding">
        <name>Simulcast and scalable video coding</name>
        <t>Simulcast as per <xref target="RFC8853"/> <bcp14>MAY</bcp14> be supported by both the Media Servers and WHIP clients through negotiation in the SDP offer/answer.</t>
        <t>If the client supports simulcast and wants to enable it for publishing, it <bcp14>MUST</bcp14> negotiate the support in the SDP offer according to the procedures in <xref target="RFC8853"/> section 5.3. A server accepting a simulcast offer <bcp14>MUST</bcp14> create an answer according to the procedures <xref target="RFC8853"/> section 5.3.2.</t>
        <t>It is possible for both Media Servers and WHIP clients to support Scalable Video Coding (SVC). However, as there is no universal negotiation mechanism in SDP for SVC, the encoder must consider the negotiated codec(s), intended usage, and SVC support in available decoders when configuring SVC.</t>
      </section>
      <section anchor="protocol-extensions">
        <name>Protocol extensions</name>
        <t>In order to support future extensions to be defined for the WHIP protocol, a common procedure for registering and announcing the new extensions is defined.</t>
        <t>Protocol extensions supported by the WHIP server <bcp14>MUST</bcp14> be advertised to the WHIP client in the "201 Created" response to the initial HTTP POST request sent to the WHIP endpoint. The WHIP endpoint <bcp14>MUST</bcp14> return one "Link" header field for each extension, with the extension "rel" type attribute and the URI for the HTTP resource that will be available for receiving requests related to that extension.</t>
        <t>Protocol extensions are optional for both WHIP clients and servers. WHIP clients <bcp14>MUST</bcp14> ignore any Link attribute with an unknown "rel" attribute value and WHIP servers <bcp14>MUST NOT</bcp14> require the usage of any of the extensions.</t>
        <t>Each protocol extension <bcp14>MUST</bcp14> register a unique "rel" attribute value at IANA starting with the prefix: "urn:ietf:params:whip:ext" as defined in <xref target="urn-whip-subspace"/>.</t>
        <t>For example, considering a potential extension of server-to-client communication using server-sent events as specified in https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events, the URL for connecting to the server side event resource for the published stream could be returned in the initial HTTP "201 Created" response with a "Link" header field and a "rel" attribute of "urn:ietf:params:whip:ext:example:server-sent-events". (This document does not specify such an extension, and uses it only as an example.)</t>
        <t>In this theoretical case, the "201 Created" response to the HTTP POST request would look like:</t>
        <artwork><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/sdp
Location: https://whip.example.com/resource/id
Link: <https://whip.ietf.org/publications/213786HF/sse>;
      rel="urn:ietf:params:whip:ext:example:server-side-events"
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>HTTPS <bcp14>SHALL</bcp14> be used in order to preserve the WebRTC security model.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This specification adds a new link relation type and a registry for URN sub-namespaces for WHIP protocol extensions.</t>
      <section anchor="link-relation-type-ice-server">
        <name>Link Relation Type: ice-server</name>
        <t>The link relation type below has been registered by IANA per Section 4.2 of <xref target="RFC8288"/>.</t>
        <t>Relation Name: ice-server</t>
        <t>Description: For the WHIP protocol, conveys the STUN and TURN servers that can be used by an ICE Agent to establish a connection with a peer.</t>
        <t>Reference: TBD</t>
      </section>
      <section anchor="registration-of-whip-urn-sub-namespace-and-whip-registry">
        <name>Registration of WHIP URN Sub-namespace and WHIP Registry</name>
        <t>IANA has added an entry to the "IETF URN Sub-namespace for Registered Protocol Parameter Identifiers" registry and created a sub-namespace for the Registered Parameter Identifier as per <xref target="RFC3553"/>: "urn:ietf:params:whip".</t>
        <t>To manage this sub-namespace, IANA has created the "WebRTC-HTTP ingestion protocol (WHIP) URIs" registry, which is used to manage entries within the "urn:ietf:params:whip" namespace. The registry description is as follows:</t>
        <ul spacing="normal">
          <li>Registry name: WHIP</li>
          <li>Specification: this document (RFC TBD)</li>
          <li>Repository: See Section <xref target="urn-whip-subspace"/></li>
          <li>Index value: See Section <xref target="urn-whip-subspace"/></li>
        </ul>
      </section>
      <section anchor="urn-whip-subspace">
        <name>URN Sub-namespace for WHIP</name>
        <t>WHIP Endpoint utilizes URIs to identify the supported WHIP protocol extensions on the "rel" attribute of the Link header as defined in <xref target="protocol-extensions"/>.</t>
        <t>This section creates and registers an IETF URN Sub-namespace for use in the WHIP specifications and future extensions.</t>
        <section anchor="specification-template">
          <name>Specification Template</name>
          <t>Namespace ID:</t>
          <ul spacing="normal">
            <li>The Namespace ID "whip" has been assigned.</li>
          </ul>
          <t>Registration Information:</t>
          <ul spacing="normal">
            <li>Version: 1</li>
            <li>Date: TBD</li>
          </ul>
          <t>Declared registrant of the namespace:</t>
          <ul spacing="normal">
            <li>Registering organization: The Internet Engineering Task Force.</li>
            <li>Designated contact: A designated expert will monitor the WHIP public mailing list, "wish@ietf.org".</li>
          </ul>
          <t>Declaration of Syntactic Structure:</t>
          <ul spacing="normal">
            <li>The Namespace Specific String (NSS) of all URNs that use the "whip" Namespace ID shall have the following structure: urn:ietf:params:whip:{type}:{name}:{other}.</li>
            <li>
              <t>The keywords have the following meaning:  </t>
              <ul spacing="normal">
                <li>type: The entity type. This specification only defines the "ext" type.</li>
                <li>name: A required US-ASCII string that conforms to the URN syntax requirements (see <xref target="RFC8141"/>) and defines a major namespace of a WHIP protocol extension. The value <bcp14>MAY</bcp14> also be an industry name or organization name.</li>
                <li>other: Any US-ASCII string that conforms to the URN syntax requirements (see <xref target="RFC8141"/>) and defines the sub-namespace (which <bcp14>MAY</bcp14> be further broken down in namespaces delimited by colons) as needed to uniquely identify an WHIP protocol extension.</li>
              </ul>
            </li>
          </ul>
          <t>Relevant Ancillary Documentation:</t>
          <ul spacing="normal">
            <li>None</li>
          </ul>
          <t>Identifier Uniqueness Considerations:</t>
          <ul spacing="normal">
            <li>The designated contact shall be responsible for reviewing and enforcing uniqueness.</li>
          </ul>
          <t>Identifier Persistence Considerations:</t>
          <ul spacing="normal">
            <li>Once a name has been allocated, it <bcp14>MUST NOT</bcp14> be reallocated for a different purpose.</li>
            <li>The rules provided for assignments of values within a sub-namespace <bcp14>MUST</bcp14> be constructed so that the meanings of values cannot change.</li>
            <li>This registration mechanism is not appropriate for naming values whose meanings may change over time.</li>
          </ul>
          <t>Process of Identifier Assignment:</t>
          <ul spacing="normal">
            <li>Namespace with type "ext" (e.g., "urn:ietf:params:whip:ext") is reserved for IETF-approved WHIP specifications.</li>
          </ul>
          <t>Process of Identifier Resolution:</t>
          <ul spacing="normal">
            <li>None specified.</li>
          </ul>
          <t>Rules for Lexical Equivalence:</t>
          <ul spacing="normal">
            <li>No special considerations; the rules for lexical equivalence specified in <xref target="RFC8141"/> apply.</li>
          </ul>
          <t>Conformance with URN Syntax:</t>
          <ul spacing="normal">
            <li>No special considerations.</li>
          </ul>
          <t>Validation Mechanism:</t>
          <ul spacing="normal">
            <li>None specified.</li>
          </ul>
          <t>Scope:</t>
          <ul spacing="normal">
            <li>Global.</li>
          </ul>
        </section>
      </section>
      <section anchor="registering-whip-protocol-extensions-uris">
        <name>Registering WHIP Protocol Extensions URIs</name>
        <t>This section defines the process for registering new WHIP protocol extensions URIs with IANA in the "WebRTC-HTTP ingestion protocol (WHIP) URIs" registry (see <xref target="urn-whip-subspace"/>).</t>
        <t>A WHIP Protocol Extension URI is used as a value in the "rel" attribute of the Link header as defined in <xref target="protocol-extensions"/> for the purpose of signaling the WHIP protocol extensions supported by the WHIP Endpoints.</t>
        <t>WHIP Protocol Extensions URIs have a "ext" type as defined in <xref target="urn-whip-subspace"/>.</t>
        <section anchor="registration-procedure">
          <name>Registration Procedure</name>
          <t>The IETF has created a mailing list, "wish@ietf.org", which can be used
   for public discussion of WHIP protocol extensions proposals prior to registration.
   Use of the mailing list is strongly encouraged.  The IESG has
   appointed a designated expert <xref target="RFC8126"/> who will monitor the
   wish@ietf.org mailing list and review registrations.</t>
          <t>Registration of new "ext" type URI (in the namespace
   "urn:ietf:params:whip:ext") belonging to a WHIP Protocol Extension <bcp14>MUST</bcp14> be reviewed by the
   designated expert and published in an RFC.  An RFC is <bcp14>REQUIRED</bcp14> for
   the registration of new value data types that modify existing
   properties. An RFC is also <bcp14>REQUIRED</bcp14> for registration of WHIP Protocol Extensions
   URIs that modify WHIP Protocol Extensions previously documented in an existing
   RFC.</t>
          <t>The registration procedure begins when a completed registration
   template, defined in the sections below, is sent to wish@ietf.org and
   iana@iana.org.  Within two weeks, the designated expert is expected
   to tell IANA and the submitter of the registration whether the
   registration is approved, approved with minor changes, or rejected
   with cause.  When a registration is rejected with cause, it can be
   resubmitted if the concerns listed in the cause are addressed.</t>
          <t>Decisions made by the designated expert can be appealed to the IESG
   Applications Area Director, then to the IESG. They follow the normal
   appeals procedure for IESG decisions.</t>
          <t>Once the registration procedure concludes successfully, IANA creates
   or modifies the corresponding record in the WHIP Protocol Extension registry.
   The completed registration template is discarded.</t>
          <t>An RFC specifying one or more new WHIP Protocol Extension URIs <bcp14>MUST</bcp14> include the
   completed registration templates, which <bcp14>MAY</bcp14> be expanded with
   additional information. These completed templates are intended to go
   in the body of the document, not in the IANA Considerations section.
   The RFC <bcp14>SHOULD</bcp14> include any attributes defined.</t>
        </section>
        <section anchor="whip-protocol-extension-registration-template">
          <name>WHIP Protocol Extension Registration Template</name>
          <t>A WHIP Protocol Extension URI is defined by completing the following template:</t>
          <ul spacing="normal">
            <li>URI: A unique URI for the WHIP Protocol Extension (e.g., "urn:ietf:params:whip:ext:example:server-sent-events").</li>
            <li>Reference: A formal reference to the publicly available specification</li>
            <li>Name: A descriptive name of the WHIP Protocol Extension extension (e.g., "Sender Side events").</li>
            <li>Description: A short phrase describing the function of the extension</li>
            <li>Contact information: Contact information for the organization or person making the registration</li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors wish to thank Lorenzo Miniero, Juliusz Chroboczek, Adam Roach, Nils Ohlmeier, Christer Holmberg, Cameron Elliott, Gustavo Garcia, Jonas Birme and everyone else in the WebRTC community that have provided comments, feedback, text and improvement proposals on the document and contributed early implementations of the spec.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org">
          <front>
            <title>Fetch - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC8829">
          <front>
            <title>JavaScript Session Establishment Protocol (JSEP)</title>
            <author fullname="J. Uberti" initials="J." surname="Uberti">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes the mechanisms for allowing a JavaScript application to control the signaling plane of a multimedia session via the interface specified in the W3C RTCPeerConnection API and discusses how this relates to existing signaling protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8829"/>
          <seriesInfo name="DOI" value="10.17487/RFC8829"/>
        </reference>
        <reference anchor="RFC3264">
          <front>
            <title>An Offer/Answer Model with Session Description Protocol (SDP)</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document defines a mechanism by which two entities can make use of the Session Description Protocol (SDP) to arrive at a common view of a multimedia session between them.  In the model, one participant offers the other a description of the desired session from their perspective, and the other participant answers with the desired session from their perspective.  This offer/answer model is most useful in unicast sessions where information from both participants is needed for the complete view of the session.  The offer/answer model is used by protocols like the Session Initiation Protocol (SIP).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3264"/>
          <seriesInfo name="DOI" value="10.17487/RFC3264"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <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="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="RFC7675">
          <front>
            <title>Session Traversal Utilities for NAT (STUN) Usage for Consent Freshness</title>
            <author fullname="M. Perumal" initials="M." surname="Perumal">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <author fullname="R. Ravindranath" initials="R." surname="Ravindranath">
              <organization/>
            </author>
            <author fullname="T. Reddy" initials="T." surname="Reddy">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <date month="October" year="2015"/>
            <abstract>
              <t>To prevent WebRTC applications, such as browsers, from launching attacks by sending traffic to unwilling victims, periodic consent to send needs to be obtained from remote endpoints.</t>
              <t>This document describes a consent mechanism using a new Session Traversal Utilities for NAT (STUN) usage.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7675"/>
          <seriesInfo name="DOI" value="10.17487/RFC7675"/>
        </reference>
        <reference anchor="W3C.REC-ldp-20150226" target="https://www.w3.org/TR/2015/REC-ldp-20150226/">
          <front>
            <title>Linked Data Platform 1.0</title>
            <author fullname="Ashok Malhotra" role="editor"/>
            <author fullname="John Arwe" role="editor"/>
            <author fullname="Steve Speicher" role="editor"/>
            <date day="26" month="February" year="2015"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-ldp-20150226"/>
          <seriesInfo name="W3C" value="REC-ldp-20150226"/>
        </reference>
        <reference anchor="RFC8863">
          <front>
            <title>Interactive Connectivity Establishment Patiently Awaiting Connectivity (ICE PAC)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="J. Uberti" initials="J." surname="Uberti">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>During the process of establishing peer-to-peer connectivity, Interactive Connectivity Establishment (ICE) agents can encounter situations where they have no candidate pairs to check, and, as a result, conclude that ICE processing has failed. However, because additional candidate pairs can be discovered during ICE processing, declaring failure at this point may be premature. This document discusses when these situations can occur. </t>
              <t>This document updates RFCs 8445 and 8838 by requiring that an ICE agent wait a minimum amount of time before declaring ICE failure, even if there are no candidate pairs left to check.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8863"/>
          <seriesInfo name="DOI" value="10.17487/RFC8863"/>
        </reference>
        <reference anchor="RFC8838">
          <front>
            <title>Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov">
              <organization/>
            </author>
            <author fullname="J. Uberti" initials="J." surname="Uberti">
              <organization/>
            </author>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes "Trickle ICE", an extension to the Interactive Connectivity Establishment (ICE) protocol that enables ICE agents to begin connectivity checks while they are still gathering candidates, by incrementally exchanging candidates over time instead of all at once. This method can considerably accelerate the process of establishing a communication session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8838"/>
          <seriesInfo name="DOI" value="10.17487/RFC8838"/>
        </reference>
        <reference anchor="RFC8840">
          <front>
            <title>A Session Initiation Protocol (SIP) Usage for Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (Trickle ICE)</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov">
              <organization/>
            </author>
            <author fullname="T. Stach" initials="T." surname="Stach">
              <organization/>
            </author>
            <author fullname="E. Marocco" initials="E." surname="Marocco">
              <organization/>
            </author>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>The Interactive Connectivity Establishment (ICE) protocol describes a Network Address Translator (NAT) traversal mechanism for UDP-based multimedia sessions established with the Offer/Answer model. The ICE extension for Incremental Provisioning of Candidates (Trickle ICE) defines a mechanism that allows ICE Agents to shorten session establishment delays by making the candidate gathering and connectivity checking phases of ICE non-blocking and by executing them in parallel. </t>
              <t>This document defines usage semantics for Trickle ICE with the Session Initiation Protocol (SIP).  The document also defines a new SIP Info Package to support this usage together with the corresponding media type.  Additionally, a new Session Description Protocol (SDP) "end-of-candidates" attribute and a new SIP option tag "trickle-ice" are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8840"/>
          <seriesInfo name="DOI" value="10.17487/RFC8840"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</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 describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9143">
          <front>
            <title>Negotiating Media Multiplexing Using the Session Description Protocol (SDP)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <date month="February" year="2022"/>
            <abstract>
              <t>This specification defines a new Session Description Protocol (SDP) Grouping Framework extension called 'BUNDLE'. The extension can be used with the SDP offer/answer mechanism to negotiate the usage of a single transport (5-tuple) for sending and receiving media described by multiple SDP media descriptions ("m=" sections). Such transport is referred to as a "BUNDLE transport", and the media is referred to as "bundled media". The "m=" sections that use the BUNDLE transport form a BUNDLE group. </t>
              <t>This specification defines a new RTP Control Protocol (RTCP) Source Description (SDES) item and a new RTP header extension.</t>
              <t>This specification updates RFCs 3264, 5888, and 7941. </t>
              <t>This specification obsoletes RFC 8843.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9143"/>
          <seriesInfo name="DOI" value="10.17487/RFC9143"/>
        </reference>
        <reference anchor="RFC8858">
          <front>
            <title>Indicating Exclusive Support of RTP and RTP Control Protocol (RTCP) Multiplexing Using the Session Description Protocol (SDP)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document defines a new Session Description Protocol (SDP) media-level attribute, 'rtcp-mux-only', that can be used by an endpoint to indicate exclusive support of RTP and RTP Control Protocol (RTCP) multiplexing. The document also updates RFC 5761 by clarifying that an offerer can use a mechanism to indicate that it is not able to send and receive RTCP on separate ports.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8858"/>
          <seriesInfo name="DOI" value="10.17487/RFC8858"/>
        </reference>
        <reference anchor="RFC8842">
          <front>
            <title>Session Description Protocol (SDP) Offer/Answer Considerations for Datagram Transport Layer Security (DTLS) and Transport Layer Security (TLS)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="R. Shpount" initials="R." surname="Shpount">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document defines the Session Description Protocol (SDP) offer/answer procedures for negotiating and establishing a Datagram Transport Layer Security (DTLS) association.  The document also defines the criteria for when a new DTLS association must be established.  The document updates RFCs 5763 and 7345 by replacing common SDP offer/answer procedures with a reference to this specification. </t>
              <t>This document defines a new SDP media-level attribute, "tls-id". </t>
              <t>This document also defines how the "tls-id" attribute can be used for negotiating and establishing a Transport Layer Security (TLS) connection, in conjunction with the procedures in RFCs 4145 and 8122.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8842"/>
          <seriesInfo name="DOI" value="10.17487/RFC8842"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC7064">
          <front>
            <title>URI Scheme for the Session Traversal Utilities for NAT (STUN) Protocol</title>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar">
              <organization/>
            </author>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin">
              <organization/>
            </author>
            <date month="November" year="2013"/>
            <abstract>
              <t>This document specifies the syntax and semantics of the Uniform Resource Identifier (URI) scheme for the Session Traversal Utilities for NAT (STUN) protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7064"/>
          <seriesInfo name="DOI" value="10.17487/RFC7064"/>
        </reference>
        <reference anchor="RFC7065">
          <front>
            <title>Traversal Using Relays around NAT (TURN) Uniform Resource Identifiers</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin">
              <organization/>
            </author>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar">
              <organization/>
            </author>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <date month="November" year="2013"/>
            <abstract>
              <t>This document specifies the syntax of Uniform Resource Identifier (URI) schemes for the Traversal Using Relays around NAT (TURN) protocol.  It defines two URI schemes to provision the TURN Resolution Mechanism (RFC 5928).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7065"/>
          <seriesInfo name="DOI" value="10.17487/RFC7065"/>
        </reference>
        <reference anchor="RFC8489">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin">
              <organization/>
            </author>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro">
              <organization/>
            </author>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <author fullname="R. Mahy" initials="R." surname="Mahy">
              <organization/>
            </author>
            <author fullname="P. Matthews" initials="P." surname="Matthews">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with NAT traversal.  It can be used by an endpoint to determine the IP address and port allocated to it by a NAT.  It can also be used to check connectivity between two endpoints and as a keep-alive protocol to maintain NAT bindings. STUN works with many existing NATs and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself.  Rather, it is a tool to be used in the context of a NAT traversal solution.</t>
              <t>This document obsoletes RFC 5389.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8489"/>
          <seriesInfo name="DOI" value="10.17487/RFC8489"/>
        </reference>
        <reference anchor="RFC6750">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="D. Hardt" initials="D." surname="Hardt">
              <organization/>
            </author>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer">
              <organization/>
            </author>
            <author fullname="D. Hardt" initials="D." surname="Hardt">
              <organization/>
            </author>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas.  This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="RFC8853">
          <front>
            <title>Using Simulcast in Session Description Protocol (SDP) and RTP Sessions</title>
            <author fullname="B. Burman" initials="B." surname="Burman">
              <organization/>
            </author>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund">
              <organization/>
            </author>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar">
              <organization/>
            </author>
            <author fullname="M. Zanaty" initials="M." surname="Zanaty">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>In some application scenarios, it may be desirable to send multiple differently encoded versions of the same media source in different RTP streams. This is called simulcast. This document describes how to accomplish simulcast in RTP and how to signal it in the Session Description Protocol (SDP).  The described solution uses an RTP/RTCP identification method to identify RTP streams belonging to the same media source and makes an extension to SDP to indicate that those RTP streams are different simulcast formats of that media source. The SDP extension consists of a new media-level SDP attribute that expresses capability to send and/or receive simulcast RTP streams.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8853"/>
          <seriesInfo name="DOI" value="10.17487/RFC8853"/>
        </reference>
        <reference anchor="RFC3553">
          <front>
            <title>An IETF URN Sub-namespace for Registered Protocol Parameters</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <author fullname="T. Hardie" initials="T." surname="Hardie">
              <organization/>
            </author>
            <author fullname="G. Klyne" initials="G." surname="Klyne">
              <organization/>
            </author>
            <date month="June" year="2003"/>
            <abstract>
              <t>This document describes a new sub-delegation for the 'ietf' URN namespace for registered protocol items.  The 'ietf' URN namespace is defined in RFC 2648 as a root for persistent URIs that refer to IETF- defined resources.  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="73"/>
          <seriesInfo name="RFC" value="3553"/>
          <seriesInfo name="DOI" value="10.17487/RFC3553"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo">
              <organization/>
            </author>
            <author fullname="A. Johnston" initials="A." surname="Johnston">
              <organization/>
            </author>
            <author fullname="J. Peterson" initials="J." surname="Peterson">
              <organization/>
            </author>
            <author fullname="R. Sparks" initials="R." surname="Sparks">
              <organization/>
            </author>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <author fullname="E. Schooler" initials="E." surname="Schooler">
              <organization/>
            </author>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants.  These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC6120">
          <front>
            <title>Extensible Messaging and Presence Protocol (XMPP): Core</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>The Extensible Messaging and Presence Protocol (XMPP) is an application profile of the Extensible Markup Language (XML) that enables the near-real-time exchange of structured yet extensible data between any two or more network entities.  This document defines XMPP's core protocol methods: setup and teardown of XML streams, channel encryption, authentication, error handling, and communication primitives for messaging, network availability ("presence"), and request-response interactions.  This document obsoletes RFC 3920.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6120"/>
          <seriesInfo name="DOI" value="10.17487/RFC6120"/>
        </reference>
        <reference anchor="RFC7826">
          <front>
            <title>Real-Time Streaming Protocol Version 2.0</title>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="A. Rao" initials="A." surname="Rao">
              <organization/>
            </author>
            <author fullname="R. Lanphier" initials="R." surname="Lanphier">
              <organization/>
            </author>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund">
              <organization/>
            </author>
            <author fullname="M. Stiemerling" initials="M." role="editor" surname="Stiemerling">
              <organization/>
            </author>
            <date month="December" year="2016"/>
            <abstract>
              <t>This memorandum defines the Real-Time Streaming Protocol (RTSP) version 2.0, which obsoletes RTSP version 1.0 defined in RFC 2326.</t>
              <t>RTSP is an application-layer protocol for the setup and control of the delivery of data with real-time properties.  RTSP provides an extensible framework to enable controlled, on-demand delivery of real-time data, such as audio and video.  Sources of data can include both live data feeds and stored clips.  This protocol is intended to control multiple data delivery sessions; provide a means for choosing delivery channels such as UDP, multicast UDP, and TCP; and provide a means for choosing delivery mechanisms based upon RTP (RFC 3550).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7826"/>
          <seriesInfo name="DOI" value="10.17487/RFC7826"/>
        </reference>
        <reference anchor="I-D.draft-ietf-rtcweb-gateways">
          <front>
            <title>WebRTC Gateways</title>
            <author fullname="Harald T. Alvestrand" initials="H. T." surname="Alvestrand">
              <organization>Google</organization>
            </author>
            <author fullname="Uwe Rauschenbach" initials="U." surname="Rauschenbach">
              <organization>Nokia Networks</organization>
            </author>
            <date day="21" month="January" year="2016"/>
            <abstract>
              <t>   This document describes interoperability considerations for a class
   of WebRTC-compatible endpoints called "WebRTC gateways", which
   interconnect between WebRTC endpoints and devices that are not WebRTC
   endpoints.


              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rtcweb-gateways-02"/>
        </reference>
        <reference anchor="W3C.REC-webrtc-20210126" target="https://www.w3.org/TR/2021/REC-webrtc-20210126/">
          <front>
            <title>WebRTC 1.0: Real-Time Communication Between Browsers</title>
            <author fullname="Cullen Jennings" role="editor"/>
            <author fullname="Henrik Boström" role="editor"/>
            <author fullname="Jan-Ivar Bruaroey" role="editor"/>
            <date day="26" month="January" year="2021"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-webrtc-20210126"/>
          <seriesInfo name="W3C" value="REC-webrtc-20210126"/>
        </reference>
        <reference anchor="RFC8141">
          <front>
            <title>Uniform Resource Names (URNs)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="April" year="2017"/>
            <abstract>
              <t>A Uniform Resource Name (URN) is a Uniform Resource Identifier (URI) that is assigned under the "urn" URI scheme and a particular URN namespace, with the intent that the URN will be a persistent, location-independent resource identifier.  With regard to URN syntax, this document defines the canonical syntax for URNs (in a way that is consistent with URI syntax), specifies methods for determining URN-equivalence, and discusses URI conformance.  With regard to URN namespaces, this document specifies a method for defining a URN namespace and associating it with a namespace identifier, and it describes procedures for registering namespace identifiers with the Internet Assigned Numbers Authority (IANA).  This document obsoletes both RFCs 2141 and 3406.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8141"/>
          <seriesInfo name="DOI" value="10.17487/RFC8141"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
eYB74tlKQpN4/h528g+/3Ub6JnJT/uSayNu7g9eru5eTzZ48jC8v9z5PL09e
rg8+evoTpUrX4sN5FMW/FajRcKyhUgVxC+D4+GS+P5ofHUxkGE72jx1gh/PD
w8XkaDw5OZCLYRSF0dE8Dg8P9sP54VxOTmQ42h+NwJyNw4N4NAxbut4loKPr
n8so1O1gLg9nUsa0tw7DiWa0CQosjxK7y7QZ0iZeoyJI0zYHVLts85r7+CDw
MylIRzGojF9i8tyl6909IiZVimWLW7xF8ZENGggqyyUcS5XN1dM77WqXCh5o
vXpbighvbgp5Q5jaYqrYymxPf8LstGuasIMbrHMQxYKzvSjrKJ91RjtYpHYJ
hAmAeGuyJ7Xb8j4cRTESS7FKbpZVMyuC8xAx/a0gK5jmhhUX5nkjmYVFkvc4
pnESskoDNgN3S37taVOyqJC3SV7D4iNpjadrM0tjStUmzpsMuQM/XtQFKUJv
nYo/zIIokR0CVGzZ2jgZCC8i5KACRHzDKQKN1CTjHf2JqTTadEaTK9NQZ6HM
HGzWOCOPVaGS4klvE1JzFrW5zNnqpp6orX1P5kqSKYni57PUvE9Vk+r1+7eW
BbxEaJJRoNuePIud2ug/Qddbo1uq5LjKIiA3JFVtNgJxUbpho09pFT2ngKbE
pmkjG4mlUvsF331nNr4DqiFyxJIfyQa9pkNyLSjNPdl0+kXY3pqPm5WQ48D6
rtbeRqVViI7BHAXCAtLH2riKolXhJVH6yUDH27FxS2ENtMhUXrNiq2q2UvdR
lu7Cjd3V++XLny/6ZwPnCJqiiu7kXL9Ztko/ancWh8h6hxau3hQeaKM64j9R
+6w1m5PH43heoD74vRVvfydHgIrRdCgCYBEsHeMH1Rs3kKslUxUvAMuS79ii
2coQKi8cmRfrDdybYrz/CRa5xHkIOHa3kBn3Zk2+1MLqXNWNRq1pA/EKnRml
l8JWXFN63fBWK5m8m+g6rTJubzWgUCJM/OvYg63tEup1+9Ujt0JNJ5kg0cz5
EdusrLu2ZpiEiDLYOSF1HcZsDnrtF7dRxoOO5B1pYratGBCR2ryPNTXrJ5i3
L9wbtlEw5zZ01cjzTUhu1cAOju0JDqpyrJ1Yr1zMmlync3uoR1c59oNYq00Z
EgSd+9FoATNSFtcFNgVRMKNedn7ZaBb4+99VcW74j3/Ysy/QnekR6vzVtGJm
bJR0kWGYoESrqDyVV/mdvFWce5fXaUwioY9ccGrpaFr9YjoihXoKqMlklVMC
N9yxMhiohQUYiKjD7PoxyXizp+v9yazEyQGOOzTy+lyOJKXNoyocyerVHPd4
LhzEw3yMezwW6SPthlavsdIudYbQVKs8A6MrzW7dCc2WkzTwN6NQHqI7GR5y
0wOlEdG16qrAUBt1DG5esKexIkK2pnSzyGpSzInDauqwSfMGB+PJSE4khXnu
RHl71l0AV4dBopag0pxe5I7M6d3facm037rA5gR0SSnLjDo3oT3IToLB3ddU
0vk0j1W5RieAWa30r7vUCdcSAErKcBu7+zvllDe7dVS9eYwmxIrKoqX9SCUY
O8kGj/q2dF9Bnqp6h6r4PwpI8ApbMJrEuG8C25lxd5eWHvTXTeni2OGJFieM
x+J9priKwopzCnpsUgmIClx9HniIVQhXRWSqt1HIUoC94FTFbyOqQ7gm1dSJ
Z+gNoWpZ1RmVnvSK/DY7qhGWmO9gf9Q5N8ZQWx+TwdTOzIkIKkDWtWOKk6Jl
nrNw+Mzj9dds46P7uwpKt63AVBZxrPkWh2qL60aHCH1ap6GWAq1QJoMRe86v
8xC0ZZiCW6qPGQHfUR8tUKqimO2ka0/BGFBpuCjXJ06oZi+yT6XqikSDQGsx
RgkwlloI0MgD7div1O0IOYSFxESYTXNnboRn7DhqhKmcgFkJWJCQVeP+8Ehc
S3Bmi7DYiCv1ilv8eVyzwWRw5Lg4XguNdkcxm4215jyTvRZqTY+FLgyqg3us
EVt46QpqH/VSf9xTRWdHVX4yYAk0IcT22uql1DlJ03qxTxjFOPt9Ft5CNMKa
39ZLuYzLxsWPNLEJjgu4wPZ1pkt04DrEqvVJa5a45qZFURnc40EORH3sO46W
ELKQ8xjS8XWhctVR6Ei28YSylBo1wNiAA0Ncxh16FKjFMg23bvtkBlVB5RXm
YvtT+qzR6OAsUuLOhGRVr0RFXZp61ZiHEBDSoJWocVRY0V2YVDoztQo/cn6X
A6Q+OObmLB2UNgy3967fX73V+NPbZUN7jqIPvEOr+z9GxmPxjICXMMALU3vw
1cbVWY/q6di5w3fbtl6KyFrw2SyB6vGwxyt2XyfZx0YBSBmS8TH2r2lDVMi0
2zID1CtLiVWaqMtUxyHVaZsA1gWd7mc5lc7D2eIR4NYJ1cJrHhygi4BDuqi0
R5DZZnRnRgNiyaV9OlKNznjTyatAW3v6zFt6IdfY/EoKVjgo7DUI2qeaICys
q5NgXXXuIHnxFk261a40bEvpM3WWnIoegKmdufAcITuTAbbbmN0LyVD7s9cJ
IryksoGFzE2O2kGcz71Vp3l208fyBJ24iu+qCE2Pt6sL7HhyfIKnAM6UZh5h
/dZbC8H9q7B/P2qXKhu+dXHMqOVSx2HUfqgyoj7inRQsnTWrjrNlDgR+DSHU
VsMpb9WjAHVrMPw+Z/gn4uCyA/HHsqqzAP9jKi2ZrP70A8CQPnNFyvsIxTfA
/7gf/dn0aDyr4/WWIX5wT0/QLPisiz91f3CQ9qy72lxqoH9o0u2ZXdA3wVRF
/2dgKv8rANUs+JyrLiMuzLSNB1Z/2JtHnss4DwpK1riZpIcfUsMms9VWiUof
ckiQKWlQLuKH/VOdL8S2rRU4zqq96suXP+vdC3dyXlRRfzwcj4Yj3MCAZ1ie
egYw5jQkehaepzvGMuTjFmDFCasCbrKt29ykhtXKoKtcWpUYLiStC6wtdf/5
qaZSOTPYbcpVNlSf5oBcPvGYz85QShvbmwHCpl0tTeh1JnXxIreFgim5JyYE
USfGNcMlhALrejSvLjtBQOajVDXwKu8G37Pnu1W4FSt1z0DWp5vaQz8j9/wu
LxkU3uZJrFMI7iFuXmmIM4tYctHz1uuYHL8HnKFctzJ8qhrbNtZgptQJGlgs
gn/Je9QnJ3toU3Gs6hPUoQWBoOF5AA67g4SRwYgwRyDrkz12Ncd7SSCM2UbH
funNiVpL7d+VW5x+8iP5oF0n2fo4JNqiIEzY3HCkI5CtnqFmHApiXFfSbAdx
wnmSBmIgJYWNozm5xrdoJ/lqkNSCOcQpKP0bHrqNOmO3KJx6xVry43XI5Ra8
Kr9ReVtqsYkqnWtuO9G6W4N9faetS33hUcPxPlFeVaDod5I43jluF/pUoflI
MSGIOdOi557kiNo8jGN9+q6mW5OmTjKRD8dFNlVpD+d3btxqAr7QrWw6jKqT
hkjnBxOlFO48gkGVO9SEnwqpMOEipcjP7VHDfXw9nf+h7N/1lgFMAs5JwU8p
t9k/5VPp+1f8av+No/O6SGnl9lpbCP/u+PYVOaElc4nySFtTO9GSSoFBpF/Z
+jwJtZtP8a1IC4MUJhK46HFTQ5DHaIpxYmfXL46z7bxlwWegGp6jaTTjGetu
jU6PIv4iMY35tCB/ypYe4cB56scEVPJ2neWteSpnXyNF0Sw9Ri4dyUE82hlM
pKo7rqbuVFu7Fp/LsCBGx9Pkt2vzw6MDfzvHaFt/gU0dctjxwLodB4J6lqXi
uofAVsc3u3iw2SSH7L5K50IA57nkJ9NdbUVt+9ZakDml77IQ6094FQkw96ee
gpmP/zD77OYOLnvu5Qnq6oY4KU34Y88d010EJbY7UC2e3JQoX0tT5dIF9YGY
oc1XPrqZGKtW9DPOrGx/5MVvIQKP5RSdu0uTVcIJ5J7464dr/alXy1GEtxmG
46PxAR+uH0KAGFJHjwQZBGta5QU7xiFdDYHHvHMcqAcuaM9wElHBhRsRdMZO
owJ5gBNVKOEGFW3rrA5S0+e1tQW2FE9KWCCeOa/GxraEq+s3lzbbpGqCf5Mb
hs5SJ8YTbu8VS0au2eK4lA/zu38mdvN9lj/nnggC02uYtbA43Fx6XZQmx+86
zOY2AYMvfTB/g2EfI35UDdGdqyolh8U8myykbGGyqlM63p/kBGhOZOZaKOOg
03FeapTAsbKvdzO7PpMJ6hqlgiz2aV8tC0xyCu8038aRe+pMXtudq4t7eoNU
6a3hLsw4pS85Vaw8rnVNRy/DemyN1l7QQnKs6yCtI/+aZxZuOxxBIcOtpoqp
Noi8TUTt3zHQ8uhch+fDzJHb1HF+98y5c8LxgOy2W/wwhZyHCGH9/Jlmgh+J
CU5ZEJ7Mfjx96jjTfN6g2eRdZ3hsfAkW2iWldzcL7e0FcGCgnlIifHQ9cSr2
VZFN55hKESbmG2melE97fONMTIYTolZW7DCWSzerp+AjvsiB0mFaouhUlB9P
2d6bIy/Ruci4V+HLd3oPe98+/drY8q7rbdzo4HzNVl6nfz2VYLfGh1Q65KtV
mKL0ZiFvQKtx/EgqKcvymgtmjJE7d6bEZJlhLdsWsr1NoXQageg0bPhblajj
XFra6Fu2ZbajkJ1R27b6idstj7mbbbl72sqGRQCzzJ7NA5hnKgvDG1taJ1Ni
zt7bmGx8DXuxwNy1d0wavdvN+Bwwhz7znm8P0NPvIAdaLT6aL0ytTLYKq+XW
qiM7bbbzlLLL7Yp2nfFWzO1pKCPxag6748B1Wk1CCOfR237NMnQVZt1aoSYg
8zDwuNqavAOWSlxM304F5V8Qr4aM6OYln4IdqTCYrtsqsMCbfFFeWc/LdRhJ
6sp6Yfc99oxuYQW8ziuVSbfgw1JVi2WV9/VdCqbCj2+wt677MGknwy3TreGJ
69PvltUqbV7BtsctbYDjPWekPo80wC++az/vaS+DGEfvRrSWQQk1OWEcABum
1qyujB86gexKGZezuTfak+f7z6jdJqN88GyT6pgC3UXQQFEpaC+8OxBPGtfT
Na8Z422umasSQnZNqaOdOiX4ri+dLH+quna5cgcihY5d6mxn+daSJXfBpXn+
kcrHga6IbD1l8f5zFb/xCEVVEfDeRRQTpxHJVVZ4bzzaPzo+fPViryzln3Qp
gEoEjyYLcJcmi1ogHhs9kxFY1WqDW/5IxELV0oGrnzWODEv8XA0fxEPmgROj
pR6MbsriazxITzQHv9bthLbHMoyx0YvMZIrqkRQ0uetkCIgtWT0VGxILSlfU
8z7WQUhtsA/v347jqT7sZMGhr/TQTESb2+f4c8v0c4kdjyYjq9UkG2daITrV
M1tNQIlxS9Uwu5n1LZV53Vmd/HggXmz3OkBt3GL4pPM1hBI34a9CUecyFjzD
InPS/ehS6xtMeO+W3hatFMJakpd+JamTBm+6uX5+Rni7YsybLCQBh5PPXApY
G6Xe34CsInao6ks3d4R00kBh0opduhGyPRKS8sqi2ZjkS32zobjgEywSWHrX
coYqhXPC3OcPo0zdcbcM58dI+wfope8waF0+546vnGSd5E3ZE2b5Giha9KMu
gkVfx1mac4WdPr9PzYsIxVKzE9Juh1YYwNiFM1iLnQJN0uhNAEXTN/RUV60i
fOo3M1eKAz+FIp4AApGHnpphIK5JKrrPdialkZitToD65gJChk/sdzzqI+DW
7exEjPnlu/ZHKgFh0sx1laTJZ0AoEoA6p9RhKW6Uqc+u36JqzIFsbSva7C1o
+kLbghfTo64jRWYlnSdhXub9UrtlqaYWLSeQ8KuOOFQrHCKV+Z1PYeqKQ9e5
03lrJrg4ox4WZCn3oegy19nLPEu+BpJ0jKNQLmwhhQb6kZvxAzHCv53h9njW
RGcySikVpjg3tLeimeXSCFdOMOZf/4tAXuC1d5msgOQ3gHt+7TosP6LypaPz
+3hvK96AyRFsVoVRFYipusiSTyv5tMY+VYo4IBpErnb0NhlvbFOjYiieGdYD
dIDi/Ys28Kg7eD1Gq842NBF8OKuKOkJybEGspge+RIH929nsKbn8AAlQX1kC
c2Y/E8EjTLkM9WUK+IrdqVOaeVsHrpJj8QXN4dfgC2Ib/kcVbORPwUCqO6fL
bUOvZIj73VmjoGBzw831Uu+VpAeomFq+AXmBtmsY1kSBBL1vhlOXQNuK0/tZ
fzo7vbjARZm2REwk0PZCZX/IgFKiWX+4UjlNKdUNosejyejrV77ASwMRAmn/
iVsMDFZpQ9EOjcDalkMnU2OdU7ZI31lKI2G20eVWemhXSNiGJUJk969cGys5
V4E8Ycuj8oR63+S8oEQqnQqbZMLxw/AOQk55zzfU7ZvxUYTYS6ByohRdYhe0
Vq2Ai13YI99J3qKwT7OILufeiDNlY7TWAPy8zTNQS44hf0+z0EG4vgdqpCpu
SbmSjbmp0yY2i4DX0en0jkRcU3anNrMMvNkvUYuVFe2Nb00P4KqjfInwVkXq
2/hskhNDfALH3tTHZzXYlmd1aNpAyyFfx2JKZvQ66V51a+pCV9WUy9D0lHR+
ifdK1tT+XqpMCbKHkmV3JHXKAp0OqQGhA6EcPe9kE9VpPc6hCgsWJ8SoBm6J
/fJmLqxu8/DqHuyEhOOSi810RIRF/tQsl2httR9nKug4QlIi6hLt3fmKp3yu
FXnZ6mxAMLN9Av1WewG+Od0JFZ4Zm9Y+x9rkAzI6EQ4neS0/UVx7DoIL+CB3
XH3DX4SpSYvwrD9wd4EZIVUjSDtCs+RoVQA30AAEp6xEqNGecEX+BGmRB+aH
j3+0p1690bTesdIZFt34dy/TfB6mAyfQYItMmDWe/7n1r9Ava/hErvJS7Qet
rCzGljt9NvL1aMHksms/+td46lrBbnFPnw7ouih9YE57cbopmSuJaGhUU+fv
61I6iSXSHJQ/s/e9N8PPhxPT2nkGLsD13Us6fYuTteKPzAmiN+qHopc6BU9G
knw79IHdgCu83wvrtW8xxaFMxSmiAwfqUmcZd+KFr/7m7ogkVxusLaiEl/e2
68cFilqd6AzIlCuXdQFxXTzQK5q9xBXhACCliGVaVtsX1QJNrY+gPVvOKQ7h
Ld8HgwMKtHIe6CW7IM0cAIqTQ0Jk3Cf6dCCtbvG7+1QrJlb4NGHa9rFLKOxJ
lAicYT0cvY0FOv7B5Eu5MQfQAtic0g98/Ko6uRHojKNUNhr21sfCh1V2WqRy
rVd5jC4L6FdqdcEBkPpYipHlwJmGHD13rtYkuwSFuIXCT2fCnVKlz8FI7XkA
ZukulIgGIykeKLaWNYfHWan3v5urU73XCWUqEOy5ksvpbLV3ibJmPd3HR9tg
PN4DQuFASZiFf8H/4EOg0geVxriD96X8qNLnbTo7e/MIHjz7EI9JRvWty0Wg
PsARrXizcIvIsEbdxNKhfKrzO6SeMvE98xMbCLzuvVCuCJ/YrY+4YPnCcxLw
ZA1cC2OxObI5EsO+3LMtwgyLBt0cwhThmdkF4BVl1aKbD/HA+pQ63JDMKwwB
waXawE0tIEpbt/Gob9bFO9tTW0lEtYPDTG2OuxRTUKrijLan5Wbrg32fAp2N
ew1Bhr5EqlSXVL1jTtWUlFusIWXAzYXHOzgUEYHtqaWzmTjdqFybSo7gODA8
CY7e4eIfUoZt5EXsJUW2aB5t0wdaarYLhJEGKuzyCTWaDkodqIoHN2JLBq6Q
1inZ7gvo4qFtyMUhHwCi1EZNRWxA6NB0qhMt1DEP4MM5TaxEvdJdohmQ+MvU
74HiNzmJLiPPnrwtjf7pkYOvXthSBDBHX2jEIo5alyNs3P0BtmBOjsAurHl2
yqarHnS5tBqjmJUwoH0hm8TQCGHHlVQ05hxUsdQtTu+a7KF4475y2tMBz+ok
6KeCyJcCI6hnpt+EvBcsn5lauBel8FBvVdbEZIBvpUpFLO5dhmwtaIa8UYiZ
qWJaeL36xhT3O4HaWS8LbKFSm7UMqusscludzTw80qkK0h2uDbY9NGTw0il8
/mSJkSjvwWwqGSxYTSOswoMivOF0CReFuMGsJAummgbA5X4NEpx9zsWbJIPw
Dtv76jSpy8/idFnk8zz6LD/2xDQOV+IqD6NlT7xNQAO+W6YrmWAPDrzG9fZX
eYpnVdzAI0A+eILiPE2TvAIxelmXVXibi5dhAUEXTAFiW4rnSaFOusJung1q
FJk6OV5zmhBWwDG3hm4E+d0mK8C7aLA8vZAynofRR7yS5hM7UMmKLB5l8a1n
qxLbJr+vb1lVvXxChoW7s11JunOmCqZW+32Bk3U6nf8N7lVvXTyPAAA=

-->

</rfc>
