Add skeleton for profile/service integration
[connman] / src / connman.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 #include <glib.h>
23
24 #define CONNMAN_API_SUBJECT_TO_CHANGE
25
26 #include <connman/dbus.h>
27
28 #define NM_SERVICE    "org.freedesktop.NetworkManager"
29 #define NM_PATH       "/org/freedesktop/NetworkManager"
30 #define NM_INTERFACE  NM_SERVICE
31
32 int __connman_dbus_init(DBusConnection *conn);
33 void __connman_dbus_cleanup(void);
34
35 DBusMessage *__connman_error_failed(DBusMessage *msg);
36 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg);
37 DBusMessage *__connman_error_permission_denied(DBusMessage *msg);
38 DBusMessage *__connman_error_not_supported(DBusMessage *msg);
39
40 int __connman_selftest(void);
41
42 int __connman_manager_init(DBusConnection *conn, gboolean compat);
43 void __connman_manager_cleanup(void);
44
45 int __connman_agent_init(DBusConnection *conn);
46 void __connman_agent_cleanup(void);
47
48 int __connman_agent_register(const char *sender, const char *path);
49 int __connman_agent_unregister(const char *sender, const char *path);
50
51 int __connman_profile_init(DBusConnection *conn);
52 void __connman_profile_cleanup(void);
53
54 void __connman_profile_list(DBusMessageIter *iter);
55
56 #include <connman/log.h>
57
58 int __connman_log_init(gboolean detach, gboolean debug);
59 void __connman_log_cleanup(void);
60
61 void __connman_toggle_debug(void);
62 gboolean __connman_debug_enabled(void);
63
64 #include <connman/plugin.h>
65
66 int __connman_plugin_init(const char *pattern, const char *exclude);
67 void __connman_plugin_cleanup(void);
68
69 #include <connman/security.h>
70
71 int __connman_security_check_privilege(DBusMessage *message,
72                                 enum connman_security_privilege privilege);
73
74 #include <connman/ipv4.h>
75
76 const char *__connman_ipv4_method2string(enum connman_ipv4_method method);
77 enum connman_ipv4_method __connman_ipv4_string2method(const char *method);
78
79 #include <connman/resolver.h>
80
81 int __connman_resolver_init(void);
82 void __connman_resolver_cleanup(void);
83
84 int __connman_resolver_selftest(void);
85
86 #include <connman/storage.h>
87
88 int __connman_storage_init(void);
89 void __connman_storage_cleanup(void);
90
91 int __connman_storage_init_device();
92 int __connman_storage_load_device(struct connman_device *device);
93 int __connman_storage_save_device(struct connman_device *device);
94 int __connman_storage_init_network();
95 int __connman_storage_load_network(struct connman_network *network);
96 int __connman_storage_save_network(struct connman_network *network);
97
98 #include <connman/driver.h>
99
100 void __connman_driver_rescan(struct connman_driver *driver);
101
102 #include <connman/element.h>
103
104 int __connman_element_init(DBusConnection *conn, const char *device,
105                                                         const char *nodevice);
106 void __connman_element_start(void);
107 void __connman_element_stop(void);
108 void __connman_element_cleanup(void);
109
110 void __connman_element_initialize(struct connman_element *element);
111
112 typedef void (* element_cb_t) (struct connman_element *element,
113                                                         gpointer user_data);
114
115 void __connman_element_foreach(struct connman_element *element,
116                                 enum connman_element_type type,
117                                 element_cb_t callback, gpointer user_data);
118 void __connman_element_list(struct connman_element *element,
119                                         enum connman_element_type type,
120                                                         DBusMessageIter *iter);
121 int __connman_element_count(struct connman_element *element,
122                                         enum connman_element_type type);
123
124 const char *__connman_element_get_device(struct connman_element *element);
125 const char *__connman_element_get_network(struct connman_element *element);
126
127 const char *__connman_element_type2string(enum connman_element_type type);
128
129 static inline void __connman_element_lock(struct connman_element *element)
130 {
131 }
132
133 static inline void __connman_element_unlock(struct connman_element *element)
134 {
135 }
136
137 int __connman_element_append_ipv4(struct connman_element *element,
138                                                 DBusMessageIter *dict);
139 int __connman_element_set_ipv4(struct connman_element *element,
140                                 const char *name, DBusMessageIter *value);
141
142 int __connman_detect_init(void);
143 void __connman_detect_cleanup(void);
144
145 int __connman_ipv4_init(void);
146 void __connman_ipv4_cleanup(void);
147
148 int __connman_connection_init(void);
149 void __connman_connection_cleanup(void);
150
151 #ifdef HAVE_UDEV
152 int __connman_udev_init(void);
153 void __connman_udev_cleanup(void);
154 #else
155 static inline int __connman_udev_init(void)
156 {
157         return 0;
158 }
159
160 static inline void __connman_udev_cleanup(void)
161 {
162 }
163 #endif
164
165 #include <connman/device.h>
166
167 int __connman_device_init(void);
168 void __connman_device_cleanup(void);
169
170 void __connman_device_increase_connections(struct connman_device *device);
171 void __connman_device_decrease_connections(struct connman_device *device);
172
173 void __connman_device_set_network(struct connman_device *device,
174                                         struct connman_network *network);
175
176 void __connman_device_disconnect(struct connman_device *device);
177
178 connman_bool_t __connman_device_has_driver(struct connman_device *device);
179
180 int __connman_device_set_offlinemode(connman_bool_t offlinemode);
181
182 int __connman_profile_add_device(struct connman_device *device);
183 int __connman_profile_remove_device(struct connman_device *device);
184
185 #include <connman/network.h>
186
187 int __connman_network_init(void);
188 void __connman_network_cleanup(void);
189
190 void __connman_network_set_device(struct connman_network *network,
191                                         struct connman_device *device);
192
193 int __connman_network_disconnect(struct connman_network *network);
194
195 connman_bool_t __connman_network_has_driver(struct connman_network *network);
196
197 int __connman_profile_add_network(struct connman_network *network);
198 int __connman_profile_remove_network(struct connman_network *network);
199
200 #include <connman/rtnl.h>
201
202 int __connman_rtnl_init(void);
203 void __connman_rtnl_cleanup(void);
204
205 int __connman_rtnl_send(const void *buf, size_t len);