<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.2 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-murillo-whep-03" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title abbrev="whep">WebRTC-HTTP Egress Protocol (WHEP)</title>
    <seriesInfo name="Internet-Draft" value="draft-murillo-whep-03"/>
    <author initials="S." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>Millicast</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <author initials="C." surname="Chen" fullname="Cheng Chen">
      <organization>ByteDance</organization>
      <address>
        <email>webrtc@bytedance.com</email>
      </address>
    </author>
    <date year="2023" month="November" day="10"/>
    <area>Security</area>
    <keyword>Internet-Draft WebRTC</keyword>
    <abstract>
      <?line 35?>

<t>This document describes a simple HTTP-based protocol that will allow WebRTC-based viewers to watch content from streaming services and/or Content Delivery Networks (CDNs) or WebRTC Transmission Network (WTNs).</t>
    </abstract>
  </front>
  <middle>
    <?line 39?>

<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. This flexibility has allowed the implementation of a wide range of services. However, those services are typically standalone silos which don't require interoperability with other services or leverage the existence of tools that can communicate with them.</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>There are many situations in which the lack of a standard protocol for consuming media from streaming service using WebRTC has become a problem:</t>
      <ul spacing="normal">
        <li>
          <t>Interoperability between WebRTC services and products.</t>
        </li>
        <li>
          <t>Reusing player software which can be integrated easily.</t>
        </li>
        <li>
          <t>Integration with Dynamic Adaptive Streaming over HTTP (DASH) for offering live streams via WebRTC while offering a time-shifted version via DASH.</t>
        </li>
        <li>
          <t>Playing WebRTC streams on devices that don't support custom javascript to be run (like TVs).</t>
        </li>
      </ul>
      <t>This document mimics what has been done  the WebRTC HTTP Ingest Protocol (WHIP) <xref target="I-D.draft-ietf-wish-whip"/> for ingestion and specifies a simple HTTP-based protocol that can be used for consuming media from a streaming service using WebRTC.</t>
    </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>
      <?line -18?>

