Add basic detection of Option HSO devices
[connman] / include / device.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  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 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include <connman/network.h>
30 #include <connman/element.h>
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   = CONNMAN_ELEMENT_SUBTYPE_UNKNOWN,
40         CONNMAN_DEVICE_TYPE_FAKE      = CONNMAN_ELEMENT_SUBTYPE_FAKE,
41         CONNMAN_DEVICE_TYPE_ETHERNET  = CONNMAN_ELEMENT_SUBTYPE_ETHERNET,
42         CONNMAN_DEVICE_TYPE_WIFI      = CONNMAN_ELEMENT_SUBTYPE_WIFI,
43         CONNMAN_DEVICE_TYPE_WIMAX     = CONNMAN_ELEMENT_SUBTYPE_WIMAX,
44         CONNMAN_DEVICE_TYPE_MODEM     = CONNMAN_ELEMENT_SUBTYPE_MODEM,
45         CONNMAN_DEVICE_TYPE_BLUETOOTH = CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH,
46         CONNMAN_DEVICE_TYPE_VENDOR    = 42,
47         CONNMAN_DEVICE_TYPE_HSO,
48 };
49
50 enum connman_device_mode {
51         CONNMAN_DEVICE_MODE_NO_NETWORK        = 0,
52         CONNMAN_DEVICE_MODE_SINGLE_NETWORK    = 1,
53         CONNMAN_DEVICE_MODE_MULTIPLE_NETWORKS = 2,
54 };
55
56 enum connman_device_policy {
57         CONNMAN_DEVICE_POLICY_UNKNOWN = 0,
58         CONNMAN_DEVICE_POLICY_IGNORE  = 1,
59         CONNMAN_DEVICE_POLICY_AUTO    = 2,
60         CONNMAN_DEVICE_POLICY_OFF     = 3,
61 };
62
63 struct connman_device;
64
65 extern struct connman_device *connman_device_create(const char *node,
66                                                 enum connman_device_type type);
67 extern struct connman_device *connman_device_ref(struct connman_device *device);
68 extern void connman_device_unref(struct connman_device *device);
69
70 extern void connman_device_set_path(struct connman_device *device,
71                                                         const char *path);
72 extern const char *connman_device_get_path(struct connman_device *device);
73 extern void connman_device_set_index(struct connman_device *device,
74                                                                 int index);
75 extern int connman_device_get_index(struct connman_device *device);
76 extern void connman_device_set_interface(struct connman_device *device,
77                                                         const char *interface);
78 extern const char *connman_device_get_interface(struct connman_device *device);
79
80 extern void connman_device_set_mode(struct connman_device *device,
81                                                 enum connman_device_mode mode);
82
83 extern int connman_device_set_powered(struct connman_device *device,
84                                                         gboolean powered);
85 extern int connman_device_set_carrier(struct connman_device *device,
86                                                         gboolean carrier);
87 extern int connman_device_set_scanning(struct connman_device *device,
88                                                         gboolean scanning);
89
90 extern int connman_device_add_network(struct connman_device *device,
91                                         struct connman_network *network);
92 extern struct connman_network *connman_device_get_network(struct connman_device *device,
93                                                         const char *identifier);
94 extern int connman_device_remove_network(struct connman_device *device,
95                                                         const char *identifier);
96
97 extern int connman_device_register(struct connman_device *device);
98 extern void connman_device_unregister(struct connman_device *device);
99
100 extern void *connman_device_get_data(struct connman_device *device);
101 extern void connman_device_set_data(struct connman_device *device, void *data);
102
103 struct connman_device_driver {
104         const char *name;
105         enum connman_device_type type;
106         int priority;
107         int (*probe) (struct connman_device *device);
108         void (*remove) (struct connman_device *device);
109         int (*enable) (struct connman_device *device);
110         int (*disable) (struct connman_device *device);
111         int (*scan) (struct connman_device *device);
112 };
113
114 extern int connman_device_driver_register(struct connman_device_driver *driver);
115 extern void connman_device_driver_unregister(struct connman_device_driver *driver);
116
117 #ifdef __cplusplus
118 }
119 #endif
120
121 #endif /* __CONNMAN_DEVICE_H */