<?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.8 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-wish-whep-01" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <front>
    <title abbrev="whip">WebRTC-HTTP Egress Protocol (WHEP)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whep-01"/>
    <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="March" 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 in 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?>

</section>
    <section anchor="overview">
      <name>Overview</name>
      <t>The WebRTC-HTTP Ingest Protocol (WHIP) is designed to facilitate a one-time exchange of Session Description Protocol (SDP) offers and answers using HTTP POST requests. This exchange is a fundamental step in establishing an Interactive Connectivity Establishment (ICE) and Datagram Transport Layer Security (DTLS) session between WHEP player and the streaming service endpoint (Media Server).</t>
      <t>Upon successful establishment of the ICE/DTLS session, unidirectional media data transmission commences from the media server to the WHEP player. It is important to note that SDP renegotiations are not supported in WHEP, meaning that no modifications to the "m=" sections can be made after the initial SDP offer/answer exchange via HTTP POST is completed and only ICE related information can be updated via HTTP PATCH requests as defined in <xref target="ice-support"/>.</t>
      <t>The following diagram illustrates the core operation of the WHEP protocol for initiating and terminating a viewing session:</t>
      <figure anchor="whep-protocol-operation">
        <name>WHEP session setup and teardown</name>
        <artwork><![CDATA[
                                                                               
 +-------------+    +---------------+ +--------------+ +---------------+
 | WHEP player |    | WHEP endpoint | | Media Server | | WHEP session |
 +--+----------+    +---------+-----+ +------+-------+ +--------|------+
    |                         |              |                  |       
    |                         |              |                  |       
    |HTTP POST (SDP Offer)    |              |                  |       
    +------------------------>+              |                  |       
    |201 Created (SDP answer) |              |                  |       
    +<------------------------+              |                  |       
    |          ICE REQUEST                   |                  |       
    +--------------------------------------->+                  |       
    |          ICE RESPONSE                  |                  |       
    |<---------------------------------------+                  |       
    |          DTLS SETUP                    |                  |       
    |<======================================>|                  |       
    |          RTP/RTCP FLOW                 |                  |       
    +<-------------------------------------->+                  |       
    | HTTP DELETE                                               |       
    +---------------------------------------------------------->+       
    | 200 OK                                                    |       
    <-----------------------------------------------------------x       
                                                                               
]]></artwork>
      </figure>
      <t>The elements in <xref target="whep-protocol-operation"/> are described as follows:</t>
      <ul spacing="normal">
        <li>
          <t>WHEP player: This represents the WebRTC media player, which functions as a client of the WHEP protocol by receiving and decoding the media from a remote media server.</t>
        </li>
        <li>
          <t>WHEP endpoint: This denotes the egress server that receives the initial WHEP request.</t>
        </li>
        <li>
          <t>WHEP endpoint URL: Refers to the URL of the WHEP endpoint responsible for creating the WHEP session.</t>
        </li>
        <li>
          <t>Media server: This is the WebRTC Media Server that establishes the media session with the WHEP player and delivers the media to it.</t>
        </li>
        <li>
          <t>WHEP sesion: Indicates the allocated HTTP resource by the WHEP endpoint for an ongoing egress session.</t>
        </li>
        <li>
          <t>WHEP session URL: Refers to the URL of the WHEP resource allocated by the WHEP endpoint for a specific media session. The WHEP player can send requests to the WHEP session using this URL to modify the session, such as ICE operations or termination.</t>
        </li>
      </ul>
    </section>
    <section anchor="protocol-operation">
      <name>Protocol Operation</name>
      <t>In order to set up a streaming session, the WHEP player <bcp14>MUST</bcp14> generate an SDP offer according to the JSEP rules for an initial offer as in <xref section="5.2.1" sectionFormat="of" target="RFC8829"/> and perform an HTTP POST request as per <xref section="9.3.3" sectionFormat="of" target="RFC9110"/> to the configured WHEP endpoint URL.</t>
      <t>The HTTP POST request <bcp14>MUST</bcp14> have a content type of "application/sdp" and contain the SDP offer as the body. The WHEP endpoint <bcp14>MUST</bcp14> generate an SDP answer according to the JSEP rules for an initial answer as in <xref section="5.3.1" sectionFormat="of" target="RFC8829"/> 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 WHEP session.</t>
      <t>As the WHEP protocol only supports the playback use case with unidirectional media, the WHEP player <bcp14>SHOULD</bcp14> use "recvonly" attribute in the SDP offer but <bcp14>MAY</bcp14> use the "sendrecv" attribute instead, "inactive" and "recvonly" attributes <bcp14>MUST NOT</bcp14> be used. The WHEP endpoint <bcp14>MUST</bcp14> use "sendonly" attribute in the SDP answer.</t>
      <t>If the HTTP POST to the WHEP endpoint has a content type different than "application/sdp", the WHEP endpoint <bcp14>MUST</bcp14> reject the HTTP POST request with a "415 Unsupported Media Type" error response. If the SDP body is malformed, the WHIP session <bcp14>MUST</bcp14> reject the HTTP POST with a "400 Bad Request" error response.</t>
      <t>Following is an example of an HTTP POST sent from a WHEP player to a WHEP endpoint and the "201 Created" response from the WHIP endpoint containing the Location header pointing to the newly created WHEP session:</t>
      <figure>
        <name>Example of SDP offer/answer exchange done via an HTTP POST</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=ice-options:trickle ice2
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=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=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid
a=recvonly
a=rtcp-mux
a=rtcp-mux-only
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10;useinbandfec=1
m=video 0 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=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-mux-only
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/sessions/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=ice-options:trickle ice2
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-mux-only
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 0 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-mux-only
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 endpoint 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 endpoint <bcp14>SHALL</bcp14> return a "409 Conflict" response to the POST request issued by the WHEP player 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 session 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 setup, consent freshness as per <xref target="RFC7675"/> <bcp14>SHALL</bcp14> be used to detect non-graceful disconnection by full ICE implementations and DTLS teardown for session termination by either side.</t>
      <t>To explicitly terminate a WHIP session, the WHEP player <bcp14>MUST</bcp14> perform an HTTP DELETE request to the WHEP session URL returned in the Location header field of the initial HTTP POST. Upon receiving the HTTP DELETE request, the WHIP session 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 section="5.2" sectionFormat="of" target="RFC7675"/>  for immediate revocation of consent.</t>
      <t>The WHEP endpoints <bcp14>MUST</bcp14> return an "405 Method Not Allowed" response for any HTTP request method different than OPTIONS and POST on the endpoint URL in order to reserve their 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"/>. The "200 OK" response to any OPTIONS request <bcp14>SHOULD</bcp14> include an "Accept-Post" header with a media type value of "application/sdp" as per <xref target="W3C.REC-ldp-20150226"/>.</t>
      <t>The WHEP sessions <bcp14>MUST</bcp14> return an "405 Method Not Allowed" response for any HTTP request method different than PATCH and DELETE on the session URLs in order to reserve their usage for future versions of this protocol specification.</t>
      <section anchor="ice-support">
        <name>ICE support</name>
        <t>ICE <xref target="RFC8845"/> is a protocol addressing the complexities of Network Address Translation (NAT) traversal, commonly encountered in Internet communication. NATs hinder direct communication between devices on different local networks, posing challenges for real-time applications. ICE facilitates seamless connectivity by employing techniques to discover and negotiate efficient communication paths.</t>
        <t>Trickle ICE <xref target="RFC8838"/> optimizes the connectivity process by incrementally sharing potential communication paths, reducing latency, and facilitating quicker establishment.</t>
        <t>ICE Restarts are crucial for maintaining connectivity in dynamic network conditions or disruptions, allowing devices to re-establish communication paths without complete renegotiation. This ensures minimal latency and reliable real-time communication.</t>
        <t>Trickle ICE and ICE restart support are <bcp14>RECOMMENDED</bcp14> for both WHEP sessions and clients.</t>
        <section anchor="http-patch-usage">
          <name>HTTP PATCH request usage</name>
          <t>The WHEP player <bcp14>MAY</bcp14> perform trickle ICE or ICE restarts by sending an HTTP PATCH request as per <xref target="RFC5789"/> to the WHEP session URL, with a body containing a SDP fragment with media type "application/trickle-ice-sdpfrag" as specified in <xref target="RFC8840"/> carrying the relevant ICE information.</t>
          <t>If the HTTP PATCH to the WHEP session has a content type different than "application/trickle-ice-sdpfrag", the WHEP session <bcp14>MUST</bcp14> reject the HTTP PATCH request with a "415 Unsupported Media Type" error response. If the SDP fragment is malformed, the WHEP session <bcp14>MUST</bcp14> reject the HTTP PATCH with a "400 Bad Request" error response.</t>
          <t>If the WHEP session supports either Trickle ICE or ICE restarts, but not both, it <bcp14>MUST</bcp14> return a "422 Unprocessable Content" response for the HTTP PATCH requests that are not supported as per <xref section="15.5.21" sectionFormat="of" target="RFC9110"/>.</t>
          <t>The WHEP player <bcp14>MAY</bcp14> send overlapping HTTP PATCH requests to one WHEP session. Consequently, as those HTTP PATCH requests may be received out-of-order by the WHEP session, if WHEP session supports ICE restarts, it <bcp14>MUST</bcp14> generate a unique strong entity-tag identifying the ICE session as per <xref section="8.8.3" sectionFormat="of" target="RFC9110"/>, being <bcp14>OPTIONAL</bcp14> otherwise. 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.</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. WHEP sessions <bcp14>MUST</bcp14> ignore any entity-tag value sent by the WHEP player when ICE session matching is not required, as in the HTTP DELETE request.</t>
        </section>
        <section anchor="trickle-ice">
          <name>Trickle ICE</name>
          <t>Depending on the Trickle ICE support on the WHEP player, the initial offer 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="RFC8845"/>. For the purpose of reducing setup times, when using Trickle ICE the WHEP player <bcp14>SHOULD</bcp14> send the SDP offer as soon as possible, containing either locally gathered ICE candidates or an empty list of candidates.</t>
          <t>In order to simplify the protocol, the WHEP session cannot signal additional ICE candidates to the WHEP player after the SDP answer has been 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.</t>
          <t>As the WHEP player needs to know the WHEP session URL associated with the ICE session in order to send a PATCH request containing new ICE candidates, it <bcp14>MUST</bcp14> wait and buffer any gathered candidates until the "201 Created" HTTP response to the initial POST request is received.
