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

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

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

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

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

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

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

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

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


              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rtcweb-gateways-02"/>
        </reference>
        <reference anchor="W3C.REC-webrtc-20210126" target="https://www.w3.org/TR/2021/REC-webrtc-20210126/">
          <front>
            <title>WebRTC 1.0: Real-Time Communication Between Browsers</title>
            <author fullname="Cullen Jennings" role="editor"/>
            <author fullname="Henrik Boström" role="editor"/>
            <author fullname="Jan-Ivar Bruaroey" role="editor"/>
            <date day="26" month="January" year="2021"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-webrtc-20210126"/>
          <seriesInfo name="W3C" value="REC-webrtc-20210126"/>
        </reference>
        <reference anchor="RFC8141">
          <front>
            <title>Uniform Resource Names (URNs)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="April" year="2017"/>
            <abstract>
              <t>A Uniform Resource Name (URN) is a Uniform Resource Identifier (URI) that is assigned under the "urn" URI scheme and a particular URN namespace, with the intent that the URN will be a persistent, location-independent resource identifier.  With regard to URN syntax, this document defines the canonical syntax for URNs (in a way that is consistent with URI syntax), specifies methods for determining URN-equivalence, and discusses URI conformance.  With regard to URN namespaces, this document specifies a method for defining a URN namespace and associating it with a namespace identifier, and it describes procedures for registering namespace identifiers with the Internet Assigned Numbers Authority (IANA).  This document obsoletes both RFCs 2141 and 3406.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8141"/>
          <seriesInfo name="DOI" value="10.17487/RFC8141"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
jwAA

-->

</rfc>
