<?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.11 (Ruby 2.7.0) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-wish-whip-03" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title abbrev="whip">WebRTC-HTTP ingestion protocol (WHIP)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-wish-whip-03"/>
    <author initials="S." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>CoSMo Software</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="2022" month="June" day="09"/>
    <area>ART</area>
    <workgroup>wish</workgroup>
    <keyword>WebRTC</keyword>
    <abstract>
      <t>While WebRTC has been very successful in a wide range of scenarios, its adoption in the broadcasting/streaming industry is lagging behind.
Currently there is no standard protocol (like SIP or RTSP) designed for ingesting media into a streaming service using WebRTC and so content providers still rely heavily on protocols like RTMP for it.</t>
      <t>These protocols are much older than WebRTC and by default lack some important security and resilience features provided by WebRTC with minimal overhead and additional latency.</t>
      <t>The media codecs used for ingestion in older protocols tend to be limited and not negotiated. WebRTC includes support for negotiation of codecs, potentially alleviating transcoding on the ingest node (which can introduce delay and degrade media quality). Server side transcoding that has traditionally been done to present multiple renditions in Adaptive Bit Rate Streaming (ABR) implementations can be replaced with simulcasting and SVC codecs that are well supported by WebRTC clients. In addition, WebRTC clients can adjust client-side encoding parameters based on RTCP feedback to maximize encoding quality.</t>
      <t>Encryption is mandatory in WebRTC, therefore secure transport of media is implicit.</t>
      <t>This document proposes a simple HTTP based protocol that will allow WebRTC based ingest of content into streaming services and/or CDNs.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>RTCWEB standardized JSEP (<xref target="RFC8829"/>), a mechanism used to control the setup, management, and teardown of a multimedia session, how to apply it using the SDP Offer/Answer model and all the formats for the data sent over the wire (media, codec, encryption, ...). Also, 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>In the broadcasting/streaming world, the usage of hardware encoders that make it very simple to plug in (SDI) cables carrying raw media, encode it in place, and push it to any streaming service or CDN ingest is already ubiquitous. It is the adoption of a custom signaling transport protocol for each WebRTC service has hindered broader adoption as an ingestion protocol.</t>
      <t>While some standard signaling protocols are available that can be integrated with WebRTC, like SIP or XMPP, they are not designed to be used in broadcasting/streaming services, and there also is no sign of adoption in that industry. RTSP, which is based on RTP and may be the closest in terms of features to WebRTC, is not compatible with the WebRTC SDP offer/answer model.</t>
      <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-alvestrand-rtcweb-gateways"/>.</t>
      <t>This document proposes a simple protocol for supporting WebRTC as media ingestion method which is:</t>
      <ul spacing="normal">
        <li>Easy to implement,</li>
        <li>As easy to use as current RTMP URIs.</li>
        <li>Fully compliant with WebRTC and RTCWEB specs.</li>
        <li>Allows for both ingest in traditional media platforms and ingest 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>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 tracks or streams can be added or removed 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 setup an ingestion session, the WHIP client will generate an SDP offer according to the JSEP rules and do an HTTP POST request to the WHIP endpoint configured 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 and the SDP answer as the body and a Location header 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>
      <t>Once a session is setup, ICE consent freshness <xref target="RFC7675"/> will be used to detect abrupt disconnection and DTLS teardown for session termination by either side.</t>
      <t>To explicitly terminate the session, the WHIP client <bcp14>MUST</bcp14> perform an HTTP DELETE request to the resource URL returned in the Location header 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 HTTP 405 response for any HTTP GET, HEAD or PUT requests on the resource URL in order to reserve its usage for future versions of this protocol specification.</t>
      <t>The WHIP resources <bcp14>MUST</bcp14> return an HTTP 405 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 only contain local candidates or even an empty list of candidates.</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 an ICE restarts <xref target="RFC8863"/> by sending a 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"/> with the new ICE candidate or ICE ufrag/pwd for ICE restarts.</t>
        <t>Trickle ICE and ICE restart support is <bcp14>OPTIONAL</bcp14> for a WHIP resource. If Trickle ICE or ICE restarts are not supported by the WHIP resource, it <bcp14>MUST</bcp14> return a 405 Method Not Allowed response for any HTTP PATCH request.</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="RFC7232"/> section 2.3. The initial value of the entity-tag identifying  the initial ICE session <bcp14>MUST</bcp14> be returned in an ETag header in the 201 response to the initial POST request to the WHIP endpoint and in the 200 OK of a PATCH request that triggers an ICE restart.</t>
        <artwork><![CDATA[
POST /whip/endpoint HTTP/1.1
Host: whip.example.com
Content-Type: application/sdp

<SDP Offer>

HTTP/1.1 201 Created
ETag: "38sdf4fdsf54:EsAw"
Content-Type: application/sdp
Location: https://whip.example.org/resource/id

<SDP answer>
]]></artwork>
        <t>A WHIP client sending a PATCH request for performing trickle ICE <bcp14>MUST</bcp14> contain an If-Match header with the latest known entity-tag as per <xref target="RFC7232"/> section 3.1. When the PATCH request is received by the WHIP resource, it <bcp14>MUST</bcp14> compare the entity-tag value requested with the current entinty-tag of the resource as per <xref target="RFC7232"/> section 3.1 and return a 412 Precondition Failed response if they do not match. Entity-tag validation <bcp14>MUST</bcp14> only be used for HTTP requests requiring to match a known ICE session  and <bcp14>SHOULD NOT</bcp14> be used otherwise, for example in the HTTP DELETE request to terminate the 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 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: "38sdf4fdsf54:EsAw"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 548

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

