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

Side by Side Diff: webrtc/p2p/base/p2ptransportchannel.h

Issue 1411883002: Add experiment on weak ping delay during call set up time (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 IceMode remote_ice_mode_; 244 IceMode remote_ice_mode_;
245 IceRole ice_role_; 245 IceRole ice_role_;
246 uint64_t tiebreaker_; 246 uint64_t tiebreaker_;
247 uint32_t remote_candidate_generation_; 247 uint32_t remote_candidate_generation_;
248 IceGatheringState gathering_state_; 248 IceGatheringState gathering_state_;
249 249
250 int check_receiving_delay_; 250 int check_receiving_delay_;
251 int receiving_timeout_; 251 int receiving_timeout_;
252 uint32_t last_ping_sent_ms_ = 0; 252 uint32_t last_ping_sent_ms_ = 0;
253 bool gather_continually_ = false; 253 bool gather_continually_ = false;
254 int weak_ping_delay_ = 0;
pthatcher1 2015/10/16 21:30:31 I think it would be safer to make this = WEAK_PING
254 255
255 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); 256 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel);
256 }; 257 };
257 258
258 } // namespace cricket 259 } // namespace cricket
259 260
260 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ 261 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | webrtc/p2p/base/p2ptransportchannel.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698