Add storage callbacks for networks
[connman] / include / device.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  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/types.h>
26 #include <connman/network.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_WIMAX     = 3,
43         CONNMAN_DEVICE_TYPE_BLUETOOTH = 4,
44         CONNMAN_DEVICE_TYPE_HSO       = 15,
45         CONNMAN_DEVICE_TYPE_NOZOMI    = 16,
46         CONNMAN_DEVICE_TYPE_HUAWEI    = 17,
47         CONNMAN_DEVICE_TYPE_NOVATEL   = 18,
48         CONNMAN_DEVICE_TYPE_VENDOR    = 10000,
49 };
50
51 enum connman_device_mode {
52         CONNMAN_DEVICE_MODE_UNKNOWN          = 0,
53         CONNMAN_DEVICE_MODE_NETWORK_SINGLE   = 1,
54         CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE = 2,
55         CONNMAN_DEVICE_MODE_TRANSPORT_IP     = 3,
56 };
57
58 enum connman_device_policy {
59         CONNMAN_DEVICE_POLICY_UNKNOWN = 0,
60         CONNMAN_DEVICE_POLICY_IGNORE  = 1,
61         CONNMAN_DEVICE_POLICY_OFF     = 2,
62         CONNMAN_DEVICE_POLICY_AUTO    = 3,
63         CONNMAN_DEVICE_POLICY_MANUAL  = 4,
64 };
65
66 struct connman_device;
67
68 extern struct connman_device *connman_device_create(const char *node,
69                                                 enum connman_device_type type);
70 extern struct connman_device *connman_device_ref(struct connman_device *device);
71 extern void connman_device_unref(struct connman_device *device);
72
73 extern void connman_device_set_path(struct connman_device *device,
74                                                         const char *path);
75 extern const char *connman_device_get_path(struct connman_device *device);
76 extern void connman_device_set_index(struct connman_device *device,
77                                                                 int index);
78 extern int connman_device_get_index(struct connman_device *device);
79 extern void connman_device_set_interface(struct connman_device *device,
80                                                         const char *interface);
81 extern const char *connman_device_get_interface(struct connman_device *device);
82
83 extern void connman_device_set_policy(struct connman_device *device,
84                                         enum connman_device_policy policy);
85 extern void connman_device_set_mode(struct connman_device *device,
86                                                 enum connman_device_mode mode);
87
88 extern int connman_device_set_powered(struct connman_device *device,
89                                                 connman_bool_t powered);
90 extern int connman_device_set_carrier(struct connman_device *device,
91                                                 connman_bool_t carrier);
92 extern int connman_device_set_scanning(struct connman_device *device,
93                                                 connman_bool_t scanning);
94
95 extern int connman_device_add_network(struct connman_device *device,
96                                         struct connman_network *network);
97 extern struct connman_network *connman_device_get_network(struct connman_device *device,
98                                                         const char *identifier);
99 extern int connman_device_remove_network(struct connman_device *device,
100                                                         const char *identifier);
101
102 extern int connman_device_register(struct connman_device *device);
103 extern void connman_device_unregister(struct connman_device *device);
104
105 extern void *connman_device_get_data(struct connman_device *device);
106 extern void connman_device_set_data(struct connman_device *device, void *data);
107
108 struct connman_device_driver {
109         const char *name;
110         enum connman_device_type type;
111         int priority;
112         int (*probe) (struct connman_device *device);
113         void (*remove) (struct connman_device *device);
114         int (*enable) (struct connman_device *device);
115         int (*disable) (struct connman_device *device);
116         int (*scan) (struct connman_device *device);
117 };
118
119 extern int connman_device_driver_register(struct connman_device_driver *driver);
120 extern void connman_device_driver_unregister(struct connman_device_driver *driver);
121
122 #ifdef __cplusplus
123 }
124 #endif
125
126 #endif /* __CONNMAN_DEVICE_H */