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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 int max_ipv6_networks_; | 166 int max_ipv6_networks_; |
167 | 167 |
168 NetworkMap networks_map_; | 168 NetworkMap networks_map_; |
169 bool ipv6_enabled_; | 169 bool ipv6_enabled_; |
170 | 170 |
171 rtc::scoped_ptr<rtc::Network> ipv4_any_address_network_; | 171 rtc::scoped_ptr<rtc::Network> ipv4_any_address_network_; |
172 rtc::scoped_ptr<rtc::Network> ipv6_any_address_network_; | 172 rtc::scoped_ptr<rtc::Network> ipv6_any_address_network_; |
173 | 173 |
174 IPAddress default_local_ipv4_address_; | 174 IPAddress default_local_ipv4_address_; |
175 IPAddress default_local_ipv6_address_; | 175 IPAddress default_local_ipv6_address_; |
| 176 uint16_t next_available_network_id_ = 1; |
176 }; | 177 }; |
177 | 178 |
178 // Basic implementation of the NetworkManager interface that gets list | 179 // Basic implementation of the NetworkManager interface that gets list |
179 // of networks using OS APIs. | 180 // of networks using OS APIs. |
180 class BasicNetworkManager : public NetworkManagerBase, | 181 class BasicNetworkManager : public NetworkManagerBase, |
181 public MessageHandler, | 182 public MessageHandler, |
182 public sigslot::has_slots<> { | 183 public sigslot::has_slots<> { |
183 public: | 184 public: |
184 BasicNetworkManager(); | 185 BasicNetworkManager(); |
185 ~BasicNetworkManager() override; | 186 ~BasicNetworkManager() override; |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 void set_scope_id(int id) { scope_id_ = id; } | 333 void set_scope_id(int id) { scope_id_ = id; } |
333 | 334 |
334 // Indicates whether this network should be ignored, perhaps because | 335 // Indicates whether this network should be ignored, perhaps because |
335 // the IP is 0, or the interface is one we know is invalid. | 336 // the IP is 0, or the interface is one we know is invalid. |
336 bool ignored() const { return ignored_; } | 337 bool ignored() const { return ignored_; } |
337 void set_ignored(bool ignored) { ignored_ = ignored; } | 338 void set_ignored(bool ignored) { ignored_ = ignored; } |
338 | 339 |
339 AdapterType type() const { return type_; } | 340 AdapterType type() const { return type_; } |
340 void set_type(AdapterType type) { type_ = type; } | 341 void set_type(AdapterType type) { type_ = type; } |
341 | 342 |
| 343 // A unique network id assigned by the network manager, which may be signaled |
| 344 // to the remote side. |
| 345 uint16_t id() const { return id_; } |
| 346 void set_id(uint16_t id) { id_ = id; } |
| 347 |
342 int preference() const { return preference_; } | 348 int preference() const { return preference_; } |
343 void set_preference(int preference) { preference_ = preference; } | 349 void set_preference(int preference) { preference_ = preference; } |
344 | 350 |
345 // When we enumerate networks and find a previously-seen network is missing, | 351 // When we enumerate networks and find a previously-seen network is missing, |
346 // we do not remove it (because it may be used elsewhere). Instead, we mark | 352 // we do not remove it (because it may be used elsewhere). Instead, we mark |
347 // it inactive, so that we can detect network changes properly. | 353 // it inactive, so that we can detect network changes properly. |
348 bool active() const { return active_; } | 354 bool active() const { return active_; } |
349 void set_active(bool active) { | 355 void set_active(bool active) { |
350 if (active_ == active) { | 356 if (active_ == active) { |
351 return; | 357 return; |
(...skipping 13 matching lines...) Expand all Loading... |
365 std::string description_; | 371 std::string description_; |
366 IPAddress prefix_; | 372 IPAddress prefix_; |
367 int prefix_length_; | 373 int prefix_length_; |
368 std::string key_; | 374 std::string key_; |
369 std::vector<InterfaceAddress> ips_; | 375 std::vector<InterfaceAddress> ips_; |
370 int scope_id_; | 376 int scope_id_; |
371 bool ignored_; | 377 bool ignored_; |
372 AdapterType type_; | 378 AdapterType type_; |
373 int preference_; | 379 int preference_; |
374 bool active_ = true; | 380 bool active_ = true; |
| 381 uint16_t id_ = 0; |
375 | 382 |
376 friend class NetworkManager; | 383 friend class NetworkManager; |
377 }; | 384 }; |
378 | 385 |
379 } // namespace rtc | 386 } // namespace rtc |
380 | 387 |
381 #endif // WEBRTC_BASE_NETWORK_H_ | 388 #endif // WEBRTC_BASE_NETWORK_H_ |
OLD | NEW |