<ul spacing="normal">
        <li>
          <t>WHEP Player: WebRTC media player that acts as a client of the WHEP protocol by receiving and decoding the media from a remote Media Server.</t>
        </li>
        <li>
          <t>WHEP Endpoint: Egress server receiving the initial WHEP request.</t>
        </li>
        <li>
          <t>WHEP Endpoint URL: URL of the WHEP endpoint that will create the WHEP resource.</t>
        </li>
        <li>
          <t>Media Server: WebRTC Media Server or consumer that establishes the media session with the WHEP player and delivers the media to it.</t>
        </li>
        <li>
          <t>WHEP Resource: Allocated resource by the WHEP endpoint for an ongoing egress session that the WHEP player can send requests for altering the session (ICE operations or termination, for example).</t>
        </li>
        <li>
          <t>WHEP Resource URL: URL allocated to a specific media session by the WHEP endpoint which can be used to perform operations such as terminating the session or ICE restarts.</t>
        </li>
      </ul>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>The WebRTC-HTTP Egress Protocol (WHEP) uses an HTTP POST request to perform a single-shot SDP offer/answer so an ICE/DTLS session can be established between the WHEP Player and the streaming service endpoint (Media Server).</t>
      <t>Once the ICE/DTLS session is set up, the media will flow unidirectionally from Media Server to the WHEP Player. 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>WHEP session setup and teardown</name>
        <artwork><![CDATA[
                                                                               
 +-------------+    +---------------+ +--------------+ +---------------+
 | WHEP Player |    | WHEP Endpoint | | Media Server | | WHEP 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 a streaming session, the WHEP Player will generate an SDP offer according to the JSEP rules and perform an HTTP POST request to the configured WHEP 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 WHEP 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 "recvonly" attribute and the SDP answer <bcp14>MUST</bcp14> use "sendonly" the attribute.</t>
      <figure>
        <name>HTTP POST and PATCH doing SDP O/A example</name>
        <artwork><![CDATA[
POST /whep/endpoint HTTP/1.1
Host: whep.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:zjkk
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=recvonly
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:zjkk
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=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

HTTP/1.1 201 Created
ETag: "xyzzy"
Content-Type: application/sdp
Content-Length: 1400
Location: https://whep.example.org/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:526be20a538ee422
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=sendonly
a=rtcp-mux
a=rtcp-rsize
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10;useinbandfec=1
a=msid:- d46fb922-d52a-4e9c-aa87-444eadc1521b
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:526be20a538ee422
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=sendonly
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
a=msid:- d46fb922-d52a-4e9c-aa87-444eadc1521b
]]></artwork>
      </figure>
      <t>The WHEP Resource COULD require a live publishing to be happening in order to allow a WHEP Players to start viewing a stream.
In that case, the WHEP Resource <bcp14>SHALL</bcp14> return a "409 Conflict" response to the POST request issued by the WHEP Client with a Retry-After header indicating the number of seconds before sending a new request.
WHEP Players <bcp14>MAY</bcp14> periodically try to connect to the WHEP Resource with exponential backoff period with an initial value of the Retry-After header value in the "409 Conflict" response.</t>
      <t>Once a session is set up, ICE consent freshness <xref target="RFC7675"/> <bcp14>SHALL</bcp14> be used to detect abrupt disconnection and DTLS teardown for session termination by either side.</t>
      <t>To explicitly terminate a session, the WHEP Player <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 WHEP 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 WHEP 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 WHEP 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 recevied as per <xref target="W3C.REC-ldp-20150226"/>.</t>
      <t>The WHEP Resources <bcp14>MUST</bcp14> return an"405 Method Not Allowed" 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 SDP provided by the WHEP Player <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 WHEP 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 WHEP player <bcp14>MUST</bcp14> implement full ICE.</t>
        <t>Trickle ICE and ICE restart support is <bcp14>OPTIONAL</bcp14> for a WHEP resource.</t>
        <t>If the WHEP resource supports either Trickle ICE or ICE restarts, the WHEP player <bcp14>MUST</bcp14> include an "Accept-Patch" header with a mime type value of "application/trickle-ice-sdpfrag" in the "201 Created" of the POST request that creates the WHEP resource as per <xref target="RFC5789"/> section 3.1.</t>
        <t>If the WHEP 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  WHEP 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 WHEP player may be received out-of-order by the WHEP resource, the WHEP 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 WHEP 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 WHEP resource supports ICE restarts and <bcp14>OPTIONAL</bcp14> otherwise.</t>
        <t>A WHEP player 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 WHEP 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>WHEP players <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 WHEP 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: whep.example.com
If-Match: "38sdf4fdsf54:EsAw"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 548

a=ice-ufrag:EsAw
a=ice-pwd:P2uYro0UCOQ4zxjKXaWCBui1
m=audio 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 WHEP Player 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 WHEP 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 WHEP resource, the resource <bcp14>MUST</bcp14> return an appropriate HTTP error code and <bcp14>MUST NOT</bcp14> terminate the session immediately. The WHEP player <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: whep.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: "289b31b754eaa438:ysXw"
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 WHEP Player 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 WHEP Player <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. n 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. WHEP Players <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 WHEP Player, 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 consumption from 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 WHEP in both players and Media Servers, WHEP imposes the following restrictions regarding WebRTC usage:</t>
        <t>Both the WHEP Player and the WHEP 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 WHEP Playersends an SDP offer, it <bcp14>MUST</bcp14> include a "bundle-only" attribute in each bundled "m=" section. The WHEP player 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 WHEP Player and Media Server will use RTP/RTCP multiplexing for all bundled media. The WHEP Player and Media Server <bcp14>SHOULD</bcp14> include the "rtcp-mux-only" attribute in each bundled "m=" section as per <xref target="RFC8858"/>.</t>
        <t>Trickle ICE and ICE restarts support is <bcp14>OPTIONAL</bcp14> for both the WHEP Players and Media Servers as explained in section 4.1.</t>
      </section>
      <section anchor="load-balancing-and-redirections">
        <name>Load balancing and redirections</name>
        <t>WHEP Endpoints and Media Servers might not be co-located on the same server, so it is possible to load balance incoming requests to different Media Servers. WHEP Players <bcp14>SHALL</bcp14> support HTTP redirection via the "307 Temporary Redirect" response as described in <xref target="RFC9110"/> section 6.4.7. The WHEP 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 WHEP 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 WHEP 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 WHEP 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 WHEP 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" as specified in <xref target="I-D.draft-ietf-wish-whip"/></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 WHEP Player, overriding the values provided by the WHEP Endpoint.</t>
      </section>
      <section anchor="authentication-and-authorization">
        <name>Authentication and authorization</name>
        <t>WHEP 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. WHEP players <bcp14>MUST</bcp14> implement this authentication and authorization mechanism and send the HTTP Authorization header field in all HTTP requests sent to either the WHEP 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.</t>
        <t>WHEP Endpoints and Resources could perform the authentication and authorization by encoding an authentication token within the URLs for the WHEP Endpoints or Resources instead. In case the WHEP Player is not configured to use a bearer token, the HTTP Authorization header field must not be sent in any request.</t>
      </section>
      <section anchor="protocol-extensions">
        <name>Protocol extensions</name>
        <t>In order to support future extensions to be defined for the WHEP protocol, a common procedure for registering and announcing the new extensions is defined.</t>
        <t>Protocol extensions supported by the WHEP server <bcp14>MUST</bcp14> be advertised to the WHEP Player in the "201 Created" response to the initial HTTP POST request sent to the WHEP Endpoint. The WHEP 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 WHEP Players and WHEP Endpoints and Resources. WHEP Players <bcp14>MUST</bcp14> ignore any Link attribute with an unknown "rel" attribute value and WHEP Endpoints and Resources <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:whep:ext" as specified in <xref target="urn-whep-subspace"/>.</t>
        <t>In the first version of the WHEP specification, two optional extensions are defined: the Server Sent Events and the Video Layer Selection.</t>
        <section anchor="server-sent-events-extension">
          <name>Server Sent Events extension</name>
          <t>This optional extesion provides support for server-to-client communication using WHATWG server sent events protocol as specified in https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events. When supported by the WHEP resource, a "Link" header field with a "rel" attribute of "urn:ietf:params:whep:ext:core:server-sent-events" <bcp14>MUST</bcp14> be returned in the initial HTTP "201 Created" response, with the Url of the Server Sent Events REST API entrypoint. The "Link" header field <bcp14>MAY</bcp14> also contain an "events" attribute with a coma separated list of supported event types.</t>
          <figure>
            <name>HTTP 201 response example containing the Server Sent Events extension</name>
            <artwork><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/sdp
Location: https://whep.example.org/resource/213786HF
Link: <https://whep.ietf.org/resource/213786HF/sse>;
      rel="urn:ietf:params:whep:ext:core:server-sent-events"
      events="active,inactive,layers,viewercount"
]]></artwork>
          </figure>
          <t>If the extension is also supported by the WHEP player, it <bcp14>MAY</bcp14> send a POST request to the Server Sent Events REST API entrypoint to create a server-to-client event stream using WHATWG server sent events protocol. The POST request <bcp14>MAY</bcp14> contain an "application/json" body with an JSON array indicating the subset of the event list announced by the WHEP Resource on the "events" atribute which COULD be sent by the server using the server-to-client communication channel. The WHEP Endpoint will return a "201 Created" response with a Location header field pointing to the newly created server-to-client event stream.</t>
          <figure>
            <name>HTTP POST request to create a server-to-client event stream</name>
            <artwork><![CDATA[
POST /resource/213786HF/sse HTTP/1.1
Host: whep.example.com
Content-Type: application/sjon

["active","inactive","layers","viewercount"]

HTTP/1.1 201 Created
Location: https://whep.example.org/resource/213786HF/sse/event-stream
]]></artwork>
          </figure>
          <t>Once the server-to-client communication channel has been created the WHEP player can perform a long pull using the Url returned on the location header as expecified in the WHATWG server sent events protocol.</t>
          <t>When an event is generated, the WHEP Resource <bcp14>MUST</bcp14> check for each event stream if the type is on the list provided by the WHEP player when the event stream was created, and if so enque it for delivering when an active long pull request is available.</t>
          <t>The events types supported by this specification are the following:</t>
          <ul spacing="normal">
            <li>
              <t>active: indicating that there is an active publication ongoing for this resource.</t>
            </li>
            <li>
              <t>inactive: indicating that there is no active publication ongoing for this resource.</t>
            </li>
            <li>
              <t>layers: provides information about the video layers being published for this resource.</t>
            </li>
            <li>
              <t>viewercount: provides the number of viewers currently connected to this resource.</t>
            </li>
          </ul>
          <t>The WHEP resource must indicate the event type in the "event" field and a JSON serialized string in the "data" field of the WHATWG server sent events message. In order to make the processing simpler on the WHEP Player, the WHEP resource <bcp14>MUST</bcp14> encode the event data in a single "data" line.</t>
          <figure>
            <name>Example event</name>
            <artwork><![CDATA[
event: viewercount
data: {"viewercount":3}
]]></artwork>
          </figure>
          <t>The WHEP Player <bcp14>MAY</bcp14> destroy the event stream at anytime by sending a HTTP DELETE request to the Url returned on the location header on the created request. The WHEP Resource <bcp14>MUST</bcp14> drop any pending queued event and return a "404 Not found" if any further long pull request is received for the event stream.</t>
          <t>All the event streams associated with a WHEP Resource <bcp14>MUST</bcp14> be destroyed when the WHEP Resource is terminated.</t>
          <section anchor="active-event">
            <name>active event</name>
            <t>The event is sent by the WHEP Resource when an active publication for the WHEP resource, either at the begining of the playback when the resource is created or later during the playback session.</t>
            <ul spacing="normal">
              <li>
                <t>event name: "active"</t>
              </li>
              <li>
                <t>event data: JSON object (TBD)</t>
              </li>
            </ul>
          </section>
          <section anchor="inactive-event">
            <name>inactive event</name>
            <t>The event is sent by the WHEP Resource when an active publication is no longer available. The WHEP Resource <bcp14>MUST</bcp14> not send an initial "inactive" event if there is no active publication when the resource is created.</t>
            <ul spacing="normal">
              <li>
                <t>event name: "active"</t>
              </li>
              <li>
                <t>event data: JSON object (TBD)</t>
              </li>
            </ul>
          </section>
          <section anchor="layers-event">
            <name>layers event</name>
            <t>The event is sent by the WHEP Resource to provide information to the WHEP player about the avialable video layers or renditions to be used in conjuction with the Layer Selection extension defined in Chapter {TBD}.</t>
            <ul spacing="normal">
              <li>
                <t>event name: "layers"</t>
              </li>
              <li>
                <t>event data: JSON object</t>
              </li>
            </ul>
            <t>The WHEP Resource <bcp14>MAY</bcp14> send the event periodically or just when the layer information has changed.</t>
            <t>The event data JSON object contains the video layer information available for each "m-line" indexed by the "m-line" order in the SDP.</t>
            <t>Each value of the JSON object entries will be a JSON object with the following attributes</t>
            <ul spacing="normal">
              <li>
                <t>active: (Array&lt;Object&gt;) Containing the information of the active simulcast layers.</t>
              </li>
              <li>
                <t>inactive: (Array&lt;Object&gt;) Containing the information of the inactive simulcast layers.</t>
              </li>
              <li>
                <t>layers: (Array&lt;Object&gt;) Containing the information of the active simulcast, spatials or temporal layers available for layer selection.</t>
              </li>
            </ul>
            <t>Each "active" JSON objet contains the following information:</t>
            <ul spacing="normal">
              <li>
                <t>id: (String) rid value of the simulcast encoding of the layer</t>
              </li>
              <li>
                <t>simulcastIdx: (Number) the simulcast order of the encoding layer.</t>
              </li>
              <li>
                <t>bitrate: (Number) the spatial layer id of the encoding layer.</t>
              </li>
              <li>
                <t>width: (Number) the current video with of the encoding layer.</t>
              </li>
              <li>
                <t>heigth: (Number) the current video height of the encoding layer.</t>
              </li>
            </ul>
            <t>Each "inactive" JSON contains the following information:</t>
            <ul spacing="normal">
              <li>
                <t>id: (String) rid value of the simulcast encoding of the layer.</t>
              </li>
              <li>
                <t>simulcastIdx: (Number) the simulcast order of the encoding layer.</t>
              </li>
              <li>
                <t>width: (Number) the current video with of the encoding layer</t>
              </li>
              <li>
                <t>heigth: (Number) the current video height of the encoding layer.</t>
              </li>
            </ul>
            <t>Each "layer" JSON contains the following information:</t>
            <ul spacing="normal">
              <li>
                <t>encodingId: (String) rid value of the simulcast encoding of the layer</t>
              </li>
              <li>
                <t>simulcastIdx: (Number) the simulcast order of the encoding layer.</t>
              </li>
              <li>
                <t>spatialLayerId: (Number) the spatial layer id of the encoding layer.</t>
              </li>
              <li>
                <t>temporalLayerId: (Number) the temporal layer id of the encoding layer.</t>
              </li>
              <li>
                <t>bitrate: (Number) the spatial layer id of the encoding layer.</t>
              </li>
              <li>
                <t>width: (Number) the current video with of the encoding layer.</t>
              </li>
              <li>
                <t>heigth: (Number) the current video height of the encoding layer.</t>
              </li>
            </ul>
            <t>The "layer" object <bcp14>MUST</bcp14> containt at least one of the encodingId, spatialLayerId or temporalLayerId attributes, the other attributes are <bcp14>OPTIONAL</bcp14>.</t>
            <figure>
              <name>Example event</name>
              <artwork><![CDATA[
{
  "0": {
    "active": [
      {
        "id": "1", "simulcastIdx": 1, "bitrate": 538288, width: 640, height: 360
      },
      {
        "id": "0", "simulcastIdx": 0, "bitrate": 111600, width: 320, height: 180
      }
    ],
    "inactive": [
      {
        "id": "2", "simulcastIdx": 2
      },
    ],
    "layers": [
      { "encodingId": "1", "simulcastIdx": 1, "spatialLayerId": 0, "temporalLayerId": 1, "bitrate": 557112, width: 640, height: 360 },
      { "encodingId": "1", "simulcastIdx": 1, "spatialLayerId": 0, "temporalLayerId": 0, "bitrate": 343592, width: 640, height: 360 },
      { "encodingId": "0", "simulcastIdx": 0, "spatialLayerId": 0, "temporalLayerId": 1, "bitrate": 116352, width: 320, height: 180 },
      { "encodingId": "0", "simulcastIdx": 0, "spatialLayerId": 0, "temporalLayerId": 0, "bitrate": 67464 , width: 320, height: 180 }
    ]
  }
}
]]></artwork>
            </figure>
          </section>
          <section anchor="viewercount-event">
            <name>viewercount event</name>
            <t>The event is sent by the WHEP Resource to provide the WHIP Player the information of number of viewers currently connected to this resource.</t>
            <ul spacing="normal">
              <li>
                <t>event name: "viewercount"</t>
              </li>
              <li>
                <t>event data: JSON object containing a "viewercount" attribute with a Number value indicating the number of viewers currently watching the WHIP resource.</t>
              </li>
            </ul>
            <t>The viewer count provided by the WHEP Resource <bcp14>MAY</bcp14> be approximate and not updated in real time but periodically to avoid  overloading both the event stream and the Media Server.</t>
          </section>
        </section>
        <section anchor="video-layer-selection-extension">
          <name>Video Layer Selection extension</name>
          <t>The Layer Selection extensions allows the WHEP Player to control which video layer or rendition is being delivered through the negotiated video MediaStreamTrack. When supported by the WHEP resource, a "Link" header field with a "rel" attribute of "urn:ietf:params:whep:ext:core:layer" <bcp14>MUST</bcp14> be returned in the initial HTTP "201 Created" response, with the Url of the Video Layer Selection REST API entrypoint. If this extension is supported by the WHEP Resource, the Server Sent Events extension <bcp14>MUST</bcp14> be supported as well and the "layers" event <bcp14>MUST</bcp14> be advertised as well.</t>
          <figure>
            <name>HTTP 201 response example containing the Video Layer Selection extension</name>
            <artwork><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/sdp
