OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/cros/network_library.h" | 5 #include "chrome/browser/chromeos/cros/network_library.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "chrome/browser/chrome_thread.h" | 10 #include "chrome/browser/chrome_thread.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 " sta=" << service.state << | 198 " sta=" << service.state << |
199 " pas=" << service.needs_passphrase << | 199 " pas=" << service.needs_passphrase << |
200 " enc=" << service.encryption << | 200 " enc=" << service.encryption << |
201 " sig=" << service.signal_strength; | 201 " sig=" << service.signal_strength; |
202 bool connecting = service.state == chromeos::STATE_ASSOCIATION || | 202 bool connecting = service.state == chromeos::STATE_ASSOCIATION || |
203 service.state == chromeos::STATE_CONFIGURATION || | 203 service.state == chromeos::STATE_CONFIGURATION || |
204 service.state == chromeos::STATE_CARRIER; | 204 service.state == chromeos::STATE_CARRIER; |
205 bool connected = service.state == chromeos::STATE_READY; | 205 bool connected = service.state == chromeos::STATE_READY; |
206 // if connected, get ip config | 206 // if connected, get ip config |
207 std::string ip_address; | 207 std::string ip_address; |
208 if (connected) { | 208 if (connected && service.device_path) { |
209 chromeos::IPConfigStatus* ipconfig_status = | 209 chromeos::IPConfigStatus* ipconfig_status = |
210 chromeos::ListIPConfigs(service.device_path); | 210 chromeos::ListIPConfigs(service.device_path); |
211 if (ipconfig_status) { | 211 if (ipconfig_status) { |
212 for (int i = 0; i < ipconfig_status->size; i++) { | 212 for (int i = 0; i < ipconfig_status->size; i++) { |
213 chromeos::IPConfig ipconfig = ipconfig_status->ips[i]; | 213 chromeos::IPConfig ipconfig = ipconfig_status->ips[i]; |
214 if (strlen(ipconfig.address) > 0) | 214 if (strlen(ipconfig.address) > 0) |
215 ip_address = ipconfig.address; | 215 ip_address = ipconfig.address; |
216 DLOG(INFO) << " ipconfig: " << | 216 DLOG(INFO) << " ipconfig: " << |
217 " type=" << ipconfig.type << | 217 " type=" << ipconfig.type << |
218 " address=" << ipconfig.address << | 218 " address=" << ipconfig.address << |
219 " mtu=" << ipconfig.mtu << | 219 " mtu=" << ipconfig.mtu << |
220 " netmask=" << ipconfig.netmask << | 220 " netmask=" << ipconfig.netmask << |
221 " broadcast=" << ipconfig.broadcast << | 221 " broadcast=" << ipconfig.broadcast << |
222 " peer_address=" << ipconfig.peer_address << | 222 " peer_address=" << ipconfig.peer_address << |
223 " gateway=" << ipconfig.gateway << | 223 " gateway=" << ipconfig.gateway << |
224 " domainname=" << ipconfig.domainname << | 224 " domainname=" << ipconfig.domainname << |
225 " name_servers=" << ipconfig.name_servers; | 225 " name_servers=" << ipconfig.name_servers; |
226 } | 226 } |
227 chromeos::FreeIPConfigStatus(ipconfig_status); | 227 chromeos::FreeIPConfigStatus(ipconfig_status); |
228 } | 228 } |
229 } | 229 } |
230 if (service.type == chromeos::TYPE_ETHERNET) { | 230 if (service.type == chromeos::TYPE_ETHERNET) { |
231 ethernet->connecting = connecting; | 231 ethernet->connecting = connecting; |
232 ethernet->connected = connected; | 232 ethernet->connected = connected; |
233 ethernet->device_path = service.device_path; | 233 ethernet->device_path = service.device_path ? service.device_path : |
| 234 std::string(); |
234 ethernet->ip_address = ip_address; | 235 ethernet->ip_address = ip_address; |
235 } else if (service.type == chromeos::TYPE_WIFI) { | 236 } else if (service.type == chromeos::TYPE_WIFI) { |
236 wifi_networks->push_back(WifiNetwork(service.device_path, | 237 wifi_networks->push_back(WifiNetwork(service.device_path ? |
| 238 service.device_path : |
| 239 std::string(), |
237 service.ssid, | 240 service.ssid, |
238 service.needs_passphrase, | 241 service.needs_passphrase, |
239 service.encryption, | 242 service.encryption, |
240 service.signal_strength, | 243 service.signal_strength, |
241 connecting, | 244 connecting, |
242 connected, | 245 connected, |
243 ip_address)); | 246 ip_address)); |
244 } else if (service.type == chromeos::TYPE_CELLULAR) { | 247 } else if (service.type == chromeos::TYPE_CELLULAR) { |
245 cellular_networks->push_back(CellularNetwork(service.device_path, | 248 cellular_networks->push_back(CellularNetwork(service.device_path ? |
| 249 service.device_path : |
| 250 std::string(), |
246 service.ssid, | 251 service.ssid, |
247 service.signal_strength, | 252 service.signal_strength, |
248 connecting, | 253 connecting, |
249 connected, | 254 connected, |
250 ip_address)); | 255 ip_address)); |
251 } | 256 } |
252 } | 257 } |
253 } | 258 } |
254 | 259 |
255 void NetworkLibrary::Init() { | 260 void NetworkLibrary::Init() { |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 if (ethernet_connected()) | 401 if (ethernet_connected()) |
397 return ethernet_.ip_address; | 402 return ethernet_.ip_address; |
398 if (wifi_connected()) | 403 if (wifi_connected()) |
399 return wifi_.ip_address; | 404 return wifi_.ip_address; |
400 if (cellular_connected()) | 405 if (cellular_connected()) |
401 return cellular_.ip_address; | 406 return cellular_.ip_address; |
402 return ethernet_.ip_address; | 407 return ethernet_.ip_address; |
403 } | 408 } |
404 | 409 |
405 } // namespace chromeos | 410 } // namespace chromeos |
OLD | NEW |