In order to lower the HTTP traffic and processing time required the WHEP player <bcp14>SHOULD</bcp14> send a single aggregated HTTP PATCH request with all the buffered ICE candidates once the response is received.
Additionally, if ICE restarts are supported by the WHEP session, the WHEP player needs to know the entity-tag associated with the ICE session in order to send a PATCH request containing new ICE candidates, so it <bcp14>MUST</bcp14> also wait and buffer any gathered candidates until it receives the HTTP response with the new entity-tag value to the last PATCH request performing an ICE restart.</t>
          <t>WHEP players generating the HTTP PATCH body with the SDP fragment and its subsequent processing by WHEP sessions <bcp14>MUST</bcp14> follow to the guidelines defined in <xref section="4.4" sectionFormat="of" target="RFC8840"/> with the following considerations:</t>
          <ul spacing="normal">
            <li>
              <t>As per <xref target="RFC8829"/>, only m-sections not marked as bundle-only can gather ICE candidates, so given that the "max-bundle" policy is being used, the SDP fragment will contain only the offerer-tagged m-line of the bundle group.</t>
            </li>
            <li>
              <t>The WHEP player <bcp14>MAY</bcp14> exclude ICE candidates from the HTTP PATCH body if they have already been confirmed by the WHEP session with a successful HTTP response to a previous HTTP PATCH request.</t>
            </li>
          </ul>
          <t>If the WHEP session is using entity-tags for identifying the ICE sessions in explained in <xref target="http-patch-usage"/>, 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 section="13.1.1" sectionFormat="of" target="RFC9110"/>.