Location: https://whep.example.org/resource/213786HF
Link: <https://whep.ietf.org/resource/213786HF/layer>;
      rel="urn:ietf:params:whep:ext:core:layer"
Link: <https://whep.ietf.org/resource/213786HF/layer>;
      rel="urn:ietf:params:whep:ext:core:server-sent-events"
      events="layers"
]]></artwork>
          </figure>
          <t>In case that Simulcast or Scalable Video Codecs are supported by the Media Server and used in the active publication to the WHEP Resource, by default, the Media Server will choose one of the available video layers to be sent to the WHEP Player (based on bandwidth estimation or any other business logic). However, the WHEP Player (or the person watching the stream) may decide that it whishes to receive a different one (to preserve bandwidth or to best fit in the UI). In this case the WHEP Player <bcp14>MAY</bcp14> send a HTTP POST request to theVideo Layer Selection  API entrypoint containing an "application/json" body with an JSON object indicating the information of the video layer that wishes to be received. The WHEP Endpoint will return a "200 OK" if the switch to the new video layer can be performed or an appropiate HTTP error response if not.</t>
          <t>The information that can sent on the JSON object in the POST request for doing layer selection is as follows:</t>
          <ul spacing="normal">
            <li>
              <t>mediaId: (String) m-line index to apply the layer selection(default: first video m-line)</t>
            </li>
            <li>
              <t>encodingId: (String)  rid value of the simulcast encoding of the track (default: automatic selection)</t>
            </li>
            <li>
              <t>spatialLayerId: (Number) The spatial layer id to send to the outgoing stream (default: max layer available)</t>
            </li>
            <li>
              <t>temporalLayerId: (Number) The temporaral layer id to send to the outgoing stream (default: max layer available)</t>
            </li>
            <li>
              <t>maxSpatialLayerId: (Number) Max spatial layer id (default: unlimited)</t>
            </li>
            <li>
              <t>maxTemporalLayerId: (Number) Max temporal layer id (default: unlimited)</t>
            </li>
          </ul>
          <t>The information about the avialable encodings, spatial or temporal layers should be retrieverd from a "layers" event sent by the WHEP Resource using the Server Sent Events extension:</t>
          <artwork><![CDATA[
POST /resource/213786HF/layer HTTP/1.1
Host: whep.example.com
Content-Type: application/sjon

{mediaId:"0", "encodingId": "hd"}

HTTP/1.1 200 OK
]]></artwork>
          <t>If the WHEP Player wishes to return to the default selection performed by the Media Server, it just need to send an empty JSON Object instead:</t>
          <artwork><![CDATA[
POST /resource/213786HF/layer HTTP/1.1
Host: whep.example.com
Content-Type: application/sjon

{}

HTTP/1.1 200 OK
]]></artwork>
        </section>
      </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 registry for URN sub-namespaces for WHEP protocol extensions.</t>
      <section anchor="registration-of-whep-urn-sub-namespace-and-whep-registry">
        <name>Registration of WHEP URN Sub-namespace and whep 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:whep".</t>
        <t>To manage this sub-namespace, IANA has created the "System for Cross-domain Identity Management (WHEP) Schema URIs" registry, which is used to manage entries within the "urn:ietf:params:whep" namespace.  The registry description is as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Registry name: WHEP</t>
          </li>
          <li>
            <t>Specification: this document (RFC TBD)</t>
          </li>
          <li>
            <t>Repository: See Section <xref target="urn-whep-subspace"/></t>
          </li>
          <li>
            <t>Index value: See Section <xref target="urn-whep-subspace"/></t>
          </li>
        </ul>
      </section>
      <section anchor="urn-whep-subspace">
        <name>URN Sub-namespace for whep</name>
        <t>whep Endpoint utilize URIs to identify the supported whep protocol extensions on the "rel" attribute of the Link header as defined in <xref target="protocol-extensions"/>.
