Add support for detecting modem devices
[connman] / include / element.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_ELEMENT_H
23 #define __CONNMAN_ELEMENT_H
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include <errno.h>
30 #include <glib.h>
31
32 #include <connman/property.h>
33
34 enum connman_element_state {
35         CONNMAN_ELEMENT_STATE_UNKNOWN   = 0,
36         CONNMAN_ELEMENT_STATE_CONNECT   = 1,
37         CONNMAN_ELEMENT_STATE_CONNECTED = 2,
38         CONNMAN_ELEMENT_STATE_CLOSED    = 3,
39 };
40
41 enum connman_element_type {
42         CONNMAN_ELEMENT_TYPE_UNKNOWN    = 0,
43         CONNMAN_ELEMENT_TYPE_ROOT       = 1,
44         CONNMAN_ELEMENT_TYPE_DEVICE     = 2,
45         CONNMAN_ELEMENT_TYPE_NETWORK    = 3,
46         CONNMAN_ELEMENT_TYPE_IPV4       = 4,
47         CONNMAN_ELEMENT_TYPE_IPV6       = 5,
48         CONNMAN_ELEMENT_TYPE_DHCP       = 6,
49         CONNMAN_ELEMENT_TYPE_BOOTP      = 7,
50         CONNMAN_ELEMENT_TYPE_ZEROCONF   = 8,
51
52         CONNMAN_ELEMENT_TYPE_CONNECTION = 42,
53 };
54
55 enum connman_element_subtype {
56         CONNMAN_ELEMENT_SUBTYPE_UNKNOWN   = 0,
57         CONNMAN_ELEMENT_SUBTYPE_ETHERNET  = 1,
58         CONNMAN_ELEMENT_SUBTYPE_WIFI      = 2,
59         CONNMAN_ELEMENT_SUBTYPE_WIMAX     = 3,
60         CONNMAN_ELEMENT_SUBTYPE_MODEM     = 4,
61         CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH = 5,
62 };
63
64 struct connman_driver;
65
66 struct connman_element {
67         gint refcount;
68         gchar *name;
69         gchar *path;
70         enum connman_element_type type;
71         enum connman_element_subtype subtype;
72         enum connman_element_state state;
73
74         struct connman_element *parent;
75
76         struct connman_driver *driver;
77         void *driver_data;
78
79         GSList *properties;
80
81         struct {
82                 int index;
83                 short flags;
84                 gchar *name;
85         } netdev;
86
87         struct {
88                 gchar *address;
89                 gchar *netmask;
90                 gchar *gateway;
91                 gchar *network;
92                 gchar *broadcast;
93                 gchar *nameserver;
94         } ipv4;
95 };
96
97 extern struct connman_element *connman_element_create(void);
98 extern struct connman_element *connman_element_ref(struct connman_element *element);
99 extern void connman_element_unref(struct connman_element *element);
100
101 extern int connman_element_add_static_property(struct connman_element *element,
102                                 const char *name, int type, const void *value);
103 extern int connman_element_set_property(struct connman_element *element,
104                         enum connman_property_type type, const void *value);
105 extern int connman_element_get_value(struct connman_element *element,
106                                 enum connman_property_type type, void *value);
107
108 extern int connman_element_register(struct connman_element *element,
109                                         struct connman_element *parent);
110 extern void connman_element_unregister(struct connman_element *element);
111 extern void connman_element_update(struct connman_element *element);
112
113 static inline void *connman_element_get_data(struct connman_element *element)
114 {
115         return element->driver_data;
116 }
117
118 static inline void connman_element_set_data(struct connman_element *element,
119                                                                 void *data)
120 {
121         element->driver_data = data;
122 }
123
124 #ifdef __cplusplus
125 }
126 #endif
127
128 #endif /* __CONNMAN_ELEMENT_H */