瀏覽代碼

Replaced draft-ietf-tsvwg-rtcweb-qos by RFC 8837 in comments

Paul-Louis Ageneau 4 年之前
父節點
當前提交
dcee67399e
共有 5 個文件被更改,包括 5 次插入5 次删除
  1. 1 1
      README.md
  2. 1 1
      deps/libjuice
  3. 1 1
      src/impl/dtlssrtptransport.cpp
  4. 1 1
      src/impl/sctptransport.cpp
  5. 1 1
      src/impl/track.cpp

+ 1 - 1
README.md

@@ -141,8 +141,8 @@ Features:
 - SCTP over DTLS with SDP offer/answer ([RFC8841](https://tools.ietf.org/html/rfc8841))
 - DTLS with ECDSA or RSA keys ([RFC8824](https://tools.ietf.org/html/rfc8827))
 - SRTP and SRTCP key derivation from DTLS ([RFC5764](https://tools.ietf.org/html/rfc5764))
+- Differentiated Services QoS ([RFC8837](https://tools.ietf.org/html/rfc8837)) where possible
 - Multicast DNS candidates ([draft-ietf-rtcweb-mdns-ice-candidates-04](https://tools.ietf.org/html/draft-ietf-rtcweb-mdns-ice-candidates-04))
-- Differentiated Services QoS ([draft-ietf-tsvwg-rtcweb-qos-18](https://tools.ietf.org/html/draft-ietf-tsvwg-rtcweb-qos-18))
 
 Note only SDP BUNDLE mode is supported for media multiplexing ([RFC8843](https://tools.ietf.org/html/rfc8843)). The behavior is equivalent to the JSEP bundle-only policy: the library always negociates one unique network component, where SRTP media streams are multiplexed with SRTCP control packets ([RFC5761](https://tools.ietf.org/html/rfc5761)) and SCTP/DTLS data traffic ([RFC8261](https://tools.ietf.org/html/rfc8261)).
 

+ 1 - 1
deps/libjuice

@@ -1 +1 @@
-Subproject commit 595f506696eff2c3767b83d16dac29f9567fb128
+Subproject commit 05275e12ad94f61b2ad1d5fc29c2d513bf373038

+ 1 - 1
src/impl/dtlssrtptransport.cpp

@@ -141,7 +141,7 @@ bool DtlsSrtpTransport::sendMedia(message_ptr message) {
 
 	if (message->dscp == 0) { // Track might override the value
 		// Set recommended medium-priority DSCP value
-		// See https://tools.ietf.org/html/draft-ietf-tsvwg-rtcweb-qos-18
+		// See https://datatracker.ietf.org/doc/html/rfc8837#section-5
 		message->dscp = 36; // AF42: Assured Forwarding class 4, medium drop probability
 	}
 

+ 1 - 1
src/impl/sctptransport.cpp

@@ -455,7 +455,7 @@ void SctpTransport::incoming(message_ptr message) {
 
 bool SctpTransport::outgoing(message_ptr message) {
 	// Set recommended medium-priority DSCP value
-	// See https://tools.ietf.org/html/draft-ietf-tsvwg-rtcweb-qos-18
+	// See https://datatracker.ietf.org/doc/html/rfc8837#section-5
 	message->dscp = 10; // AF11: Assured Forwarding class 1, low drop probability
 	return Transport::outgoing(std::move(message));
 }

+ 1 - 1
src/impl/track.cpp

@@ -165,7 +165,7 @@ bool Track::transportSend([[maybe_unused]] message_ptr message) {
 			throw std::runtime_error("Track is closed");
 
 		// Set recommended medium-priority DSCP value
-		// See https://tools.ietf.org/html/draft-ietf-tsvwg-rtcweb-qos-18
+		// See https://datatracker.ietf.org/doc/html/rfc8837#section-5
 		if (mMediaDescription.type() == "audio")
 			message->dscp = 46; // EF: Expedited Forwarding
 		else