Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_ |
| OLD | NEW |