HTTP/1.1 204 No Content
]]></artwork>
        </figure>
        <t>A WHIP client sending a PATCH request for performing ICE restart <bcp14>MUST</bcp14> contain an If-Match header with a field-value "*" as per <xref target="RFC7232"/> 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, the new set of ICE candidates for the media server and the new entity-tag correspond to the new ICE session in an ETag response header.</t>
        <t>If the ICE request can not be performed by the WHIP resource it <bcp14>MUST</bcp14> return an appropriate  HTTP error code but <bcp14>MUST NOT</bcp14> terminate the session immediately. The WHIP client <bcp14>MAY</bcp14> try again to perform a new ICE restart or terminate the session issuing a 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 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: "289b31b754eaa438:ysXw"
Content-Type: application/trickle-ice-sdpfrag
Content-Length: 102

a=ice-lite
a=ice-ufrag:289b31b754eaa438
a=ice-pwd:0b66f472495ef0ccac7bda653ab6be49ea13114472a5d10a
]]></artwork>
        </figure>
        <t>Given that in order to send new ICE candidates to the WHIP resource, the WHIP client needs to know the entity-tag associated to the ICE session, it <bcp14>MUST</bcp14> buffer any gathered candidates before the HTTP response to the initial PUT request or the PATCH request with the new entity-tag value is received. Once the entity-tag value is known 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/pwd frags and ignore any further HTTP PATCH response received from a pending HTTP PATCH request and 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 info 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 order to reduce the complexity of implementing WHIP in both clients and media servers, some restrictions regarding WebRTC usage are made.</t>
        <t>SDP bundle <bcp14>SHALL</bcp14> be used by both the WHIP client and the media server. The SDP offer created by the WHIP client must include the bundle-only attribute in all m-lines as per <xref target="RFC8843"/>. Also, RTCP muxing <bcp14>SHALL</bcp14> be supported by both the WHIP client and the media server.</t>
        <t>Unlike <xref target="RFC5763"/> a WHIP client <bcp14>MAY</bcp14> use a setup attribute value of setup:active in the SDP offer, in which case the WHIP endpoint <bcp14>MUST</bcp14> use a setup attribute value of setup:passive in the SDP answer.</t>
      </section>
      <section anchor="load-balancing-and-redirections">
        <name>Load balancing and redirections</name>
        <t>WHIP endpoints and media servers may 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 code in the initial HTTP response to the WHIP endpoint URL. The WHIP resource URL <bcp14>MUST</bcp14> be a final one, and redirections are not required to be supported for the PATCH and DELETE request sent to it.</t>
        <t>In case of high load, the WHIP endpoints <bcp14>MAY</bcp14> return a 503 (Service Unavailable) status code 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 ICE 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 ICE server will be returned on a Link header with a "rel" attribute value of "ice-server" where the Link target URI is the ICE server URL and the credentials are encoded in the Link target attributes as follows:</t>
        <ul spacing="normal">
          <li>username: If the Link header 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 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 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>There are some webrtc implementations that do not support updating the ICE server configuration after the local offer has been created. In order to support these clients, the WHIP endpoint <bcp14>MAY</bcp14> also include the ICE server configuration on the responses to an authenticated OPTIONS request sent to the WHIP endpoint URL sent before the POST requests.</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 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 in all HTTP requests sent to either the WHIP endpoint or resource.</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.</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 must not be sent in any request.</t>
      </section>
      <section anchor="simulcast-and-scalable-video-coding">
        <name>Simulcast and scalable video coding</name>
        <t>Both simulcast and scalable video coding (including K-SVC modes) <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>
      </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 on 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 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 values at IANA starting with the prefix: "urn:ietf:params:whip:".</t>
        <t>For example, taking 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 will be returned in the initial HTTP "201 Created" response with a "Link" header and a "rel" attribute of "urn:ietf:params:whip:server-sent-events".</t>
        <t>The HTTP 201 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.org/resource/id
