<?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.4 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-wish-whep-00" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title abbrev="whip">WebRTC-HTTP Egress Protocol (WHEP)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whep-00"/>
    <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="2024" month="January" day="18"/>
    <area>ART</area>
    <workgroup>wish</workgroup>
    <keyword>WebRTC</keyword>
    <abstract>
      <?line 36?>

<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 40?>

<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="8" month="January" year="2024"/>
            <abstract>
              <t>   This document describes a simple HTTP-based protocol that will allow
   WebRTC-based ingestion of content into streaming services and/or
   CDNs.

   This document updates RFC 8842 and RFC 8840.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whip-11"/>
        </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 664?>



  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19a3PbRpbod1X5P/Slq3alCUnxTQkZJ0NLcqwZ29JKcpxU
KnULBJoibBLgAqBkxvH9Lftb9pfd8+hudAOgHo4zu7W1Ss1YAtHdp0+f96PZ
arWe7IRJEPtL6Ykw9Wd5K5L5rHUbZfPW7VyuWp3Ok508yhfw+Ts5vbg6ar28
ujoXJ9epzDJxniZ5EiQLsfvu5cn53pMdfzpN5Y0nbufR6slO4OfyOkk3nsjy
8MlOtEo9kafrLO91OoedHryeSt8Tk4urJzu3SfrhOk3WKxgMqz/ZebLzQW7g
aahXxkdZ7sfh//UXSQwAbWT2ZGcVeeIXAKIpsiTNUznL4LfNEn/5FUf463ye
pB7+KmC3An6iOPPEZVu8XqfRYpHwQ8bBpUyvo0T84KdB5LsvJOm1H0e/+XmU
xJ54DR9EgZ/l/KFc+tECtknD29c0vL3k4X8LkmyZZMksv4X9tiM1Xwmeo7Y4
msvYBgb/vraeuhA83+Ty2I8D6UBwK6dpHvxtCh+G+GE7SJZ6vThJlzD4Rnr4
5MXJ1dFLjz8zSBJCLQRIfzm5evcDP1IU8ELmwVy0xKvoJgLILvEw/DRU7/jp
tcw9Mc/zVebt78/w5Xa2kkH7du7nt9dtmFav8GSn1WoJf5rlqR/keDhX8ygT
QIvrpYxzEcosSKOpzIQvsmi5WkiBdNea+pkMxUqTXQ4TA7ksFsIHRN9qEuW3
biJ5K9NM5Im49RHwIIlznHyWJkugSKC9JW4DDu0mCnCpONxPUnGkXjuWC8BV
uhFvZI7UmYndo+M32R6gRy0krlI/zpZRlsGJ6NeAF67grTZuCje5jMJwIfGv
p+I0ztMkXAd4grxpKU5Prl4ImOzdyXOB4xEkYgSRKfxGv8Fu/n55ci52P336
Pxcvjg4OeoefP+81ATlLGcyBKLKlWOOeYa+4y5RwI2Fr+XrVFEs/9q8lIraJ
mxS5hFmT21gkM5xivcijpQyB4DNJW2mL0xwwmiXWOcwBvTB7DAydR8DXgkfM
AO0ZrI1Q44pns5lM9ydxBqgXr5NQLuB88jl9dsmzA2Jx0hUiwZIgl8fne4L3
1++NBp8/Cz8DcsazzWj4jMg3w39F6OcILZxSAkdEH99GqRS7sn3dbirY8s1K
gjQIAIpArPwUmCoHgmAcyDhINwTDXlsfZ0QHD4+AmjZAjLDtOMkF0nA02xAp
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

-->

</rfc>
