| OLD | NEW |
| 1 /* | 1 /* |
| 2 * | 2 * |
| 3 * Connection Manager | 3 * Connection Manager |
| 4 * | 4 * |
| 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. | 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. |
| 6 * | 6 * |
| 7 * This program is free software; you can redistribute it and/or modify | 7 * This program is free software; you can redistribute it and/or modify |
| 8 * it under the terms of the GNU General Public License version 2 as | 8 * it under the terms of the GNU General Public License version 2 as |
| 9 * published by the Free Software Foundation. | 9 * published by the Free Software Foundation. |
| 10 * | 10 * |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 gboolean __connman_device_isfiltered(const char *devname); | 270 gboolean __connman_device_isfiltered(const char *devname); |
| 271 | 271 |
| 272 #include <connman/device.h> | 272 #include <connman/device.h> |
| 273 | 273 |
| 274 int __connman_device_init(void); | 274 int __connman_device_init(void); |
| 275 void __connman_device_cleanup(void); | 275 void __connman_device_cleanup(void); |
| 276 | 276 |
| 277 enum connman_service_type __connman_device_get_service_type(struct connman_devic
e *device); | 277 enum connman_service_type __connman_device_get_service_type(struct connman_devic
e *device); |
| 278 | 278 |
| 279 void __connman_device_set_modem_update_time(struct connman_device *device); | |
| 280 | |
| 281 int __connman_device_get_phyindex(struct connman_device *device); | 279 int __connman_device_get_phyindex(struct connman_device *device); |
| 282 void __connman_device_set_phyindex(struct connman_device *device, | 280 void __connman_device_set_phyindex(struct connman_device *device, |
| 283 int phyindex); | 281 int phyindex); |
| 284 int __connman_device_set_blocked(struct connman_device *device, | 282 int __connman_device_set_blocked(struct connman_device *device, |
| 285 connman_bool_t blocked); | 283 connman_bool_t blocked); |
| 286 | 284 |
| 287 struct connman_network *__connman_device_get_current_network( | 285 struct connman_network *__connman_device_get_current_network( |
| 288 struct connman_device *device); | 286 struct connman_device *device); |
| 289 void __connman_device_set_current_network(struct connman_device *device, | 287 void __connman_device_set_current_network(struct connman_device *device, |
| 290 struct connman_network *network); | 288 struct connman_network *network); |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 | 449 |
| 452 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type); | 450 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type); |
| 453 | 451 |
| 454 #include <connman/rtnl.h> | 452 #include <connman/rtnl.h> |
| 455 | 453 |
| 456 int __connman_rtnl_init(void); | 454 int __connman_rtnl_init(void); |
| 457 void __connman_rtnl_start(void); | 455 void __connman_rtnl_start(void); |
| 458 void __connman_rtnl_cleanup(void); | 456 void __connman_rtnl_cleanup(void); |
| 459 | 457 |
| 460 int __connman_rtnl_send(const void *buf, size_t len); | 458 int __connman_rtnl_send(const void *buf, size_t len); |
| OLD | NEW |