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

Side by Side Diff: webrtc/base/network.h

Issue 1421433003: Fix CreateNetworks to stop it from signaling duplicate networks changed events (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fix the other half of the bug in network manager Created 5 years, 1 month 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 | « no previous file | webrtc/base/network.cc » ('j') | webrtc/base/network.cc » ('J')
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // return the current permission state of GetNetworks() 92 // return the current permission state of GetNetworks()
93 virtual EnumerationPermission enumeration_permission() const; 93 virtual EnumerationPermission enumeration_permission() const;
94 94
95 // "AnyAddressNetwork" is a network which only contains single "any address" 95 // "AnyAddressNetwork" is a network which only contains single "any address"
96 // IP address. (i.e. INADDR_ANY for IPv4 or in6addr_any for IPv6). This is 96 // IP address. (i.e. INADDR_ANY for IPv4 or in6addr_any for IPv6). This is
97 // useful as binding to such interfaces allow default routing behavior like 97 // useful as binding to such interfaces allow default routing behavior like
98 // http traffic. 98 // http traffic.
99 // TODO(guoweis): remove this body when chromium implements this. 99 // TODO(guoweis): remove this body when chromium implements this.
100 virtual void GetAnyAddressNetworks(NetworkList* networks) {} 100 virtual void GetAnyAddressNetworks(NetworkList* networks) {}
101 101
102 // Dumps a list of networks available to LS_INFO. 102 // Dumps the current list of networks in the network manager.
103 virtual void DumpNetworks(bool include_ignored) {} 103 virtual void DumpNetworks() {}
104 104
105 struct Stats { 105 struct Stats {
106 int ipv4_network_count; 106 int ipv4_network_count;
107 int ipv6_network_count; 107 int ipv6_network_count;
108 Stats() { 108 Stats() {
109 ipv4_network_count = 0; 109 ipv4_network_count = 0;
110 ipv6_network_count = 0; 110 ipv6_network_count = 0;
111 } 111 }
112 }; 112 };
113 }; 113 };
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 class BasicNetworkManager : public NetworkManagerBase, 166 class BasicNetworkManager : public NetworkManagerBase,
167 public MessageHandler, 167 public MessageHandler,
168 public sigslot::has_slots<> { 168 public sigslot::has_slots<> {
169 public: 169 public:
170 BasicNetworkManager(); 170 BasicNetworkManager();
171 ~BasicNetworkManager() override; 171 ~BasicNetworkManager() override;
172 172
173 void StartUpdating() override; 173 void StartUpdating() override;
174 void StopUpdating() override; 174 void StopUpdating() override;
175 175
176 // Logs the available networks. 176 void DumpNetworks() override;
177 void DumpNetworks(bool include_ignored) override;
178 177
179 // MessageHandler interface. 178 // MessageHandler interface.
180 void OnMessage(Message* msg) override; 179 void OnMessage(Message* msg) override;
181 bool started() { return start_count_ > 0; } 180 bool started() { return start_count_ > 0; }
182 181
183 // Sets the network ignore list, which is empty by default. Any network on the 182 // Sets the network ignore list, which is empty by default. Any network on the
184 // ignore list will be filtered from network enumeration results. 183 // ignore list will be filtered from network enumeration results.
185 void set_network_ignore_list(const std::vector<std::string>& list) { 184 void set_network_ignore_list(const std::vector<std::string>& list) {
186 network_ignore_list_ = list; 185 network_ignore_list_ = list;
187 } 186 }
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 311
313 // Indicates whether this network should be ignored, perhaps because 312 // Indicates whether this network should be ignored, perhaps because
314 // the IP is 0, or the interface is one we know is invalid. 313 // the IP is 0, or the interface is one we know is invalid.
315 bool ignored() const { return ignored_; } 314 bool ignored() const { return ignored_; }
316 void set_ignored(bool ignored) { ignored_ = ignored; } 315 void set_ignored(bool ignored) { ignored_ = ignored; }
317 316
318 AdapterType type() const { return type_; } 317 AdapterType type() const { return type_; }
319 int preference() const { return preference_; } 318 int preference() const { return preference_; }
320 void set_preference(int preference) { preference_ = preference; } 319 void set_preference(int preference) { preference_ = preference; }
321 320
321 bool active() const { return active_; }
322 void set_active(bool active) { active_ = active; }
pthatcher1 2015/12/08 19:40:23 Can you put some comments/documentation about what
honghaiz3 2015/12/10 19:26:18 Done.
323
322 // Debugging description of this network 324 // Debugging description of this network
323 std::string ToString() const; 325 std::string ToString() const;
324 326
325 private: 327 private:
326 std::string name_; 328 std::string name_;
327 std::string description_; 329 std::string description_;
328 IPAddress prefix_; 330 IPAddress prefix_;
329 int prefix_length_; 331 int prefix_length_;
330 std::string key_; 332 std::string key_;
331 std::vector<InterfaceAddress> ips_; 333 std::vector<InterfaceAddress> ips_;
332 int scope_id_; 334 int scope_id_;
333 bool ignored_; 335 bool ignored_;
334 AdapterType type_; 336 AdapterType type_;
335 int preference_; 337 int preference_;
338 bool active_ = true;
336 339
337 friend class NetworkManager; 340 friend class NetworkManager;
338 }; 341 };
339 342
340 } // namespace rtc 343 } // namespace rtc
341 344
342 #endif // WEBRTC_BASE_NETWORK_H_ 345 #endif // WEBRTC_BASE_NETWORK_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/network.cc » ('j') | webrtc/base/network.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698