| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 #include <connman/log.h> | 80 #include <connman/log.h> |
| 81 | 81 |
| 82 int __connman_log_init(gboolean detach, unsigned debugmask); | 82 int __connman_log_init(gboolean detach, unsigned debugmask); |
| 83 void __connman_log_cleanup(void); | 83 void __connman_log_cleanup(void); |
| 84 | 84 |
| 85 unsigned __connman_debug_getmask(void); | 85 unsigned __connman_debug_getmask(void); |
| 86 const gchar *__connman_debug_getmask_str(void); | 86 const gchar *__connman_debug_getmask_str(void); |
| 87 unsigned __connman_debug_setmask(unsigned debugmask); | 87 unsigned __connman_debug_setmask(unsigned debugmask); |
| 88 gboolean __connman_debug_enabled(unsigned debugmask); | 88 gboolean __connman_debug_enabled(unsigned debugmask); |
| 89 unsigned __connman_debug_tags_to_mask(const char *tags, GError **error); |
| 90 gboolean __connman_debug_set_tags(char *taglist); |
| 91 |
| 89 | 92 |
| 90 #include <connman/option.h> | 93 #include <connman/option.h> |
| 91 | 94 |
| 92 #include <connman/plugin.h> | 95 #include <connman/plugin.h> |
| 93 | 96 |
| 94 int __connman_plugin_init(char **pattern, char **exclude); | 97 int __connman_plugin_init(char **pattern, char **exclude); |
| 95 void __connman_plugin_cleanup(void); | 98 void __connman_plugin_cleanup(void); |
| 96 | 99 |
| 97 #include <connman/task.h> | 100 #include <connman/task.h> |
| 98 | 101 |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 int __connman_network_disconnect(struct connman_network *network); | 324 int __connman_network_disconnect(struct connman_network *network); |
| 322 | 325 |
| 323 connman_bool_t __connman_network_has_driver(struct connman_network *network); | 326 connman_bool_t __connman_network_has_driver(struct connman_network *network); |
| 324 | 327 |
| 325 const char *__connman_network_get_type(struct connman_network *network); | 328 const char *__connman_network_get_type(struct connman_network *network); |
| 326 const char *__connman_network_get_group(struct connman_network *network); | 329 const char *__connman_network_get_group(struct connman_network *network); |
| 327 const char *__connman_network_get_ident(struct connman_network *network); | 330 const char *__connman_network_get_ident(struct connman_network *network); |
| 328 connman_bool_t __connman_network_get_weakness(struct connman_network *network); | 331 connman_bool_t __connman_network_get_weakness(struct connman_network *network); |
| 329 connman_bool_t __connman_network_get_connecting(struct connman_network *network)
; | 332 connman_bool_t __connman_network_get_connecting(struct connman_network *network)
; |
| 330 | 333 |
| 334 int __connman_network_activate_cellular_modem(struct connman_network *network, |
| 335 const char *carrier); |
| 336 |
| 331 #include <connman/profile.h> | 337 #include <connman/profile.h> |
| 332 | 338 |
| 333 int __connman_profile_init(); | 339 int __connman_profile_init(); |
| 334 void __connman_profile_cleanup(void); | 340 void __connman_profile_cleanup(void); |
| 335 | 341 |
| 336 connman_bool_t __connman_profile_get_offlinemode(void); | 342 connman_bool_t __connman_profile_get_offlinemode(void); |
| 337 int __connman_profile_set_offlinemode(connman_bool_t offlinemode); | 343 int __connman_profile_set_offlinemode(connman_bool_t offlinemode); |
| 338 int __connman_profile_save_default(void); | 344 int __connman_profile_save_default(void); |
| 339 | 345 |
| 340 void __connman_profile_list(DBusMessageIter *iter, void *); | 346 void __connman_profile_list(DBusMessageIter *iter, void *); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 void __connman_service_set_olp_url(struct connman_service *service, | 417 void __connman_service_set_olp_url(struct connman_service *service, |
| 412 const char *olp_url); | 418 const char *olp_url); |
| 413 void __connman_service_set_usage_url(struct connman_service *service, | 419 void __connman_service_set_usage_url(struct connman_service *service, |
| 414 const char *usage_url); | 420 const char *usage_url); |
| 415 | 421 |
| 416 void __connman_service_set_registration_info( | 422 void __connman_service_set_registration_info( |
| 417 struct connman_service *service, | 423 struct connman_service *service, |
| 418 enum connman_network_cellular_technology network_technology, | 424 enum connman_network_cellular_technology network_technology, |
| 419 enum connman_network_cellular_roaming_state roaming_state); | 425 enum connman_network_cellular_roaming_state roaming_state); |
| 420 | 426 |
| 427 enum connman_service_type __connman_service_string2type(const char *str); |
| 428 |
| 421 #include <connman/provider.h> | 429 #include <connman/provider.h> |
| 422 | 430 |
| 423 #include <connman/notifier.h> | 431 #include <connman/notifier.h> |
| 424 | 432 |
| 425 int __connman_notifier_init(void); | 433 int __connman_notifier_init(void); |
| 426 void __connman_notifier_cleanup(void); | 434 void __connman_notifier_cleanup(void); |
| 427 | 435 |
| 428 void __connman_notifier_list_registered(DBusMessageIter *iter, void *); | 436 void __connman_notifier_list_registered(DBusMessageIter *iter, void *); |
| 429 void __connman_notifier_list_enabled(DBusMessageIter *iter, void *); | 437 void __connman_notifier_list_enabled(DBusMessageIter *iter, void *); |
| 430 void __connman_notifier_list_connected(DBusMessageIter *iter, void *); | 438 void __connman_notifier_list_connected(DBusMessageIter *iter, void *); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 443 | 451 |
| 444 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type); | 452 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type); |
| 445 | 453 |
| 446 #include <connman/rtnl.h> | 454 #include <connman/rtnl.h> |
| 447 | 455 |
| 448 int __connman_rtnl_init(void); | 456 int __connman_rtnl_init(void); |
| 449 void __connman_rtnl_start(void); | 457 void __connman_rtnl_start(void); |
| 450 void __connman_rtnl_cleanup(void); | 458 void __connman_rtnl_cleanup(void); |
| 451 | 459 |
| 452 int __connman_rtnl_send(const void *buf, size_t len); | 460 int __connman_rtnl_send(const void *buf, size_t len); |
| OLD | NEW |