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

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

Issue 1762863002: Renaming variables in p2ptransportchannel to be consistent. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix comments Created 4 years, 9 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
« no previous file with comments | « webrtc/p2p/base/faketransportcontroller.h ('k') | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 16 matching lines...) Expand all
27 #include "webrtc/p2p/base/candidate.h" 27 #include "webrtc/p2p/base/candidate.h"
28 #include "webrtc/p2p/base/p2ptransport.h" 28 #include "webrtc/p2p/base/p2ptransport.h"
29 #include "webrtc/p2p/base/portallocator.h" 29 #include "webrtc/p2p/base/portallocator.h"
30 #include "webrtc/p2p/base/portinterface.h" 30 #include "webrtc/p2p/base/portinterface.h"
31 #include "webrtc/p2p/base/transportchannelimpl.h" 31 #include "webrtc/p2p/base/transportchannelimpl.h"
32 #include "webrtc/base/asyncpacketsocket.h" 32 #include "webrtc/base/asyncpacketsocket.h"
33 #include "webrtc/base/sigslot.h" 33 #include "webrtc/base/sigslot.h"
34 34
35 namespace cricket { 35 namespace cricket {
36 36
37 extern const uint32_t WEAK_PING_DELAY; 37 extern const int WEAK_PING_INTERVAL;
38 38
39 struct IceParameters { 39 struct IceParameters {
40 std::string ufrag; 40 std::string ufrag;
41 std::string pwd; 41 std::string pwd;
42 IceParameters(const std::string& ice_ufrag, const std::string& ice_pwd) 42 IceParameters(const std::string& ice_ufrag, const std::string& ice_pwd)
43 : ufrag(ice_ufrag), pwd(ice_pwd) {} 43 : ufrag(ice_ufrag), pwd(ice_pwd) {}
44 44
45 bool operator==(const IceParameters& other) { 45 bool operator==(const IceParameters& other) {
46 return ufrag == other.ufrag && pwd == other.pwd; 46 return ufrag == other.ufrag && pwd == other.pwd;
47 } 47 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 const std::string& ice_pwd) override; 85 const std::string& ice_pwd) override;
86 void SetRemoteIceCredentials(const std::string& ice_ufrag, 86 void SetRemoteIceCredentials(const std::string& ice_ufrag,
87 const std::string& ice_pwd) override; 87 const std::string& ice_pwd) override;
88 void SetRemoteIceMode(IceMode mode) override; 88 void SetRemoteIceMode(IceMode mode) override;
89 void Connect() override; 89 void Connect() override;
90 void MaybeStartGathering() override; 90 void MaybeStartGathering() override;
91 IceGatheringState gathering_state() const override { 91 IceGatheringState gathering_state() const override {
92 return gathering_state_; 92 return gathering_state_;
93 } 93 }
94 void AddRemoteCandidate(const Candidate& candidate) override; 94 void AddRemoteCandidate(const Candidate& candidate) override;
95 // Sets the receiving timeout and gather_continually. 95 // Sets the parameters in IceConfig. We do not set them blindly. Instead, we
96 // This also sets the check_receiving_delay proportionally. 96 // only update the parameter if it is considered set in |config|. For example,
97 // a negative value of receiving_timeout will be considered "not set" and we
98 // will not use it to update the respective parameter in |config_|.
97 void SetIceConfig(const IceConfig& config) override; 99 void SetIceConfig(const IceConfig& config) override;
98 const IceConfig& config() const; 100 const IceConfig& config() const;
99 101
100 // From TransportChannel: 102 // From TransportChannel:
101 int SendPacket(const char* data, 103 int SendPacket(const char* data,
102 size_t len, 104 size_t len,
103 const rtc::PacketOptions& options, 105 const rtc::PacketOptions& options,
104 int flags) override; 106 int flags) override;
105 int SetOption(rtc::Socket::Option opt, int value) override; 107 int SetOption(rtc::Socket::Option opt, int value) override;
106 bool GetOption(rtc::Socket::Option opt, int* value) override; 108 bool GetOption(rtc::Socket::Option opt, int* value) override;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 return false; 161 return false;
160 } 162 }
161 163
162 // Set DTLS Remote fingerprint. Must be after local identity set. 164 // Set DTLS Remote fingerprint. Must be after local identity set.
163 bool SetRemoteFingerprint(const std::string& digest_alg, 165 bool SetRemoteFingerprint(const std::string& digest_alg,
164 const uint8_t* digest, 166 const uint8_t* digest,
165 size_t digest_len) override { 167 size_t digest_len) override {
166 return false; 168 return false;
167 } 169 }
168 170
169 int receiving_timeout() const { return config_.receiving_timeout_ms; } 171 int receiving_timeout() const { return config_.receiving_timeout; }
170 int check_receiving_delay() const { return check_receiving_delay_; } 172 int check_receiving_interval() const { return check_receiving_interval_; }
171 173
172 // Helper method used only in unittest. 174 // Helper method used only in unittest.
173 rtc::DiffServCodePoint DefaultDscpValue() const; 175 rtc::DiffServCodePoint DefaultDscpValue() const;
174 176
175 // Public for unit tests. 177 // Public for unit tests.
176 Connection* FindNextPingableConnection(); 178 Connection* FindNextPingableConnection();
177 void MarkConnectionPinged(Connection* conn); 179 void MarkConnectionPinged(Connection* conn);
178 180
179 // Public for unit tests. 181 // Public for unit tests.
180 const std::vector<Connection*>& connections() const { return connections_; } 182 const std::vector<Connection*>& connections() const { return connections_; }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 typedef std::map<rtc::Socket::Option, int> OptionMap; 312 typedef std::map<rtc::Socket::Option, int> OptionMap;
311 OptionMap options_; 313 OptionMap options_;
312 std::string ice_ufrag_; 314 std::string ice_ufrag_;
313 std::string ice_pwd_; 315 std::string ice_pwd_;
314 std::vector<IceParameters> remote_ice_parameters_; 316 std::vector<IceParameters> remote_ice_parameters_;
315 IceMode remote_ice_mode_; 317 IceMode remote_ice_mode_;
316 IceRole ice_role_; 318 IceRole ice_role_;
317 uint64_t tiebreaker_; 319 uint64_t tiebreaker_;
318 IceGatheringState gathering_state_; 320 IceGatheringState gathering_state_;
319 321
320 int check_receiving_delay_; 322 int check_receiving_interval_;
321 uint32_t last_ping_sent_ms_ = 0; 323 uint32_t last_ping_sent_ms_ = 0;
322 int weak_ping_delay_ = WEAK_PING_DELAY; 324 int weak_ping_interval_ = WEAK_PING_INTERVAL;
323 TransportChannelState state_ = TransportChannelState::STATE_INIT; 325 TransportChannelState state_ = TransportChannelState::STATE_INIT;
324 IceConfig config_; 326 IceConfig config_;
325 327
326 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); 328 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel);
327 }; 329 };
328 330
329 } // namespace cricket 331 } // namespace cricket
330 332
331 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ 333 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/faketransportcontroller.h ('k') | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698