Link: <https://whip.ietf.org/publications/213786HF/sse>;rel="urn:ietf:params:whip: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>The link relation types below have been registered by IANA per Section 4.2 of <xref target="RFC8288"/>.</t>
      <section anchor="link-relation-type-ice-server">
        <name>Link Relation Type: ice-server</name>
        <t>Relation Name:  ice-server</t>
        <t>Description:  Describe the STUN and TURN servers that can be used by the ICE Agent to establish a connection with a peer.</t>
        <t>Reference:  TBD</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC7675" target="https://www.rfc-editor.org/info/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="RFC8840" target="https://www.rfc-editor.org/info/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="RFC8853" target="https://www.rfc-editor.org/info/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="RFC8863" target="https://www.rfc-editor.org/info/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="RFC8829" target="https://www.rfc-editor.org/info/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="RFC2119" target="https://www.rfc-editor.org/info/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" target="https://www.rfc-editor.org/info/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="RFC7232" target="https://www.rfc-editor.org/info/rfc7232">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP/1.1 conditional requests, including metadata header fields for indicating state changes, request header fields for making preconditions on such state, and rules for constructing the responses to a conditional request when one or more preconditions evaluate to false.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7232"/>
          <seriesInfo name="DOI" value="10.17487/RFC7232"/>
        </reference>
        <reference anchor="RFC8843" target="https://www.rfc-editor.org/info/rfc8843">
          <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="January" year="2021"/>
            <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>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8843"/>
          <seriesInfo name="DOI" value="10.17487/RFC8843"/>
        </reference>
        <reference anchor="RFC5763" target="https://www.rfc-editor.org/info/rfc5763">
          <front>
            <title>Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS)</title>
            <author fullname="J. Fischl" initials="J." surname="Fischl">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies how to use the Session Initiation Protocol (SIP) to establish a Secure Real-time Transport Protocol (SRTP) security context using the Datagram Transport Layer Security (DTLS) protocol.  It describes a mechanism of transporting a fingerprint attribute in the Session Description Protocol (SDP) that identifies the key that will be presented during the DTLS handshake.  The key exchange travels along the media path as opposed to the signaling path.  The SIP Identity mechanism can be used to protect the integrity of the fingerprint attribute from modification by intermediate proxies.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5763"/>
          <seriesInfo name="DOI" value="10.17487/RFC5763"/>
        </reference>
        <reference anchor="RFC8489" target="https://www.rfc-editor.org/info/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" target="https://www.rfc-editor.org/info/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" target="https://www.rfc-editor.org/info/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="RFC8288" target="https://www.rfc-editor.org/info/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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.draft-alvestrand-rtcweb-gateways" target="https://www.ietf.org/archive/id/draft-alvestrand-rtcweb-gateways-02.txt">
          <front>
            <title>WebRTC Gateways</title>
            <author fullname="Harald Alvestrand">
	 </author>
            <author fullname="Uwe Rauschenbach">
	 </author>
            <date day="9" month="March" year="2015"/>
            <abstract>
              <t>   This document specifies conformance requirements 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-alvestrand-rtcweb-gateways-02"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
X/+o+d5JvH0ziv4PsRRnewRaAAA=

-->

</rfc>
