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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
252 IceRole ice_role_; | 252 IceRole ice_role_; |
253 uint64_t tiebreaker_; | 253 uint64_t tiebreaker_; |
254 uint32_t remote_candidate_generation_; | 254 uint32_t remote_candidate_generation_; |
255 IceGatheringState gathering_state_; | 255 IceGatheringState gathering_state_; |
256 | 256 |
257 int check_receiving_delay_; | 257 int check_receiving_delay_; |
258 int receiving_timeout_; | 258 int receiving_timeout_; |
259 uint32_t last_ping_sent_ms_ = 0; | 259 uint32_t last_ping_sent_ms_ = 0; |
260 bool gather_continually_ = false; | 260 bool gather_continually_ = false; |
261 int weak_ping_delay_ = WEAK_PING_DELAY; | 261 int weak_ping_delay_ = WEAK_PING_DELAY; |
262 // Keep a set of old remote ufrags so that we know whether a ufrag is new. | |
263 std::set<std::string> old_remote_ufrags_; | |
pthatcher1
2015/12/04 20:43:50
I think a good name for this would be remote_gener
honghaiz3
2015/12/09 23:57:54
Done. added the pwd there too.
| |
262 | 264 |
263 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); | 265 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); |
264 }; | 266 }; |
265 | 267 |
266 } // namespace cricket | 268 } // namespace cricket |
267 | 269 |
268 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ | 270 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ |
OLD | NEW |