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 1498993002: Add ufrag to the ICE candidate signaling. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698