When the PATCH request is received by the WHEP session, it <bcp14>MUST</bcp14> compare the indicated entity-tag value with the current entity-tag of the resource as per <xref section="13.1.1" sectionFormat="of" target="RFC9110"/> and return a "412 Precondition Failed" response if they do not match. If the HTTP PATCH request does not contain an "If-Match" header the WHEP session <bcp14>MUST</bcp14> return an "428 Precondition Required" response as per <xref section="3" sectionFormat="of" target="RFC6585"/>.</t>
          <t>When a WHEP session receives a PATCH request that adds new ICE candidates without performing an ICE restart, it <bcp14>MUST</bcp14> return a "204 No Content" response without a body and <bcp14>MUST NOT</bcp14> include an ETag header in the response. If the WHEP session does not support a candidate transport or is not able to resolve the connection address, it <bcp14>MUST</bcp14> silently discard the candidate and continue processing the rest of the request normally.</t>
          <figure>
            <name>Example of a Trickle ICE request and response</name>
            <artwork><![CDATA[
PATCH /session/id HTTP/1.1
Host: whep.example.com
If-Match: "xyzzy"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 576

a=group:BUNDLE 0 1
m=audio 9 UDP/TLS/RTP/SAVPF 111
a=mid:0
a=ice-ufrag:EsAw
a=ice-pwd:P2uYro0UCOQ4zxjKXaWCBui1
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.2 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>
        </section>
        <section anchor="ice-restarts">
          <name>ICE Restarts</name>
          <t>As defined in <xref target="RFC8839"/>, when an ICE restart occurs, a new SDP offer/answer exchange is triggered. However, as WHEP does not support renegotiation of non-ICE related SDP information, a WHEP player will not send a new offer when an ICE restart occurs. Instead, the WHEP player and WHEP session will only exchange the relevant ICE information via an HTTP PATCH request as defined in <xref target="http-patch-usage"/> and <bcp14>MUST</bcp14> assume that the previously negotiated non-ICE related SDP information still apply after the ICE restart.</t>
          <t>When performing an ICE restart, the WHEP player <bcp14>MUST</bcp14> include the updated "ice-pwd" and "ice-ufrag" in the SDP fragment of the HTTP PATCH request body as well as the new set of gathered ICE candidates as defined in <xref target="RFC8840"/>.
Similar what is defined in <xref target="trickle-ice"/>, as per <xref target="RFC8829"/> only m-sections not marked as bundle-only can gather ICE candidates, so given that the "max-bundle" policy is being used, the SDP fragment will contain only the offerer-tagged m-line of the bundle group.
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 section="13.1.1" sectionFormat="of" target="RFC9110"/>.</t>
          <t><xref target="RFC8840"/> states that an agent <bcp14>MUST</bcp14> discard any received requests containing "ice-pwd" and "ice-ufrag" attributes that do not match those of the current ICE Negotiation Session, however, any WHEP session receiving an updated "ice-pwd" and "ice-ufrag" attributes <bcp14>MUST</bcp14> consider the request as performing an ICE restart instead and, if supported, <bcp14>SHALL</bcp14> return a "200 OK" with an "application/trickle-ice-sdpfrag" body containing the new ICE username fragment and password and a new set of ICE candidates for the WHEP session. 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>As defined in <xref section="4.4.1.1.1" sectionFormat="of" target="RFC8839"/> the set of candidates after an ICE restart may include some, none, or all of the previous candidates for that data stream and may include a totally new set of candidates. So after performing a successful ICE restart, both the WHEP player and the WHEP session <bcp14>MUST</bcp14> replace the previous set of remote candidates with the new set exchanged in the HTTP PATCH request and response, discarding any remote ICE candidate not present on the new set. Both the WHEP player and the WHEP session <bcp14>MUST</bcp14> ensure that the HTTP PATCH requests and response bodies include the same 'ice-options,' 'ice-pacing,' and 'ice-lite' attributes as those used in the SDP offer or answer.</t>
          <t>If the ICE restart request cannot be satisfied by the WHEP session, the resource <bcp14>MUST</bcp14> return an appropriate HTTP error code and <bcp14>MUST NOT</bcp14> terminate the session immediately and keep the existing ICE session. The WHEP player <bcp14>MAY</bcp14> retry performing a new ICE restart or terminate the session by issuing an HTTP DELETE request instead. In any case, the session <bcp14>MUST</bcp14> be terminated if the ICE consent expires as a consequence of the failed ICE restart as per <xref section="5.1" sectionFormat="of" target="RFC7675"/>.</t>
          <t>In case of unstable network conditions, the ICE restart HTTP PATCH requests and responses might be received out of order. In order to mitigate this scenario, when the client performs an ICE restart, it <bcp14>MUST</bcp14> discard any previous ICE username and passwords fragments and ignore any further HTTP PATCH response received from a pending HTTP PATCH request. 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 WHEP player and at the WHEP session (because of an out-of-order request), the STUN requests will contain invalid ICE information and will be dropped by the receiving side. If this situation is detected by the WHEP player, it <bcp14>MUST</bcp14> send a new ICE restart request to the server.</t>
          <figure>
            <name>Example of an ICE restart request and response</name>
            <artwork><![CDATA[
PATCH /session/id HTTP/1.1
Host: whep.example.com
If-Match: "*"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 82

a=ice-options:trickle ice2
a=group:BUNDLE 0 1
m=audio 9 UDP/TLS/RTP/SAVPF 111
a=mid:0
a=ice-ufrag:ysXw
a=ice-pwd:vw5LmwG4y/e6dPP/zAP9Gp5k
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.2 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

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

a=ice-lite
a=ice-options:trickle ice2
a=group:BUNDLE 0 1
m=audio 9 UDP/TLS/RTP/SAVPF 111
a=mid:0
a=ice-ufrag:289b31b754eaa438
a=ice-pwd:0b66f472495ef0ccac7bda653ab6be49ea13114472a5d10a
a=candidate:1 1 udp 2130706431 198.51.100.1 39132 typ host
a=end-of-candidates
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="webrtc-constraints">
        <name>WebRTC constraints</name>
        <t>In order to reduce the complexity of implementing WHEP in both clients and media servers, WHEP imposes the following restrictions regarding WebRTC usage:</t>
        <section anchor="sdp-bundle">
          <name>SDP Bundle</name>
          <t>Both the WHEP player and the WHEP endpoint <bcp14>SHALL</bcp14> support <xref target="RFC9143"/> and use "max-bundle" policy as defined in <xref target="RFC8829"/>. The WHEP player and the media server <bcp14>MUST</bcp14> support multiplexed media associated with the BUNDLE group as per <xref section="9" sectionFormat="of" target="RFC9143"/>. In addition, per <xref target="RFC9143"/> the WHEP player and media server <bcp14>SHALL</bcp14> use RTP/RTCP multiplexing for all bundled media. In order to reduce the network resources required at the media server, both The WHEP player and WHEP endpoints <bcp14>MUST</bcp14> include the "rtcp-mux-only" attribute in each bundled "m=" sections as per <xref section="3" sectionFormat="of" target="RFC8858"/>.</t>
        </section>
        <section anchor="single-mediastream">
          <name>Single MediaStream</name>
          <t>WHEP only supports a single MediaStream as defined in <xref target="RFC8830"/> and therefore all "m=" sections <bcp14>MUST</bcp14> contain an "msid" attribute with the same value. The MediaStream <bcp14>MUST</bcp14> contain at least one MediaStreamTrack of any media kind and it <bcp14>MUST NOT</bcp14> have two or more than MediaStreamTracks for the same media (audio or video). However, it would be possible for future revisions of this spec to allow more than a single MediaStream or MediaStreamTrack of each media kind, so in order to ensure forward compatibility, if the number of audio and or video MediaStreamTracks or number of MediaStreams are not supported by the WHEP endpoint, it <bcp14>MUST</bcp14> reject the HTTP POST request with a "406 Not Acceptable" error response.</t>
        </section>
        <section anchor="trickle-ice-and-ice-restarts">
          <name>Trickle ICE and ICE restarts</name>
          <t>The media server <bcp14>SHOULD</bcp14> support full ICE, unless it is connected to the Internet with an IP address that is accessible by each WHEP player that is authorized to use it, in which case it <bcp14>MAY</bcp14> support only ICE lite. The WHEP player <bcp14>MUST</bcp14> implement and use full ICE.</t>
          <t>Trickle ICE and ICE restarts support is <bcp14>OPTIONAL</bcp14> for both the WHEP players and media servers as explained in <xref target="ice-support"/>.</t>
        </section>
      </section>
      <section anchor="load-balancing-and-redirections">
        <name>Load balancing and redirections</name>
        <t>WHEP endpoints and media servers might not be colocated on the same server, so it is possible to load balance incoming requests to different media servers.</t>
        <t>WHEP players <bcp14>SHALL</bcp14> support HTTP redirections as per <xref section="15.4" sectionFormat="of" target="RFC9110"/>. In order to avoid POST requests to be redirected as GET requests, status codes 301 and 302 <bcp14>MUST NOT</bcp14> be used and the preferred method for performing load balancing is via the "307 Temporary Redirect" response status code as described in <xref section="15.4.8" sectionFormat="of" target="RFC9110"/>. Redirections are not required to be supported for the PATCH and DELETE requests.</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 as described in <xref section="15.6.4" sectionFormat="of" target="RFC9110"/>, 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 as described in <xref section="10.2.3" sectionFormat="of" target="RFC9110"/>.</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>All WHEP endpoints, sessions and clients <bcp14>MUST</bcp14> support HTTP Authentication as per <xref section="11" sectionFormat="of" target="RFC9110"/> and in order to ensure interoperability, bearer token authentication as defined in the next section <bcp14>MUST</bcp14> be supported by all WHEP entities. However this does not preclude the support of additional HTTP authentication schemes as defined in <xref section="11.6" sectionFormat="of" target="RFC9110"/>.</t>
        <section anchor="bearer-token-authentication">
          <name>Bearer token authentication</name>
          <t>WHEP endpoints and sessions <bcp14>MAY</bcp14> require the HTTP request to be authenticated using an HTTP Authorization header field with a Bearer token as specified in <xref section="2.1" sectionFormat="of" target="RFC6750"/>. 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 session except the preflight OPTIONS requests for CORS.</t>
          <t>The nature, syntax, and semantics of the bearer token, as well as how to distribute it to the client, is outside the scope of this document. Some examples of the kind of tokens that could be used are, but are not limited to, JWT tokens as per <xref target="RFC6750"/> and <xref target="RFC8725"/> or a shared secret stored on a database. The tokens are typically made available to the end user alongside the WHEP endpoint URL and configured on the WHEP players (similar to the way RTMP URLs and Stream Keys are distributed).</t>
          <t>WHEP endpoints and sessions could perform the authentication and authorization by encoding an authentication token within the URLs for the WHEP endpoints or sessions instead. In case the WHEP player is not configured to use a bearer token, the HTTP Authorization header field <bcp14>MUST NOT</bcp14> be sent in any request.</t>
        </section>
      </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 that it supports, with the extension "rel" attribute value containing the extension URN and the URL 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 sessions. WHEP players <bcp14>MUST</bcp14> ignore any Link attribute with an unknown "rel" attribute value and WHEP Endpoints and sessions <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 NOT</bcp14> 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>This document specifies a new protocol on top of HTTP and WebRTC, thus, security protocols and considerations from related specifications apply to the WHEP specification. These include:<em>**</em></t>
      <ul spacing="normal">
        <li>
          <t>WebRTC security considerations: <xref target="RFC8826"/>. HTTPS <bcp14>SHALL</bcp14> be used in order to preserve the WebRTC security model.</t>
        </li>
        <li>
          <t>Transport Layer Security (TLS): <xref target="RFC8446"/> and <xref target="RFC9147"/>.</t>
        </li>
        <li>
          <t>HTTP security: <xref section="11" sectionFormat="of" target="RFC9112"/> and <xref section="17" sectionFormat="of" target="RFC9110"/>.</t>
        </li>
        <li>
          <t>URI security: <xref section="7" sectionFormat="of" target="RFC3986"/>.</t>
        </li>
      </ul>
      <t>On top of that, the WHEP protocol exposes a thin new attack surface specific of the REST API methods used within it:</t>
      <ul spacing="normal">
        <li>
          <t>HTTP POST flooding and resource exhaustion:
It would be possible for an attacker in possession of authentication credentials valid for watching a WHEP stream to make multiple HTTP POST to the WHIP endpoint.
This will force the WHEP endpoint to process the incoming SDP and allocate resources for being able to setup the DTLS/ICE connection.
While the malicious client does not need to initiate the DTLS/ICE connection at all, the WHIP session will have to wait for the DTLS/ICE connection timeout in order to release the associated resources.
If the connection rate is high enough, this could lead to resource exhaustion on the servers handling the requests and it will not be able to process legitimate incoming ingests.
In order to prevent this scenario, WHEP endpoints <bcp14>SHOULD</bcp14> implement a rate limit and avalanche control mechanism for incoming initial HTTP POST requests.</t>
        </li>
        <li>
          <t>Insecure direct object references (IDOR) on the WHEP session locations:
If the URLs returned by the WHIP endpoint for the WHEP sessions location are easy to guess, it would be possible for an attacker to send multiple HTTP DELETE requests and terminate all the WHEP sessions currently running.
In order to prevent this scenario, WHEP endpoints <bcp14>SHOULD</bcp14> generate URLs with enough randomness, using a cryptographically secure pseudorandom number generator following the best practices in Randomness Requirements for Security <xref target="RFC4086"/>, and implement a rate limit and avalanche control mechanism for HTTP DELETE requests.
The security considerations for Universally Unique IDentifier (UUID) <xref section="6" sectionFormat="comma" target="RFC4122"/> are applicable for generating the WHEP sessions location URL.</t>
        </li>
        <li>
          <t>HTTP PATCH flooding: 
Similar to the HTTP POST flooding, a malicious client could also create a resource exhaustion by sending multiple HTTP PATCH request to the WHEP session, although the WHEP sessions can limit the impact by not allocating new ICE candidates and reusing the existing ICE candidates when doing ICE restarts.
In order to prevent this scenario, WHEP endpoints <bcp14>SHOULD</bcp14> implement a rate limit and avalanche control mechanism for incoming HTTP PATCH requests.</t>
        </li>
      </ul>
    </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 is asked to add an entry to the "IETF URN Sub-namespace for Registered Protocol Parameter Identifiers" registry and create 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 is asked to create the "WebRTC-HTTP ingestion protocol (WHEP) URNs" 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: WebRTC-HTTP ingestion protocol (WHEP) URNs</t>
          </li>
          <li>
            <t>Specification: this document (RFC TBD)</t>
          </li>
          <li>
            <t>Registration policy: Specification Required</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 utilizes URNs to identify the supported WHEP protocol extensions on the "rel" attribute of the Link header as defined in <xref target="protocol-extensions"/>.</t>
        <t>This section creates and registers an IETF URN Sub-namespace for use in the WHEP specifications and future extensions.</t>
        <section anchor="specification-template">
          <name>Specification Template</name>
          <t>Namespace ID:</t>
          <ul spacing="normal">
            <li>
              <t>The Namespace ID "whep" has been assigned.</t>
            </li>
          </ul>
          <t>Registration Information:</t>
          <ul spacing="normal">
            <li>
              <t>Version: 1</t>
            </li>
            <li>
              <t>Date: TBD</t>
            </li>
          </ul>
          <t>Declared registrant of the namespace:</t>
          <ul spacing="normal">
            <li>
              <t>Registering organization: The Internet Engineering Task Force.</t>
            </li>
            <li>
              <t>Designated contact: A designated expert will monitor the WHEP public mailing list, "wish@ietf.org".</t>
            </li>
          </ul>
          <t>Declaration of Syntactic Structure:</t>
          <ul spacing="normal">
            <li>
              <t>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}.</t>
            </li>
            <li>
              <t>The keywords have the following meaning:  </t>
              <ul spacing="normal">
                <li>
                  <t>type: The entity type. This specification only defines the "ext" type.</t>
                </li>
                <li>
                  <t>name: A required US-ASCII string that conforms to the URN syntax requirements (see <xref target="RFC8141"/>) and defines a major namespace of a WHEP protocol extension. The value <bcp14>MAY</bcp14> also be an industry name or organization name.</t>
                </li>
                <li>
                  <t>other: Any US-ASCII string that conforms to the URN syntax requirements (see <xref target="RFC8141"/>) and defines the sub-namespace (which <bcp14>MAY</bcp14> be further broken down in namespaces delimited by colons) as needed to uniquely identify an WHEP protocol extension.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Relevant Ancillary Documentation:</t>
          <ul spacing="normal">
            <li>
              <t>None</t>
            </li>
          </ul>
          <t>Identifier Uniqueness Considerations:</t>
          <ul spacing="normal">
            <li>
              <t>The designated contact shall be responsible for reviewing and enforcing uniqueness.</t>
            </li>
          </ul>
          <t>Identifier Persistence Considerations:</t>
          <ul spacing="normal">
            <li>
              <t>Once a name has been allocated, it <bcp14>MUST NOT</bcp14> be reallocated for a different purpose.</t>
            </li>
            <li>
              <t>The rules provided for assignments of values within a sub-namespace <bcp14>MUST</bcp14> be constructed so that the meanings of values cannot change.</t>
            </li>
            <li>
              <t>This registration mechanism is not appropriate for naming values whose meanings may change over time.</t>
            </li>
          </ul>
          <t>Process of Identifier Assignment:</t>
          <ul spacing="normal">
            <li>
              <t>Namespace with type "ext" (e.g., "urn:ietf:params:whep:ext") is reserved for IETF-approved WHEP specifications.</t>
            </li>
          </ul>
          <t>Process of Identifier Resolution:</t>
          <ul spacing="normal">
            <li>
              <t>None specified.</t>
            </li>
          </ul>
          <t>Rules for Lexical Equivalence:</t>
          <ul spacing="normal">
            <li>
              <t>No special considerations; the rules for lexical equivalence specified in <xref target="RFC8141"/> apply.</t>
            </li>
          </ul>
          <t>Conformance with URN Syntax:</t>
          <ul spacing="normal">
            <li>
              <t>No special considerations.</t>
            </li>
          </ul>
          <t>Validation Mechanism:</t>
          <ul spacing="normal">
            <li>
              <t>None specified.</t>
            </li>
          </ul>
          <t>Scope:</t>
          <ul spacing="normal">
            <li>
              <t>Global.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="registering-whep-protocol-extensions-urns">
        <name>Registering WHEP Protocol Extensions URNs</name>
        <t>This section defines the process for registering new WHEP protocol extensions URNs with IANA in the "WebRTC-HTTP ingestion protocol (WHEP) URNs" registry (see <xref target="urn-whep-subspace"/>).</t>
        <t>A WHEP Protocol Extension URNs is used as a value in the "rel" attribute of the Link header as defined in <xref target="protocol-extensions"/> for the purpose of signaling the WHEP protocol extensions supported by the WHEP endpoints.</t>
        <t>WHEP Protocol Extensions URNs have a "ext" type as defined in <xref target="urn-whep-subspace"/>.</t>
        <section anchor="registration-procedure">
          <name>Registration Procedure</name>
          <t>The IETF has created a mailing list, "wish@ietf.org", which can be used
   for public discussion of WHEP protocol extensions proposals prior to registration.
   Use of the mailing list is strongly encouraged. The IESG has
   appointed a designated expert <xref target="RFC8126"/> who will monitor the
   wish@ietf.org mailing list and review registrations.</t>
          <t>Registration of new "ext" type URNs (in the namespace "urn:ietf:params:whep:ext") belonging to a WHEP Protocol Extension <bcp14>MUST</bcp14> be documented in a permanent and readily available public specification, in sufficient detail so that interoperability between independent implementations is possible and reviewed by the designated expert as per Section 4.6 of <xref target="BCP26"/> .
   An RFC is <bcp14>REQUIRED</bcp14> for the registration of new value data types that modify existing properties.
   An RFC is also <bcp14>REQUIRED</bcp14> for registration of WHEP Protocol Extensions URNs that modify WHEP Protocol Extensions previously documented in an existing RFC.</t>
          <t>The registration procedure begins when a completed registration template, defined in the sections below, is sent to iana@iana.org.
   Decisions made by the designated expert can be appealed to an Applications and Real Time (ART) Area Director, then to the IESG.
   The normal appeals procedure described in <xref target="BCP9"/> is to be followed.</t>
          <t>Once the registration procedure concludes successfully, IANA creates
   or modifies the corresponding record in the WHEP Protocol Extension registry.</t>
          <t>An RFC specifying one or more new WHEP Protocol Extension URNs <bcp14>MUST</bcp14> include the
   completed registration templates, which <bcp14>MAY</bcp14> be expanded with
   additional information. These completed templates are intended to go
   in the body of the document, not in the IANA Considerations section.
   The RFC <bcp14>MUST</bcp14> include the syntax and semantics of any extension-specific attributes that may be provided in a Link header
   field advertising the extension.</t>
        </section>
        <section anchor="guidance-for-designated-experts">
          <name>Guidance for Designated Experts</name>
          <t>The Designated Expert (DE) is expected to ascertain the existence of suitable documentation (a specification) as described in <xref target="RFC8126"/> and to verify that the document is permanently and publicly available.</t>
          <t>The DE is also expected to check the clarity of purpose and use of the requested registration.</t>
          <t>Additionally, the DE must verify that any request for one of these registrations has been made available for review and comment within the IETF: the DE will post the request to the WebRTC Ingest Signaling over HTTPS (wish) Working Group mailing list (or a successor mailing list designated by the IESG).</t>
          <t>If the request comes from within the IETF, it should be documented in an Internet-Draft. Lastly, the DE must ensure that any other request for a code point does not conflict with work that is active or already published within the IETF.</t>
        </section>
        <section anchor="whep-protocol-extension-registration-template">
          <name>WHEP Protocol Extension Registration Template</name>
          <t>A WHEP Protocol Extension URNs is defined by completing the following template:</t>
          <ul spacing="normal">
            <li>
              <t>URN: A unique URN for the WHEP Protocol Extension.</t>
            </li>
            <li>
              <t>Reference: A formal reference to the publicly available specification</t>
            </li>
            <li>
              <t>Name: A descriptive name of the WHEP Protocol Extension extension.</t>
            </li>
            <li>
              <t>Description: A brief description of the function of the extension, in a short paragraph or two.</t>
            </li>
            <li>
              <t>Contact information: Contact information for the organization or person making the registration.</t>
            </li>
          </ul>
        </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="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="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="RFC8845">
          <front>
            <title>Framework for Telepresence Multi-Streams</title>
            <author fullname="M. Duckworth" initials="M." role="editor" surname="Duckworth"/>
            <author fullname="A. Pepperell" initials="A." surname="Pepperell"/>
            <author fullname="S. Wenger" initials="S." surname="Wenger"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document defines a framework for a protocol to enable devices in a telepresence conference to interoperate. The protocol enables communication of information about multiple media streams so a sending system and receiving system can make reasonable decisions about transmitting, selecting, and rendering the media streams. This protocol is used in addition to SIP signaling and Session Description Protocol (SDP) negotiation for setting up a telepresence session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8845"/>
          <seriesInfo name="DOI" value="10.17487/RFC8845"/>
        </reference>
        <reference anchor="RFC8838">
          <front>
            <title>Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov"/>
            <author fullname="J. Uberti" initials="J." surname="Uberti"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes "Trickle ICE", an extension to the Interactive Connectivity Establishment (ICE) protocol that enables ICE agents to begin connectivity checks while they are still gathering candidates, by incrementally exchanging candidates over time instead of all at once. This method can considerably accelerate the process of establishing a communication session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8838"/>
          <seriesInfo name="DOI" value="10.17487/RFC8838"/>
        </reference>
        <reference anchor="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="RFC8840">
          <front>
            <title>A Session Initiation Protocol (SIP) Usage for Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (Trickle ICE)</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov"/>
            <author fullname="T. Stach" initials="T." surname="Stach"/>
            <author fullname="E. Marocco" initials="E." surname="Marocco"/>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>The Interactive Connectivity Establishment (ICE) protocol describes a Network Address Translator (NAT) traversal mechanism for UDP-based multimedia sessions established with the Offer/Answer model. The ICE extension for Incremental Provisioning of Candidates (Trickle ICE) defines a mechanism that allows ICE Agents to shorten session establishment delays by making the candidate gathering and connectivity checking phases of ICE non-blocking and by executing them in parallel.</t>
              <t>This document defines usage semantics for Trickle ICE with the Session Initiation Protocol (SIP). The document also defines a new SIP Info Package to support this usage together with the corresponding media type. Additionally, a new Session Description Protocol (SDP) "end-of-candidates" attribute and a new SIP option tag "trickle-ice" are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8840"/>
          <seriesInfo name="DOI" value="10.17487/RFC8840"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
        <reference anchor="RFC8839">
          <front>
            <title>Session Description Protocol (SDP) Offer/Answer Procedures for Interactive Connectivity Establishment (ICE)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin"/>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar"/>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="A. Keränen" initials="A." surname="Keränen"/>
            <author fullname="R. Shpount" initials="R." surname="Shpount"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes Session Description Protocol (SDP) Offer/Answer procedures for carrying out Interactive Connectivity Establishment (ICE) between the agents.</t>
              <t>This document obsoletes RFCs 5245 and 6336.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8839"/>
          <seriesInfo name="DOI" value="10.17487/RFC8839"/>
        </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="RFC8830">
          <front>
            <title>WebRTC MediaStream Identification in the Session Description Protocol</title>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document specifies a Session Description Protocol (SDP) grouping mechanism for RTP media streams that can be used to specify relations between media streams.</t>
              <t>This mechanism is used to signal the association between the SDP concept of "media description" and the Web Real-Time Communication (WebRTC) concept of MediaStream/MediaStreamTrack using SDP signaling.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8830"/>
          <seriesInfo name="DOI" value="10.17487/RFC8830"/>
        </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="RFC8826">
          <front>
            <title>Security Considerations for WebRTC</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>WebRTC is a protocol suite for use with real-time applications that can be deployed in browsers -- "real-time communication on the Web". This document defines the WebRTC threat model and analyzes the security threats of WebRTC in that model.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8826"/>
          <seriesInfo name="DOI" value="10.17487/RFC8826"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</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 specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4122">
          <front>
            <title>A Universally Unique IDentifier (UUID) URN Namespace</title>
            <author fullname="P. Leach" initials="P." surname="Leach"/>
            <author fullname="M. Mealling" initials="M." surname="Mealling"/>
            <author fullname="R. Salz" initials="R." surname="Salz"/>
            <date month="July" year="2005"/>
            <abstract>
              <t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier). A UUID is 128 bits long, and can guarantee uniqueness across space and time. UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t>
              <t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group). Information from earlier versions of the DCE specification have been incorporated into this document. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4122"/>
          <seriesInfo name="DOI" value="10.17487/RFC4122"/>
        </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>
        <referencegroup anchor="BCP26" target="https://www.rfc-editor.org/info/bcp26">
          <reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126">
            <front>
              <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
              <author fullname="M. Cotton" initials="M." surname="Cotton"/>
              <author fullname="B. Leiba" initials="B." surname="Leiba"/>
              <author fullname="T. Narten" initials="T." surname="Narten"/>
              <date month="June" year="2017"/>
              <abstract>
                <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
                <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
                <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="26"/>
            <seriesInfo name="RFC" value="8126"/>
            <seriesInfo name="DOI" value="10.17487/RFC8126"/>
          </reference>
        </referencegroup>
        <referencegroup anchor="BCP9" target="https://www.rfc-editor.org/info/bcp9">
          <reference anchor="RFC2026" target="https://www.rfc-editor.org/info/rfc2026">
            <front>
              <title>The Internet Standards Process -- Revision 3</title>
              <author fullname="S. Bradner" initials="S." surname="Bradner"/>
              <date month="October" year="1996"/>
              <abstract>
                <t>This memo documents the process used by the Internet community for the standardization of protocols and procedures. It defines the stages in the standardization process, the requirements for moving a document between stages and the types of documents used during this process. 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="9"/>
            <seriesInfo name="RFC" value="2026"/>
            <seriesInfo name="DOI" value="10.17487/RFC2026"/>
          </reference>
          <reference anchor="RFC5657" target="https://www.rfc-editor.org/info/rfc5657">
            <front>
              <title>Guidance on Interoperation and Implementation Reports for Advancement to Draft Standard</title>
              <author fullname="L. Dusseault" initials="L." surname="Dusseault"/>
              <author fullname="R. Sparks" initials="R." surname="Sparks"/>
              <date month="September" year="2009"/>
              <abstract>
                <t>Advancing a protocol to Draft Standard requires documentation of the interoperation and implementation of the protocol. Historic reports have varied widely in form and level of content and there is little guidance available to new report preparers. This document updates the existing processes and provides more detail on what is appropriate in an interoperability and implementation report. 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="9"/>
            <seriesInfo name="RFC" value="5657"/>
            <seriesInfo name="DOI" value="10.17487/RFC5657"/>
          </reference>
          <reference anchor="RFC6410" target="https://www.rfc-editor.org/info/rfc6410">
            <front>
              <title>Reducing the Standards Track to Two Maturity Levels</title>
              <author fullname="R. Housley" initials="R." surname="Housley"/>
              <author fullname="D. Crocker" initials="D." surname="Crocker"/>
              <author fullname="E. Burger" initials="E." surname="Burger"/>
              <date month="October" year="2011"/>
              <abstract>
                <t>This document updates the Internet Engineering Task Force (IETF) Standards Process defined in RFC 2026. Primarily, it reduces the Standards Process from three Standards Track maturity levels to two. This memo documents an Internet Best Current Practice.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="6410"/>
            <seriesInfo name="DOI" value="10.17487/RFC6410"/>
          </reference>
          <reference anchor="RFC7100" target="https://www.rfc-editor.org/info/rfc7100">
            <front>
              <title>Retirement of the "Internet Official Protocol Standards" Summary Document</title>
              <author fullname="P. Resnick" initials="P." surname="Resnick"/>
              <date month="December" year="2013"/>
              <abstract>
                <t>This document updates RFC 2026 to no longer use STD 1 as a summary of "Internet Official Protocol Standards". It obsoletes RFC 5000 and requests the IESG to move RFC 5000 (and therefore STD 1) to Historic status.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="7100"/>
            <seriesInfo name="DOI" value="10.17487/RFC7100"/>
          </reference>
          <reference anchor="RFC7127" target="https://www.rfc-editor.org/info/rfc7127">
            <front>
              <title>Characterization of Proposed Standards</title>
              <author fullname="O. Kolkman" initials="O." surname="Kolkman"/>
              <author fullname="S. Bradner" initials="S." surname="Bradner"/>
              <author fullname="S. Turner" initials="S." surname="Turner"/>
              <date month="January" year="2014"/>
              <abstract>
                <t>RFC 2026 describes the review performed by the Internet Engineering Steering Group (IESG) on IETF Proposed Standard RFCs and characterizes the maturity level of those documents. This document updates RFC 2026 by providing a current and more accurate characterization of Proposed Standards.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="7127"/>
            <seriesInfo name="DOI" value="10.17487/RFC7127"/>
          </reference>
          <reference anchor="RFC7475" target="https://www.rfc-editor.org/info/rfc7475">
            <front>
              <title>Increasing the Number of Area Directors in an IETF Area</title>
              <author fullname="S. Dawkins" initials="S." surname="Dawkins"/>
              <date month="March" year="2015"/>
              <abstract>
                <t>This document removes a limit on the number of Area Directors who manage an Area in the definition of "IETF Area". This document updates RFC 2026 (BCP 9) and RFC 2418 (BCP 25).</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="7475"/>
            <seriesInfo name="DOI" value="10.17487/RFC7475"/>
          </reference>
          <reference anchor="RFC8789" target="https://www.rfc-editor.org/info/rfc8789">
            <front>
              <title>IETF Stream Documents Require IETF Rough Consensus</title>
              <author fullname="J. Halpern" initials="J." role="editor" surname="Halpern"/>
              <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla"/>
              <date month="June" year="2020"/>
              <abstract>
                <t>This document requires that the IETF never publish any IETF Stream RFCs without IETF rough consensus. This updates RFC 2026.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="8789"/>
            <seriesInfo name="DOI" value="10.17487/RFC8789"/>
          </reference>
          <reference anchor="RFC9282" target="https://www.rfc-editor.org/info/rfc9282">
            <front>
              <title>Responsibility Change for the RFC Series</title>
              <author fullname="B. Rosen" initials="B." surname="Rosen"/>
              <date month="June" year="2022"/>
              <abstract>
                <t>In RFC 9280, responsibility for the RFC Series moved to the RFC Series Working Group and the RFC Series Approval Board. It is no longer the responsibility of the RFC Editor, and the role of the IAB in the RFC Series is altered. Accordingly, in Section 2.1 of RFC 2026, the sentence "RFC publication is the direct responsibility of the RFC Editor, under the general direction of the IAB" is deleted.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="9"/>
            <seriesInfo name="RFC" value="9282"/>
            <seriesInfo name="DOI" value="10.17487/RFC9282"/>
          </reference>
        </referencegroup>
      </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="7" month="February" 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-13"/>
        </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 805?>



  </back>
  <!-- ##markdown-source:
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
Bp1ep+zKNX5YRKw1fQgdEbrDqxIpRH0kskh0Cqf5h1XpYcCdbjIKFThvCOnZ
xPynQF5Kch72+uoqi0yUTL0M4qXnyGgiDFNhSWwMpKpBD40B04JFM1DtZuyK
H9goef/EB+xa9KMDWmXBxl08Ojw5pHA8bVPgT2VEeZm82LsPQUtVVYgJ/O2U
2nXxhn53qN6kNUEGPZoEtXBTTIqzQ8Wu1ylWWiVK463NNsDRcUK7BqcBDjIt
v0dBED4YSJd8MKCc008J1Nu15UAeGG6gSDQ2J6EPzBQ62z9ONpFn4jDkhSVa
Rjk1tFpiXxCdf0s7opPCDuLw0exbTVtPyVOrCatV8tYOj48adUllj2WG2bwm
m65zkY/vnRSdq/7m71nafXf29q/Dnz78+Je/BT+cvdjEPT8pZnByfDQ47h0P
VU9twrXq9/r9/lG33x+o3mm/06WikKPe8dHQpMYYEwG2rKtoboVz6zB4G/Do
zzIYHveO+oOTw4EzS+90eHRy7Obg9Gmiw8+aqO9NNDweDPr9k34f5imma9U7
7J30T7rD4bGzmlM7AbxD0VFpjfDZC+v3DofHx4PuyaE7YW8I4s9f2C+aE9cI
SgpDaFZGeEmULuM/lAwTeA6067BpTsf8l2dy3mbORPjATdvjn8gX86w0OeM5
5ZZGHA1wDxLSKagUPAUhYbc7JQdr4LIYTJ4Mqy5MNyuQvSR4KgLHOw/BBWJu
hdvWAKdyIuhl3U/GFw3IZj5CxyGD3asAWairSSoOeRKWjaOlVMiYJT4U4Pez
kcpHGB7Gq3aNlevg32xWkTVLtfUFYJhTvPAxVKm8oI55INC2TqSh5Dkglh5Q
UrUJJVrl4I+6x0RTpJaU5Rih1nRLaYzNnO40CFjB+X3hcFOxyA6+2hXZKWPX
uhmdxk28ipdBxi2U4tKLbrTvU6sc56JCr/+XfI3xl1jOLguJOfqAseZYzgH/
0WbrtPnb5hPtZdVoeIdreSFlrWhxwbTzSBdIabsCPXJjSptjDMfN302fTt2Y
dO2ypqsckQgqtVWN+HjjiK0bba4vjLxLtnVWpHDY4zxTrmXTfrFnDTEu6zlX
F8zhyBSPMeGXViX/UOfI6DS8x09Cy0ermkkRAKDcDFuZ+rEFTMLFVl5Sy+hw
9I7ApX90NV7maUsH3UoZPVJCbN3XneRaE3WZplk1HKqX4oSTtHVtZvWInQQ3
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
/w9IkJkMXNAAAA==

-->

</rfc>