This section creates and registers an IETF URN Sub-namespace for use in the whep specifications and future extensions.</t>
        <section anchor="specification-template">
          <name>Specification Template</name>
          <t>Namespace ID:</t>
          <artwork><![CDATA[
  The Namespace ID "whep" has been assigned.
]]></artwork>
          <t>Registration Information:</t>
          <artwork><![CDATA[
  Version: 1

  Date: TBD
]]></artwork>
          <t>Declared registrant of the namespace:</t>
          <artwork><![CDATA[
  The Internet Engineering Task Force.
]]></artwork>
          <t>Designated contact:</t>
          <artwork><![CDATA[
   A designated expert will monitor the whep public mailing list, "wish@ietf.org".
]]></artwork>
          <t>Declaration of Syntactic Structure:</t>
          <artwork><![CDATA[
  The Namespace Specific String (NSS) of all URNs that use the "whep" Namespace ID shall have the following structure: urn:ietf:params:whep:{type}:{name}:{other}

  The keywords have the following meaning:

  - type: The entity type. This specification only defines the "ext" type.

  - name: A required US-ASCII string that conforms to the URN syntax requirements (see {{RFC8141}}) and defines a major namespace of a whep protocol extension. The value MAY also be an industry name or organization name.

  - other: Any US-ASCII string that conforms to the URN syntax requirements (see {{RFC8141}}) and defines the sub-namespace (which MAY be further broken down in namespaces delimited by colons) as needed to uniquely identify an whep protocol extension.
]]></artwork>
          <t>Relevant Ancillary Documentation:</t>
          <artwork><![CDATA[
  None
]]></artwork>
          <t>Identifier Uniqueness Considerations:</t>
          <artwork><![CDATA[
  The designated contact shall be responsible for reviewing and enforcing uniqueness.
]]></artwork>
          <t>Identifier Persistence Considerations:</t>
          <artwork><![CDATA[
  Once a name has been allocated, it MUST NOT be reallocated for a different purpose.
  The rules provided for assignments of values within a sub-namespace MUST be constructed so that the meanings of values cannot change.
  This registration mechanism is not appropriate for naming values whose meanings may change over time.
]]></artwork>
          <t>Process of Identifier Assignment:</t>
          <artwork><![CDATA[
  Namespace with type "ext" (e.g., "urn:ietf:params:whep:ext") is reserved for IETF-approved whep specifications.
]]></artwork>
          <t>Process of Identifier Resolution:</t>
          <artwork><![CDATA[
  None specified.
]]></artwork>
          <t>Rules for Lexical Equivalence:</t>
          <artwork><![CDATA[
  No special considerations; the rules for lexical equivalence specified in {{RFC8141}} apply.
]]></artwork>
          <t>Conformance with URN Syntax:</t>
          <artwork><![CDATA[
  No special considerations.
]]></artwork>
          <t>Validation Mechanism:</t>
          <artwork><![CDATA[
  None specified.
]]></artwork>
          <t>Scope:</t>
          <artwork><![CDATA[
  Global.
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-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"/>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla"/>
            <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"/>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne"/>
            <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"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC7675">
          <front>
            <title>Session Traversal Utilities for NAT (STUN) Usage for Consent Freshness</title>
            <author fullname="M. Perumal" initials="M." surname="Perumal"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="R. Ravindranath" initials="R." surname="Ravindranath"/>
            <author fullname="T. Reddy" initials="T." surname="Reddy"/>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <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"/>
            <author fullname="J. Uberti" initials="J." surname="Uberti"/>
            <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="RFC5789">
          <front>
            <title>PATCH Method for HTTP</title>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault"/>
            <author fullname="J. Snell" initials="J." surname="Snell"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>Several applications extending the Hypertext Transfer Protocol (HTTP) require a feature to do partial resource modification. The existing HTTP PUT method only allows a complete replacement of a document. This proposal adds a new HTTP method, PATCH, to modify an existing HTTP resource. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5789"/>
          <seriesInfo name="DOI" value="10.17487/RFC5789"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <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"/>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand"/>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <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"/>
            <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="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <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="RFC6750">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <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"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <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="RFC3553">
          <front>
            <title>An IETF URN Sub-namespace for Registered Protocol Parameters</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <author fullname="G. Klyne" initials="G." surname="Klyne"/>
            <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 anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne"/>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo"/>
            <author fullname="A. Johnston" initials="A." surname="Johnston"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <author fullname="R. Sparks" initials="R." surname="Sparks"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="E. Schooler" initials="E." surname="Schooler"/>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants. These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC6120">
          <front>
            <title>Extensible Messaging and Presence Protocol (XMPP): Core</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <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"/>
            <author fullname="A. Rao" initials="A." surname="Rao"/>
            <author fullname="R. Lanphier" initials="R." surname="Lanphier"/>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund"/>
            <author fullname="M. Stiemerling" initials="M." role="editor" surname="Stiemerling"/>
            <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-wish-whip">
          <front>
            <title>WebRTC-HTTP ingestion protocol (WHIP)</title>
            <author fullname="Sergio Garcia Murillo" initials="S. G." surname="Murillo">
              <organization>Millicast</organization>
            </author>
            <author fullname="Dr. Alex Gouaillard" initials="A." surname="Gouaillard">
              <organization>CoSMo Software</organization>
            </author>
            <date day="24" month="July" year="2023"/>
            <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>
          <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whip-09"/>
        </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="RFC8141">
          <front>
            <title>Uniform Resource Names (URNs)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <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>
      </references>
    </references>
    <?line 663?>



  </back>
  <!-- ##markdown-source:
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
Q7RREDamND6q6+Tl0qO5Cj84NrYrFHSNCtnUsW3hIpasDcVoLNhMszfZLWxL
4439eZgdJKFK0BSM2XjRd6qS1ae3ogvwSlw6xdHWXNdRA40Q0nRVERvnvk0n
TLm0zZ0FeMUuLxfUBYJ1UtiCRP3XppNSX9nKPgbVbZd30hqeuWPWJH30rMx+
QWkFemlhmw3lixe08zBVdCf52lxKWjuxw87O7CSXbPO1+Q6KMiKua4KNb+TN
WQZ7rdtFLrmpVHeIhWnNFehNp4RNsvYAJgC7jL5EAiM8ie0zaGIspOn3Au9m
nKXK0aPx7zddyg9Kexsp1utRGJOCbfWRyi2TldmKoibuxuj7HajyTqdCNax4
xbMV4vRq4J5AA98KxCdPyAaDz1ui8ExbKIwz9xYBp7sxwuxwutlmTmw+SjaU
AQBuKctM7+jOfogk04/Li8x0lcV2LokrTrJ0xeUmGgB4fW0N2ErDAZXTothY
J6Bo45lXalIrLspaEx0JqCjSiS73cR/nW7leWQc5hX8It/ja3L3n174Y5079
H/t9TwzX05KlDDNNk/X2TkU0uhLDiz2VTpQO1OrUzhQ8cTJhNYeg2MZLDUrA
Mwdmc3j4zRkS/fdoba+WtiPLxoi23gF/u48xHOxjJmfi4nSK5Spi7+rZ6b7G
hpGUXw0fLFqRGnD7Vl3sIkBqjCCru7zPoTR5DCyz++T2XXj8oyjSkvxRCML7
rFmOe0rCDdKZYgirN+QNbJ5CYZ4GobCYqWSrfA0JqID3/D1ApVdcCXc4rpDT
QH8ylyukrE+wz8/bCNKG5m4E1V2ZYh2okqO9qz9gI+9RB9mzMsHPEj9o7lFf
NJ3alS/K3fPR3k9eVbi+SvZii4prZtoo/rEJNqLqEn169jlrpfK+SxNj85oQ
XUjQ98MyJxvQ9D4te9VtvZCNJuSu9bM3Qf/sXxbFt29o5L9cF9/uU+uC4/y6
m9OgaF4AfbleYA5QU41vBH3p5FY41E1vrKGvBXkLrEXJiU4qDqdE/sJwgX+W
pjejDOlxRZQRG/YIKpRSnoIDEFmhcQQ7uSTTZl9kceQfeLl/m5vRnxAkMN6+
cR59hJlek922XxnMxGU7WfVMfOU7zDGNC/QcqsMZK4a+o93jb+MIi6q90abt
kHmEv59p1/i5iq/vmQBfmRe7phD6GEr5TQfxzziCzlc6gz+Cw6+JQvrzcfgz
U53/FyBlTbSkiwieL6NoIwXq5/FlxJ0T/bdnLVKGhiq0cnEbmQo0NReKjiZR
1VnOo1blSFwZax6VmomdrFSbsOYpOfCmVNB6UJ8aQjS7TfCYKA5sZHAgftFx
4U/2bu9mHMHzZg+/E8mlMnjYg0f6kOCv0QArdVoG7YfDbkvjJxCDw66e8HNr
1wrdmhW63gq9Xu+w27UrDPrOCr0juwL9+yuvU4q1O/bWr1m578NrptNGljMZ
+N/2wO5ClH+Uem+V09zG6Wjc6/V34tTB5lcGw0f8YDgYHX8RGLsO9YuwAcc/
GPV3nv+fB4aPjcPx8HAo7gCDKaaBpPiACAT5K07c4oudFv7w3IYyamy4Lw5N
VXwNLy+02yNz8kDSH7Sdn2Mha+/923Gd4TbYt+aGA7v9SkSNhwjGbW1A1vOG
0B3AVsuP8VLq0gj0d9eriBsSsV8G1A8HgdYVdwnrWW9SUEq2lBUhs8XZfjCp
pqJe57lrc+B+qvsOn1F/zahz/Y8hiPJLYjnn4zphrstKX1xJQVAdaqYgfoYV
rjrzor8MNtJT0B74CxevMhl++L+Ttdaa9qsnquuPozZXfa5L47xcZj0a3lo0
kNt6R47U7qicyJbxaSIyikmTWE0Jkx7R+S+e2aZ9PCa3zYf+py9zfwrdxF++
OE1+D9dTptzWAYLleOkY9uIy1HEonuUEv/uYjb8t6vO6WZCATGTK8fDdOF3d
fa8tnCxSM7le6GsKtltvwnmKX1bsmLZlQMCLluk2h2pFnJZae/YrdPFebVK6
+JVxsdFq3HnLdu8UU4h4z+sivY7Dfe+Lkyuz6hAwiO8cI3GuFmEBvU93bwEa
WbfizU10Ew1/A2Jq4uRYWmrbUXCve6SS9T2NJchpxvvEeyhiW3L/7nyfEisk
NGpLPJ0Sh10V+PWEU61ycJXxA+sPtBqvaOOauJCrSHSpoEGT0437oLIAvhVC
51RzAAe/0ri8z8FdSTc26lQyB9/tTQnVixLcG5ZAoWvjwAv0mm+u5e8XT7bC
hvrMvBOgfGxqnb4yvkVZ0Fy7/jk5+9Rh5nn6HMHkwCYZD9SpW8ZZ7Wx7mtcC
U4xHaODh+7viCI8JJBSotkW5jFwXKeIlLGHYvytGcFXnmpvueX1+6brgTK22
gMrVlvKjHmVFxP6doYSrMpSQfc0V4fHlri2+giFbWyxnXCe6el3Pc7UTeJxo
Ow5SO9MWkdalHsxZ5jZgUBeNzeem9h6v+ohRLNp+8or5sNvdKEs07jJYgvvK
bXjTf7Tg5pNhKPbvfJdvHqHCrF6MwWB5d1zab/4qBTtJI01C+lQcxi7lTY1C
pbI0SpngBRSWHu1FtSRP3hh5QuX9/yxs7UYHVtaCR4XN1jALdnvo75jlEZeV
m9Ld2zGspiN8mq9715PRV9jz985SsXJ18quaepMIW5p1GXS2IflK7VbraRud
TypO5u4Jr3PAL7EGH+otz2DVFL2NM126M/HNAIBK8/4GiANBxawWf+WqTFiL
GoJonp9dPa+ZaUatG1y9DcNsnfsFmpMKE3fnfPllTJxmd6g79Lh70d+nTVS7
89ZM5zfIDEajwefPOwrAm3wf/VImWKXOBT/uki1ht++WbzUvN7D+0rn7O0qx
L1MDAWf9imakViv9zcGX4VwtJTYVONs1HZxxbm/d17CUSTnbKFO/A2GB7QhS
BBaV3KW7qlW/YKm37SHrOAbCqT+5dKkwEP5Xuu8BVgVnl/U0qzSPizTbBMA5
KAtZMtTW0esx56TjSRs/aBCQcD2NEbV+erI9qNGgj6xptS5irP6hA6CeYH33
KlsC1iugQTVsZAtGt/1wSlljR0VZiufkqT99MrO1y9mwn4DZXW/b3FHM9SpM
3nzLym72Wue26omg9kQHT7XVdmRaBzwpg7oZyzQajdd2gfNTphLBROV+IJpM
eLayEb9M5prbizw5c+6ld3iyH7hvIhA98+SUshpAT43GqQoX1LGmaViWX0Rv
t+6BdZ5gd6gCnYsXkSuuAryS+QfxPOWY16lC2IhzyeQPCzuBmCCLmE+xejLT
FvgyTZCeS9SyA4i91wsybmNM9jZRSf7duNXNjoHfCtnLDS0IA8EGXYd4FDuQ
as5DsLEKxtHl5T51zQA0cPq6X9B+aSMfgHco+VyaL8b0k2y5XXvrO3bIqf+E
5XOfg0+IYfiHXMfPLpgf1IYv66mZfKlkwmWQ/H6bivECGqdFIT5AX2dLudEV
PMwpHJ1rUjsOvV/Ox7JpUl4D8O6yPbk8OT83ZXy6kzLhi4lMoRkqSeoDNQP5
lqG9XOFNJH/DRsnesPf58z7xiYFCwhG/h4MvGY0uItkhFNiDY5fCtl9MFRcC
RWsrWtH+BAoBTOlGQ3zobJFQDnsEx/3P3BwLOleK7LH20YFeUwc3zahFk77V
JU6EY2dg/JNbUqcYIV+AQKEvFkDjTndbUpcWnKsVrzLZiT4UFwt1g1w+SUJg
PLz14FSrGV9svE4TEE+Ojn9HC1F0w7ejPA6Ltrhf88nUXuwUl5179nuNErwG
GZ5RR+XartTxILhASQZyGuvBd4Cgv4+HaKCUlgt9B0h5PQ02zRFE9jN9/2MZ
S9E3sneczfGX7doYPo0gSczUgPkBboHXNkTVnDJhUb5zaU3Jjlz3KCKtaN52
Z9KXN3KBUwkLZUccwV/2jZsLgZ3rGmfMX4haA98cI2N2OQw08QqUN6DkArdK
Ym0tXT5ZnsLE7rikFbtDDl9jdTCLlj3Vue607ugF3OeST7LhGaOof9sE/o2x
Dnw9uxMy9BIX6y0qLjvkkP7pCHGdl+ojZk3EGfAzoAWpyhnGgyRd7eUQ2rd0
TpmdZKEnUeUk1dbGUjhweAWAOGHxQhfMEMbI3CD5cj8IMP6H8pbtV+bgd2/5
Epvm7cffL9KpRKfoiZiE2H26UBHbzVhb1m7TF2eBy/SfdU2pSnyTAAA=

-->

</rfc>
