Add functions for handling path value
[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/element.h>
30
31 /**
32  * SECTION:device
33  * @title: Device premitives
34  * @short_description: Functions for handling devices
35  */
36
37 enum connman_device_type {
38         CONNMAN_DEVICE_TYPE_UNKNOWN   = CONNMAN_ELEMENT_SUBTYPE_UNKNOWN,
39         CONNMAN_DEVICE_TYPE_FAKE      = CONNMAN_ELEMENT_SUBTYPE_FAKE,
40         CONNMAN_DEVICE_TYPE_ETHERNET  = CONNMAN_ELEMENT_SUBTYPE_ETHERNET,
41         CONNMAN_DEVICE_TYPE_WIFI      = CONNMAN_ELEMENT_SUBTYPE_WIFI,
42         CONNMAN_DEVICE_TYPE_WIMAX     = CONNMAN_ELEMENT_SUBTYPE_WIMAX,
43         CONNMAN_DEVICE_TYPE_MODEM     = CONNMAN_ELEMENT_SUBTYPE_MODEM,
44         CONNMAN_DEVICE_TYPE_BLUETOOTH = CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH,
45         CONNMAN_DEVICE_TYPE_VENDOR    = 42,
46 };
47
48 enum connman_device_policy {
49         CONNMAN_DEVICE_POLICY_UNKNOWN = 0,
50         CONNMAN_DEVICE_POLICY_IGNORE  = 1,
51         CONNMAN_DEVICE_POLICY_AUTO    = 2,
52         CONNMAN_DEVICE_POLICY_OFF     = 3,
53 };
54
55 struct connman_device;
56
57 extern struct connman_device *connman_device_create(const char *node,
58                                                 enum connman_device_type type);
59 extern struct connman_device *connman_device_ref(struct connman_device *device);
60 extern void connman_device_unref(struct connman_device *device);
61
62 extern void connman_device_set_path(struct connman_device *device,
63                                                         const char *path);
64 extern const char *connman_device_get_path(struct connman_device *device);
65 extern void connman_device_set_index(struct connman_device *device,
66                                                                 int index);
67 extern int connman_device_get_index(struct connman_device *device);
68 extern void connman_device_set_interface(struct connman_device *device,
69                                                         const char *interface);
70 extern const char *connman_device_get_interface(struct connman_device *device);
71
72 extern int connman_device_set_powered(struct connman_device *device,
73                                                         gboolean powered);
74 extern int connman_device_set_carrier(struct connman_device *device,
75                                                         gboolean carrier);
76 extern int connman_device_set_scanning(struct connman_device *device,
77                                                         gboolean scanning);
78
79 extern int connman_device_register(struct connman_device *device);
80 extern void connman_device_unregister(struct connman_device *device);
81
82 extern void *connman_device_get_data(struct connman_device *device);
83 extern void connman_device_set_data(struct connman_device *device, void *data);
84
85 struct connman_device_driver {
86         const char *name;
87         enum connman_device_type type;
88         int priority;
89         int (*probe) (struct connman_device *device);
90         void (*remove) (struct connman_device *device);
91         int (*enable) (struct connman_device *device);
92         int (*disable) (struct connman_device *device);
93         int (*scan) (struct connman_device *device);
94 };
95
96 extern int connman_device_driver_register(struct connman_device_driver *driver);
97 extern void connman_device_driver_unregister(struct connman_device_driver *driver);
98
99 #ifdef __cplusplus
100 }
101 #endif
102
103 #endif /* __CONNMAN_DEVICE_H */