Merge "Modified logic to process each VSIE of all vendors." into tizen
[platform/upstream/connman.git] / include / device.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2014  Intel Corporation. All rights reserved.
6  *
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
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifndef __CONNMAN_DEVICE_H
23 #define __CONNMAN_DEVICE_H
24
25 #include <connman/network.h>
26 #include <connman/service.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 /**
33  * SECTION:device
34  * @title: Device premitives
35  * @short_description: Functions for handling devices
36  */
37
38 enum connman_device_type {
39         CONNMAN_DEVICE_TYPE_UNKNOWN   = 0,
40         CONNMAN_DEVICE_TYPE_ETHERNET  = 1,
41         CONNMAN_DEVICE_TYPE_WIFI      = 2,
42         CONNMAN_DEVICE_TYPE_BLUETOOTH = 3,
43         CONNMAN_DEVICE_TYPE_CELLULAR  = 4,
44         CONNMAN_DEVICE_TYPE_GPS       = 5,
45         CONNMAN_DEVICE_TYPE_GADGET    = 6,
46         CONNMAN_DEVICE_TYPE_VENDOR    = 10000,
47 };
48
49 #define CONNMAN_DEVICE_PRIORITY_LOW      -100
50 #define CONNMAN_DEVICE_PRIORITY_DEFAULT     0
51 #define CONNMAN_DEVICE_PRIORITY_HIGH      100
52
53 struct connman_device;
54
55 struct connman_device *connman_device_create(const char *node,
56                                                 enum connman_device_type type);
57
58 #define connman_device_ref(device) \
59         connman_device_ref_debug(device, __FILE__, __LINE__, __func__)
60
61 #define connman_device_unref(device) \
62         connman_device_unref_debug(device, __FILE__, __LINE__, __func__)
63
64 struct connman_device *
65 connman_device_ref_debug(struct connman_device *device,
66                         const char *file, int line, const char *caller);
67 void connman_device_unref_debug(struct connman_device *device,
68                         const char *file, int line, const char *caller);
69
70 enum connman_device_type connman_device_get_type(struct connman_device *device);
71 void connman_device_set_index(struct connman_device *device, int index);
72 int connman_device_get_index(struct connman_device *device);
73 void connman_device_set_interface(struct connman_device *device,
74                                                 const char *interface);
75
76 void connman_device_set_ident(struct connman_device *device,
77                                                 const char *ident);
78 const char *connman_device_get_ident(struct connman_device *device);
79
80 int connman_device_set_powered(struct connman_device *device,
81                                                 bool powered);
82 bool connman_device_get_powered(struct connman_device *device);
83 int connman_device_set_scanning(struct connman_device *device,
84                                 enum connman_service_type type, bool scanning);
85 bool connman_device_get_scanning(struct connman_device *device);
86 void connman_device_reset_scanning(struct connman_device *device);
87
88 int connman_device_set_disconnected(struct connman_device *device,
89                                                 bool disconnected);
90 bool connman_device_get_disconnected(struct connman_device *device);
91
92 int connman_device_set_string(struct connman_device *device,
93                                         const char *key, const char *value);
94 const char *connman_device_get_string(struct connman_device *device,
95                                                         const char *key);
96
97 int connman_device_add_network(struct connman_device *device,
98                                         struct connman_network *network);
99 struct connman_network *connman_device_get_network(struct connman_device *device,
100                                                         const char *identifier);
101 int connman_device_remove_network(struct connman_device *device,
102                                         struct connman_network *network);
103
104 int connman_device_register(struct connman_device *device);
105 void connman_device_unregister(struct connman_device *device);
106
107 void *connman_device_get_data(struct connman_device *device);
108 void connman_device_set_data(struct connman_device *device, void *data);
109
110 int connman_device_set_regdom(struct connman_device *device,
111                                                 const char *alpha2);
112 void connman_device_regdom_notify(struct connman_device *device,
113                                         int result, const char *alpha2);
114 struct connman_device *connman_device_create_from_index(int index);
115 struct connman_device *connman_device_find_by_index(int index);
116 int connman_device_reconnect_service(struct connman_device *device);
117
118 struct connman_device_driver {
119         const char *name;
120         enum connman_device_type type;
121         int priority;
122         int (*probe) (struct connman_device *device);
123         void (*remove) (struct connman_device *device);
124         int (*enable) (struct connman_device *device);
125         int (*disable) (struct connman_device *device);
126         int (*scan)(enum connman_service_type type,
127                         struct connman_device *device,
128                         const char *ssid, unsigned int ssid_len,
129                         const char *identity, const char* passphrase,
130                         const char *security, void *user_data);
131         int (*set_regdom) (struct connman_device *device,
132                                                 const char *alpha2);
133 #if defined TIZEN_EXT
134         int (*specific_scan) (enum connman_service_type type,
135                         struct connman_device *device, int scan_type,
136                         GSList *specific_scan_list, void *user_data);
137 #endif
138 };
139
140 int connman_device_driver_register(struct connman_device_driver *driver);
141 void connman_device_driver_unregister(struct connman_device_driver *driver);
142
143 #ifdef __cplusplus
144 }
145 #endif
146
147 #endif /* __CONNMAN_DEVICE_H */