Update resolver plugin infrastructure
[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         CONNMAN_ELEMENT_TYPE_RESOLVER   = 9,
52
53         CONNMAN_ELEMENT_TYPE_CONNECTION = 42,
54 };
55
56 enum connman_element_subtype {
57         CONNMAN_ELEMENT_SUBTYPE_UNKNOWN   = 0,
58         CONNMAN_ELEMENT_SUBTYPE_ETHERNET  = 1,
59         CONNMAN_ELEMENT_SUBTYPE_WIFI      = 2,
60         CONNMAN_ELEMENT_SUBTYPE_WIMAX     = 3,
61         CONNMAN_ELEMENT_SUBTYPE_MODEM     = 4,
62         CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH = 5,
63 };
64
65 struct connman_driver;
66
67 struct connman_element {
68         gint refcount;
69         gchar *name;
70         gchar *path;
71         enum connman_element_type type;
72         enum connman_element_subtype subtype;
73         enum connman_element_state state;
74         guint16 priority;
75
76         struct connman_element *parent;
77
78         struct connman_driver *driver;
79         void *driver_data;
80
81         GSList *properties;
82
83         struct {
84                 int index;
85                 short flags;
86                 gchar *name;
87         } netdev;
88
89         struct {
90                 gchar *address;
91                 gchar *netmask;
92                 gchar *gateway;
93                 gchar *network;
94                 gchar *broadcast;
95                 gchar *nameserver;
96         } ipv4;
97 };
98
99 extern struct connman_element *connman_element_create(void);
100 extern struct connman_element *connman_element_ref(struct connman_element *element);
101 extern void connman_element_unref(struct connman_element *element);
102
103 extern int connman_element_add_static_property(struct connman_element *element,
104                                 const char *name, int type, const void *value);
105 extern int connman_element_set_property(struct connman_element *element,
106                         enum connman_property_type type, const void *value);
107 extern int connman_element_get_value(struct connman_element *element,
108                                 enum connman_property_type type, void *value);
109
110 extern int connman_element_register(struct connman_element *element,
111                                         struct connman_element *parent);
112 extern void connman_element_unregister(struct connman_element *element);
113 extern void connman_element_update(struct connman_element *element);
114
115 static inline void *connman_element_get_data(struct connman_element *element)
116 {
117         return element->driver_data;
118 }
119
120 static inline void connman_element_set_data(struct connman_element *element,
121                                                                 void *data)
122 {
123         element->driver_data = data;
124 }
125
126 #ifdef __cplusplus
127 }
128 #endif
129
130 #endif /* __CONNMAN_ELEMENT_H */