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

Unified Diff: webrtc/p2p/base/jseptransport.h

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/p2p/base/jseptransport.h
diff --git a/webrtc/p2p/base/jseptransport.h b/webrtc/p2p/base/jseptransport.h
index c7998ba0fb46aca846bced52544916a038a17cb5..5882987dd48c2046320918aa8e9597312be524df 100644
--- a/webrtc/p2p/base/jseptransport.h
+++ b/webrtc/p2p/base/jseptransport.h
@@ -187,6 +187,11 @@ struct IceConfig {
// Default nomination mode if the remote does not support renomination.
NominationMode default_nomination_mode = NominationMode::SEMI_AGGRESSIVE;
+ // ICE checks (STUN pings) will not be sent at higher rate (lower interval)
+ // than this, no matter what other settings there are.
+ // Measure in milliseconds.
Taylor Brandstetter 2017/02/02 07:03:55 nit: This can match the other comment
+ rtc::Optional<int> min_ping_interval;
Taylor Brandstetter 2017/02/02 07:03:55 nit: Would prefer more consistent naming between "
skvlad 2017/02/02 08:51:25 Renamed to ice_check_min_interval. "ICE" is really
+
IceConfig() {}
IceConfig(int receiving_timeout_ms,
int backup_connection_ping_interval,

Powered by Google App Engine
This is Rietveld 408576698