We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916bf2f commit 303113aCopy full SHA for 303113a
p2p/base/p2p_transport_channel.cc
@@ -773,6 +773,13 @@ void P2PTransportChannel::ParseFieldTrials(
773
if (!ice_field_trials_.enable_goog_delta) {
774
stun_dict_writer_.Disable();
775
}
776
+
777
+ if (field_trials->IsEnabled("WebRTC-RFC8888CongestionControlFeedback")) {
778
+ int desired_recv_esn = 1;
779
+ RTC_LOG(LS_INFO) << "Set WebRTC-RFC8888CongestionControlFeedback: Enable "
780
+ "and set ECN recving mode";
781
+ SetOption(rtc::Socket::OPT_RECV_ECN, desired_recv_esn);
782
+ }
783
784
785
const IceConfig& P2PTransportChannel::config() const {
0 commit comments