Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Unified Diff: webrtc/pc/webrtcsession.cc

Issue 2670053002: Allow applications to limit the ICE check rate through RTCConfiguration (Closed)
Patch Set: Update tests that relied on the wrong timeouts Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/pc/webrtcsession.cc
diff --git a/webrtc/pc/webrtcsession.cc b/webrtc/pc/webrtcsession.cc
index a02aa5796a3325ab77129c8a28e561bdfbaa594f..17c2a767f682b6de9c2a2693ca8fdeed3919ac5f 100644
--- a/webrtc/pc/webrtcsession.cc
+++ b/webrtc/pc/webrtcsession.cc
@@ -1189,6 +1189,7 @@ cricket::IceConfig WebRtcSession::ParseIceConfig(
ice_config.continual_gathering_policy = gathering_policy;
ice_config.presume_writable_when_fully_relayed =
config.presume_writable_when_fully_relayed;
+ ice_config.min_ping_interval = config.ice_check_min_interval;
return ice_config;
}

Powered by Google App Engine
This is Rietveld 408576698