<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.27 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-murillo-whep-02" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.0 -->
  <front>
    <title abbrev="whep">WebRTC-HTTP Egress Protocol (WHEP)</title>
    <seriesInfo name="Internet-Draft" value="draft-murillo-whep-02"/>
    <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="March" day="29"/>
    <area>Security</area>
    <keyword>Internet-Draft WebRTC</keyword>
    <abstract>
      <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>
    <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>Interoperability between WebRTC services and products.</li>
        <li>Reusing player software which can be integrated easily.</li>
        <li>Integration with Dynamic Adaptive Streaming over HTTP (DASH) for offering live streams via WebRTC while offering a time-shifted version via DASH.</li>
        <li>Playing WebRTC streams on devices that don't support custom javascript to be run (like TVs).</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>
      <ul spacing="normal">
        <li>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.</li>
        <li>WHEP Endpoint: Egress server receiving the initial WHEP request.</li>
        <li>WHEP Endpoint URL: URL of the WHEP endpoint that will create the WHEP resource.</li>
        <li>Media Server: WebRTC Media Server or consumer that establishes the media session with the WHEP player and delivers the media to it.</li>
        <li>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).</li>
        <li>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.</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:sse" <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>active: indicating that there is an active publication ongoing for this resource.</li>
            <li>inactive: indicating that there is no active publication ongoing for this resource.</li>
            <li>layers: provides information about the video layers being published for this resource.</li>
            <li>viewercount: provides the number of viewers currently connected to this resource.</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>event name: "active"</li>
              <li>event data: JSON object (TBD)</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>event name: "active"</li>
              <li>event data: JSON object (TBD)</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>event name: "layers"</li>
              <li>event data: JSON object</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>active: (Array&lt;Object&gt;) Containing the information of the active simulcast layers.</li>
              <li>inactive: (Array&lt;Object&gt;) Containing the information of the inactive simulcast layers.</li>
              <li>layers: (Array&lt;Object&gt;) Containing the information of the active simulcast, spatials or temporal layers available for layer selection.</li>
            </ul>
            <t>Each "active" JSON objet contains the following information:</t>
            <ul spacing="normal">
              <li>id: (String) rid value of the simulcast encoding of the layer</li>
              <li>simulcastIdx: (Number) the simulcast order of the encoding layer.</li>
              <li>bitrate: (Number) the spatial layer id of the encoding layer.</li>
              <li>width: (Number) the current video with of the encoding layer.</li>
              <li>heigth: (Number) the current video height of the encoding layer.</li>
            </ul>
            <t>Each "inactive" JSON contains the following information:</t>
            <ul spacing="normal">
              <li>id: (String) rid value of the simulcast encoding of the layer.</li>
              <li>simulcastIdx: (Number) the simulcast order of the encoding layer.</li>
              <li>width: (Number) the current video with of the encoding layer</li>
              <li>heigth: (Number) the current video height of the encoding layer.</li>
            </ul>
            <t>Each "layer" JSON contains the following information:</t>
            <ul spacing="normal">
              <li>encodingId: (String) rid value of the simulcast encoding of the layer</li>
              <li>simulcastIdx: (Number) the simulcast order of the encoding layer.</li>
              <li>spatialLayerId: (Number) the spatial layer id of the encoding layer.</li>
              <li>temporalLayerId: (Number) the temporal layer id of the encoding layer.</li>
              <li>bitrate: (Number) the spatial layer id of the encoding layer.</li>
              <li>width: (Number) the current video with of the encoding layer.</li>
              <li>heigth: (Number) the current video height of the encoding layer.</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>event name: "viewercount"</li>
              <li>event data: JSON object containing a "viewercount" attribute with a Number value indicating the number of viewers currently watching the WHIP resource.</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: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>mediaId: (String) m-line index to apply the layer selection(default: first video m-line)</li>
            <li>encodingId: (String)  rid value of the simulcast encoding of the track (default: automatic selection)</li>
            <li>spatialLayerId: (Number) The spatial layer id to send to the outgoing stream (default: max layer available)</li>
            <li>temporalLayerId: (Number) The temporaral layer id to send to the outgoing stream (default: max layer available)</li>
            <li>maxSpatialLayerId: (Number) Max spatial layer id (default: unlimited)</li>
            <li>maxTemporalLayerId: (Number) Max temporal layer id (default: unlimited)</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>Registry name: WHEP</li>
          <li>Specification: this document (RFC TBD)</li>
          <li>Repository: See Section <xref target="urn-whep-subspace"/></li>
          <li>Index value: See Section <xref target="urn-whep-subspace"/></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>
        <name>Normative References</name>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org">
          <front>
            <title>Fetch - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC8829">
          <front>
            <title>JavaScript Session Establishment Protocol (JSEP)</title>
            <author fullname="J. Uberti" initials="J." surname="Uberti">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes the mechanisms for allowing a JavaScript application to control the signaling plane of a multimedia session via the interface specified in the W3C RTCPeerConnection API and discusses how this relates to existing signaling protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8829"/>
          <seriesInfo name="DOI" value="10.17487/RFC8829"/>
        </reference>
        <reference anchor="RFC3264">
          <front>
            <title>An Offer/Answer Model with Session Description Protocol (SDP)</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document defines a mechanism by which two entities can make use of the Session Description Protocol (SDP) to arrive at a common view of a multimedia session between them.  In the model, one participant offers the other a description of the desired session from their perspective, and the other participant answers with the desired session from their perspective.  This offer/answer model is most useful in unicast sessions where information from both participants is needed for the complete view of the session.  The offer/answer model is used by protocols like the Session Initiation Protocol (SIP).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3264"/>
          <seriesInfo name="DOI" value="10.17487/RFC3264"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC7675">
          <front>
            <title>Session Traversal Utilities for NAT (STUN) Usage for Consent Freshness</title>
            <author fullname="M. Perumal" initials="M." surname="Perumal">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <author fullname="R. Ravindranath" initials="R." surname="Ravindranath">
              <organization/>
            </author>
            <author fullname="T. Reddy" initials="T." surname="Reddy">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <date month="October" year="2015"/>
            <abstract>
              <t>To prevent WebRTC applications, such as browsers, from launching attacks by sending traffic to unwilling victims, periodic consent to send needs to be obtained from remote endpoints.</t>
              <t>This document describes a consent mechanism using a new Session Traversal Utilities for NAT (STUN) usage.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7675"/>
          <seriesInfo name="DOI" value="10.17487/RFC7675"/>
        </reference>
        <reference anchor="W3C.REC-ldp-20150226" target="https://www.w3.org/TR/2015/REC-ldp-20150226/">
          <front>
            <title>Linked Data Platform 1.0</title>
            <author fullname="Ashok Malhotra" role="editor"/>
            <author fullname="John Arwe" role="editor"/>
            <author fullname="Steve Speicher" role="editor"/>
            <date day="26" month="February" year="2015"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-ldp-20150226"/>
          <seriesInfo name="W3C" value="REC-ldp-20150226"/>
        </reference>
        <reference anchor="RFC8863">
          <front>
            <title>Interactive Connectivity Establishment Patiently Awaiting Connectivity (ICE PAC)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="J. Uberti" initials="J." surname="Uberti">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>During the process of establishing peer-to-peer connectivity, Interactive Connectivity Establishment (ICE) agents can encounter situations where they have no candidate pairs to check, and, as a result, conclude that ICE processing has failed. However, because additional candidate pairs can be discovered during ICE processing, declaring failure at this point may be premature. This document discusses when these situations can occur. </t>
              <t>This document updates RFCs 8445 and 8838 by requiring that an ICE agent wait a minimum amount of time before declaring ICE failure, even if there are no candidate pairs left to check.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8863"/>
          <seriesInfo name="DOI" value="10.17487/RFC8863"/>
        </reference>
        <reference anchor="RFC5789">
          <front>
            <title>PATCH Method for HTTP</title>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault">
              <organization/>
            </author>
            <author fullname="J. Snell" initials="J." surname="Snell">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9143">
          <front>
            <title>Negotiating Media Multiplexing Using the Session Description Protocol (SDP)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <date month="February" year="2022"/>
            <abstract>
              <t>This specification defines a new Session Description Protocol (SDP) Grouping Framework extension called 'BUNDLE'. The extension can be used with the SDP offer/answer mechanism to negotiate the usage of a single transport (5-tuple) for sending and receiving media described by multiple SDP media descriptions ("m=" sections). Such transport is referred to as a "BUNDLE transport", and the media is referred to as "bundled media". The "m=" sections that use the BUNDLE transport form a BUNDLE group. </t>
              <t>This specification defines a new RTP Control Protocol (RTCP) Source Description (SDES) item and a new RTP header extension.</t>
              <t>This specification updates RFCs 3264, 5888, and 7941. </t>
              <t>This specification obsoletes RFC 8843.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9143"/>
          <seriesInfo name="DOI" value="10.17487/RFC9143"/>
        </reference>
        <reference anchor="RFC8858">
          <front>
            <title>Indicating Exclusive Support of RTP and RTP Control Protocol (RTCP) Multiplexing Using the Session Description Protocol (SDP)</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document defines a new Session Description Protocol (SDP) media-level attribute, 'rtcp-mux-only', that can be used by an endpoint to indicate exclusive support of RTP and RTP Control Protocol (RTCP) multiplexing. The document also updates RFC 5761 by clarifying that an offerer can use a mechanism to indicate that it is not able to send and receive RTCP on separate ports.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8858"/>
          <seriesInfo name="DOI" value="10.17487/RFC8858"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC6750">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="D. Hardt" initials="D." surname="Hardt">
              <organization/>
            </author>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer">
              <organization/>
            </author>
            <author fullname="D. Hardt" initials="D." surname="Hardt">
              <organization/>
            </author>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas.  This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="RFC3553">
          <front>
            <title>An IETF URN Sub-namespace for Registered Protocol Parameters</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <author fullname="T. Hardie" initials="T." surname="Hardie">
              <organization/>
            </author>
            <author fullname="G. Klyne" initials="G." surname="Klyne">
              <organization/>
            </author>
            <date month="June" year="2003"/>
            <abstract>
              <t>This document describes a new sub-delegation for the 'ietf' URN namespace for registered protocol items.  The 'ietf' URN namespace is defined in RFC 2648 as a root for persistent URIs that refer to IETF- defined resources.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="73"/>
          <seriesInfo name="RFC" value="3553"/>
          <seriesInfo name="DOI" value="10.17487/RFC3553"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo">
              <organization/>
            </author>
            <author fullname="A. Johnston" initials="A." surname="Johnston">
              <organization/>
            </author>
            <author fullname="J. Peterson" initials="J." surname="Peterson">
              <organization/>
            </author>
            <author fullname="R. Sparks" initials="R." surname="Sparks">
              <organization/>
            </author>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <author fullname="E. Schooler" initials="E." surname="Schooler">
              <organization/>
            </author>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants.  These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC6120">
          <front>
            <title>Extensible Messaging and Presence Protocol (XMPP): Core</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>The Extensible Messaging and Presence Protocol (XMPP) is an application profile of the Extensible Markup Language (XML) that enables the near-real-time exchange of structured yet extensible data between any two or more network entities.  This document defines XMPP's core protocol methods: setup and teardown of XML streams, channel encryption, authentication, error handling, and communication primitives for messaging, network availability ("presence"), and request-response interactions.  This document obsoletes RFC 3920.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6120"/>
          <seriesInfo name="DOI" value="10.17487/RFC6120"/>
        </reference>
        <reference anchor="RFC7826">
          <front>
            <title>Real-Time Streaming Protocol Version 2.0</title>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="A. Rao" initials="A." surname="Rao">
              <organization/>
            </author>
            <author fullname="R. Lanphier" initials="R." surname="Lanphier">
              <organization/>
            </author>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund">
              <organization/>
            </author>
            <author fullname="M. Stiemerling" initials="M." role="editor" surname="Stiemerling">
              <organization/>
            </author>
            <date month="December" year="2016"/>
            <abstract>
              <t>This memorandum defines the Real-Time Streaming Protocol (RTSP) version 2.0, which obsoletes RTSP version 1.0 defined in RFC 2326.</t>
              <t>RTSP is an application-layer protocol for the setup and control of the delivery of data with real-time properties.  RTSP provides an extensible framework to enable controlled, on-demand delivery of real-time data, such as audio and video.  Sources of data can include both live data feeds and stored clips.  This protocol is intended to control multiple data delivery sessions; provide a means for choosing delivery channels such as UDP, multicast UDP, and TCP; and provide a means for choosing delivery mechanisms based upon RTP (RFC 3550).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7826"/>
          <seriesInfo name="DOI" value="10.17487/RFC7826"/>
        </reference>
        <reference anchor="I-D.draft-ietf-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="13" month="March" 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-07"/>
        </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">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="April" year="2017"/>
            <abstract>
              <t>A Uniform Resource Name (URN) is a Uniform Resource Identifier (URI) that is assigned under the "urn" URI scheme and a particular URN namespace, with the intent that the URN will be a persistent, location-independent resource identifier.  With regard to URN syntax, this document defines the canonical syntax for URNs (in a way that is consistent with URI syntax), specifies methods for determining URN-equivalence, and discusses URI conformance.  With regard to URN namespaces, this document specifies a method for defining a URN namespace and associating it with a namespace identifier, and it describes procedures for registering namespace identifiers with the Internet Assigned Numbers Authority (IANA).  This document obsoletes both RFCs 2141 and 3406.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8141"/>
          <seriesInfo name="DOI" value="10.17487/RFC8141"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
