X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fdevice.h;h=1fd68ff2d312287c6037e0fe063761b5e157dba1;hb=HEAD;hp=a3d9ad38f7f3f81c152da11debd1d9e05e254f34;hpb=08898a3702fd821da3239eb93f8a0af02cff5573;p=framework%2Fconnectivity%2Fconnman.git diff --git a/include/device.h b/include/device.h index a3d9ad3..1fd68ff 100644 --- a/include/device.h +++ b/include/device.h @@ -2,7 +2,7 @@ * * Connection Manager * - * Copyright (C) 2007-2008 Intel Corporation. All rights reserved. + * Copyright (C) 2007-2010 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -22,12 +22,13 @@ #ifndef __CONNMAN_DEVICE_H #define __CONNMAN_DEVICE_H +#include +#include + #ifdef __cplusplus extern "C" { #endif -#include - /** * SECTION:device * @title: Device premitives @@ -35,61 +36,81 @@ extern "C" { */ enum connman_device_type { - CONNMAN_DEVICE_TYPE_UNKNOWN = CONNMAN_ELEMENT_SUBTYPE_UNKNOWN, - CONNMAN_DEVICE_TYPE_FAKE = CONNMAN_ELEMENT_SUBTYPE_FAKE, - CONNMAN_DEVICE_TYPE_ETHERNET = CONNMAN_ELEMENT_SUBTYPE_ETHERNET, - CONNMAN_DEVICE_TYPE_WIFI = CONNMAN_ELEMENT_SUBTYPE_WIFI, - CONNMAN_DEVICE_TYPE_WIMAX = CONNMAN_ELEMENT_SUBTYPE_WIMAX, - CONNMAN_DEVICE_TYPE_MODEM = CONNMAN_ELEMENT_SUBTYPE_MODEM, - CONNMAN_DEVICE_TYPE_BLUETOOTH = CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH, - CONNMAN_DEVICE_TYPE_VENDOR = 42, -}; - -enum connman_device_mode { - CONNMAN_DEVICE_MODE_NO_NETWORK = 0, - CONNMAN_DEVICE_MODE_SINGLE_NETWORK = 1, - CONNMAN_DEVICE_MODE_MULTIPLE_NETWORKS = 2, + CONNMAN_DEVICE_TYPE_UNKNOWN = 0, + CONNMAN_DEVICE_TYPE_ETHERNET = 1, + CONNMAN_DEVICE_TYPE_WIFI = 2, + CONNMAN_DEVICE_TYPE_WIMAX = 3, + CONNMAN_DEVICE_TYPE_BLUETOOTH = 4, + CONNMAN_DEVICE_TYPE_CELLULAR = 5, + CONNMAN_DEVICE_TYPE_GPS = 6, + CONNMAN_DEVICE_TYPE_GADGET = 7, + CONNMAN_DEVICE_TYPE_VENDOR = 10000, }; -enum connman_device_policy { - CONNMAN_DEVICE_POLICY_UNKNOWN = 0, - CONNMAN_DEVICE_POLICY_IGNORE = 1, - CONNMAN_DEVICE_POLICY_AUTO = 2, - CONNMAN_DEVICE_POLICY_OFF = 3, -}; +#define CONNMAN_DEVICE_PRIORITY_LOW -100 +#define CONNMAN_DEVICE_PRIORITY_DEFAULT 0 +#define CONNMAN_DEVICE_PRIORITY_HIGH 100 struct connman_device; -extern struct connman_device *connman_device_create(const char *node, +struct connman_device *connman_device_create(const char *node, enum connman_device_type type); -extern struct connman_device *connman_device_ref(struct connman_device *device); -extern void connman_device_unref(struct connman_device *device); - -extern void connman_device_set_path(struct connman_device *device, - const char *path); -extern const char *connman_device_get_path(struct connman_device *device); -extern void connman_device_set_index(struct connman_device *device, - int index); -extern int connman_device_get_index(struct connman_device *device); -extern void connman_device_set_interface(struct connman_device *device, - const char *interface); -extern const char *connman_device_get_interface(struct connman_device *device); - -extern void connman_device_set_mode(struct connman_device *device, - enum connman_device_mode mode); - -extern int connman_device_set_powered(struct connman_device *device, - gboolean powered); -extern int connman_device_set_carrier(struct connman_device *device, - gboolean carrier); -extern int connman_device_set_scanning(struct connman_device *device, - gboolean scanning); - -extern int connman_device_register(struct connman_device *device); -extern void connman_device_unregister(struct connman_device *device); - -extern void *connman_device_get_data(struct connman_device *device); -extern void connman_device_set_data(struct connman_device *device, void *data); +struct connman_device *connman_device_ref(struct connman_device *device); +void connman_device_unref(struct connman_device *device); + +enum connman_device_type connman_device_get_type(struct connman_device *device); +void connman_device_set_index(struct connman_device *device, int index); +int connman_device_get_index(struct connman_device *device); +void connman_device_set_interface(struct connman_device *device, + const char *interface); + +void connman_device_set_ident(struct connman_device *device, + const char *ident); +const char *connman_device_get_ident(struct connman_device *device); + +int connman_device_set_powered(struct connman_device *device, + connman_bool_t powered); +#if defined TIZEN_EXT +/* + * Description: It checks significant and effective Wi-Fi profiles which can make an auto-connection. + * It saves power consumption not to scan if there is no valid profile to make an auto-connection. + */ +void connman_device_significant_wifi_profile_ref(struct connman_device *device); +connman_bool_t connman_device_significant_wifi_profile_unref_and_test(struct connman_device *device); + +connman_bool_t connman_device_load_significant_wifi_profile_refcount_from_storage(struct connman_device *device); +connman_bool_t connman_device_save_significant_wifi_profile_refcount_to_storage(struct connman_device *device); +#endif + +int connman_device_set_scanning(struct connman_device *device, + connman_bool_t scanning); +connman_bool_t connman_device_get_scanning(struct connman_device *device); +void connman_device_reset_scanning(struct connman_device *device); + +int connman_device_set_disconnected(struct connman_device *device, + connman_bool_t disconnected); +connman_bool_t connman_device_get_disconnected(struct connman_device *device); + +int connman_device_set_string(struct connman_device *device, + const char *key, const char *value); +const char *connman_device_get_string(struct connman_device *device, + const char *key); + +int connman_device_add_network(struct connman_device *device, + struct connman_network *network); +struct connman_network *connman_device_get_network(struct connman_device *device, + const char *identifier); +int connman_device_remove_network(struct connman_device *device, + struct connman_network *network); +void connman_device_remove_all_networks(struct connman_device *device); + +void connman_device_schedule_scan(struct connman_device *device); + +int connman_device_register(struct connman_device *device); +void connman_device_unregister(struct connman_device *device); + +void *connman_device_get_data(struct connman_device *device); +void connman_device_set_data(struct connman_device *device, void *data); struct connman_device_driver { const char *name; @@ -100,10 +121,11 @@ struct connman_device_driver { int (*enable) (struct connman_device *device); int (*disable) (struct connman_device *device); int (*scan) (struct connman_device *device); + int (*scan_fast) (struct connman_device *device); }; -extern int connman_device_driver_register(struct connman_device_driver *driver); -extern void connman_device_driver_unregister(struct connman_device_driver *driver); +int connman_device_driver_register(struct connman_device_driver *driver); +void connman_device_driver_unregister(struct connman_device_driver *driver); #ifdef __cplusplus }