technology: Redo offlinemode logic
[framework/connectivity/connman.git] / src / connman.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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 int __connman_dbus_init(DBusConnection *conn);
29 void __connman_dbus_cleanup(void);
30
31 DBusMessage *__connman_error_failed(DBusMessage *msg, int errnum);
32 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg);
33 DBusMessage *__connman_error_permission_denied(DBusMessage *msg);
34 DBusMessage *__connman_error_passphrase_required(DBusMessage *msg);
35 DBusMessage *__connman_error_not_registered(DBusMessage *msg);
36 DBusMessage *__connman_error_not_unique(DBusMessage *msg);
37 DBusMessage *__connman_error_not_supported(DBusMessage *msg);
38 DBusMessage *__connman_error_not_implemented(DBusMessage *msg);
39 DBusMessage *__connman_error_not_found(DBusMessage *msg);
40 DBusMessage *__connman_error_no_carrier(DBusMessage *msg);
41 DBusMessage *__connman_error_in_progress(DBusMessage *msg);
42 DBusMessage *__connman_error_already_exists(DBusMessage *msg);
43 DBusMessage *__connman_error_already_enabled(DBusMessage *msg);
44 DBusMessage *__connman_error_already_disabled(DBusMessage *msg);
45 DBusMessage *__connman_error_already_connected(DBusMessage *msg);
46 DBusMessage *__connman_error_not_connected(DBusMessage *msg);
47 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg);
48 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg);
49 DBusMessage *__connman_error_invalid_service(DBusMessage *msg);
50 DBusMessage *__connman_error_invalid_property(DBusMessage *msg);
51
52 #include <connman/types.h>
53
54 int __connman_manager_init(void);
55 void __connman_manager_cleanup(void);
56
57 int __connman_clock_init(void);
58 void __connman_clock_cleanup(void);
59
60 void __connman_clock_update_timezone(void);
61
62 int __connman_timezone_init(void);
63 void __connman_timezone_cleanup(void);
64
65 char *__connman_timezone_lookup(void);
66 int __connman_timezone_change(const char *zone);
67
68 int __connman_agent_init(void);
69 void __connman_agent_cleanup(void);
70
71 int __connman_agent_register(const char *sender, const char *path);
72 int __connman_agent_unregister(const char *sender, const char *path);
73
74 void __connman_counter_send_usage(const char *path,
75                                         DBusMessage *message);
76 int __connman_counter_register(const char *owner, const char *path,
77                                                 unsigned int interval);
78 int __connman_counter_unregister(const char *owner, const char *path);
79
80 int __connman_counter_init(void);
81 void __connman_counter_cleanup(void);
82
83 struct connman_service;
84
85 typedef void (* authentication_cb_t) (struct connman_service *service,
86                                 const char *identifier, const char *secret,
87                                 void *user_data);
88 typedef void (* report_error_cb_t) (struct connman_service *service,
89                                 gboolean retry, void *user_data);
90 int __connman_agent_request_input(struct connman_service *service,
91                                 authentication_cb_t callback, void *user_data);
92 int __connman_agent_report_error(struct connman_service *service,
93                                 const char *error,
94                                 report_error_cb_t callback, void *user_data);
95
96
97 #include <connman/log.h>
98
99 int __connman_log_init(const char *debug, connman_bool_t detach);
100 void __connman_log_cleanup(void);
101 void __connman_log_enable(struct connman_debug_desc *start,
102                                         struct connman_debug_desc *stop);
103
104 void __connman_debug_list_available(DBusMessageIter *iter, void *user_data);
105 void __connman_debug_list_enabled(DBusMessageIter *iter, void *user_data);
106
107 #include <connman/option.h>
108
109 #include <connman/setting.h>
110
111 #include <connman/plugin.h>
112
113 int __connman_plugin_init(const char *pattern, const char *exclude);
114 void __connman_plugin_cleanup(void);
115
116 #include <connman/task.h>
117
118 int __connman_task_init(void);
119 void __connman_task_cleanup(void);
120
121 #include <connman/inet.h>
122
123 int __connman_inet_modify_address(int cmd, int flags, int index, int family,
124                                 const char *address,
125                                 const char *peer,
126                                 unsigned char prefixlen,
127                                 const char *broadcast);
128
129 #include <netinet/ip6.h>
130 #include <netinet/icmp6.h>
131
132 typedef void (*__connman_inet_rs_cb_t) (struct nd_router_advert *reply,
133                                         void *user_data);
134
135 int __connman_inet_ipv6_send_rs(int index, int timeout,
136                         __connman_inet_rs_cb_t callback, void *user_data);
137
138 #include <connman/rfkill.h>
139
140 int __connman_rfkill_init(void);
141 void __connman_rfkill_cleanup(void);
142
143 #include <connman/resolver.h>
144
145 int __connman_resolver_init(connman_bool_t dnsproxy);
146 void __connman_resolver_cleanup(void);
147 int __connman_resolvfile_append(const char *interface, const char *domain, const char *server);
148 int __connman_resolvfile_remove(const char *interface, const char *domain, const char *server);
149
150 #include <connman/storage.h>
151
152 int __connman_storage_init(void);
153 void __connman_storage_cleanup(void);
154
155 GKeyFile *__connman_storage_open(const char *ident, const char *suffix);
156 void __connman_storage_close(const char *ident, const char *suffix,
157                                         GKeyFile *keyfile, gboolean save);
158 void __connman_storage_delete(const char *ident, const char *suffix);
159
160 GKeyFile *__connman_storage_open_profile(const char *ident);
161 void __connman_storage_close_profile(const char *ident,
162                                         GKeyFile *keyfile, gboolean save);
163 void __connman_storage_delete_profile(const char *ident);
164
165 GKeyFile *__connman_storage_open_config(const char *ident);
166 void __connman_storage_close_config(const char *ident,
167                                         GKeyFile *keyfile, gboolean save);
168 void __connman_storage_delete_config(const char *ident);
169
170 int __connman_storage_init_profile(void);
171 int __connman_storage_load_profile(struct connman_profile *profile);
172 int __connman_storage_save_profile(struct connman_profile *profile);
173 int __connman_storage_load_service(struct connman_service *service);
174 int __connman_storage_save_service(struct connman_service *service);
175 int __connman_storage_load_device(struct connman_device *device);
176 int __connman_storage_save_device(struct connman_device *device);
177 int __connman_storage_load_technology(struct connman_technology *technology);
178 int __connman_storage_save_technology(struct connman_technology *technology);
179
180 int __connman_detect_init(void);
181 void __connman_detect_cleanup(void);
182
183 #include <connman/proxy.h>
184
185 int __connman_proxy_init(void);
186 void __connman_proxy_cleanup(void);
187
188 #include <connman/ipconfig.h>
189
190 int __connman_ipconfig_init(void);
191 void __connman_ipconfig_cleanup(void);
192
193 struct rtnl_link_stats;
194
195 void __connman_ipconfig_newlink(int index, unsigned short type,
196                                 unsigned int flags, const char *address,
197                                                         unsigned short mtu,
198                                                 struct rtnl_link_stats *stats);
199 void __connman_ipconfig_dellink(int index, struct rtnl_link_stats *stats);
200 void __connman_ipconfig_newaddr(int index, int family, const char *label,
201                                 unsigned char prefixlen, const char *address);
202 void __connman_ipconfig_deladdr(int index, int family, const char *label,
203                                 unsigned char prefixlen, const char *address);
204 void __connman_ipconfig_newroute(int index, int family, unsigned char scope,
205                                         const char *dst, const char *gateway);
206 void __connman_ipconfig_delroute(int index, int family, unsigned char scope,
207                                         const char *dst, const char *gateway);
208
209 void __connman_ipconfig_foreach(void (*function) (int index, void *user_data),
210                                                         void *user_data);
211 enum connman_ipconfig_type __connman_ipconfig_get_config_type(
212                                         struct connman_ipconfig *ipconfig);
213 unsigned short __connman_ipconfig_get_type_from_index(int index);
214 unsigned int __connman_ipconfig_get_flags_from_index(int index);
215 const char *__connman_ipconfig_get_gateway_from_index(int index);
216 void __connman_ipconfig_set_index(struct connman_ipconfig *ipconfig, int index);
217
218 const char *__connman_ipconfig_get_local(struct connman_ipconfig *ipconfig);
219 void __connman_ipconfig_set_local(struct connman_ipconfig *ipconfig, const char *address);
220 const char *__connman_ipconfig_get_peer(struct connman_ipconfig *ipconfig);
221 void __connman_ipconfig_set_peer(struct connman_ipconfig *ipconfig, const char *address);
222 const char *__connman_ipconfig_get_broadcast(struct connman_ipconfig *ipconfig);
223 void __connman_ipconfig_set_broadcast(struct connman_ipconfig *ipconfig, const char *broadcast);
224 const char *__connman_ipconfig_get_gateway(struct connman_ipconfig *ipconfig);
225 void __connman_ipconfig_set_gateway(struct connman_ipconfig *ipconfig, const char *gateway);
226 unsigned char __connman_ipconfig_get_prefixlen(struct connman_ipconfig *ipconfig);
227 void __connman_ipconfig_set_prefixlen(struct connman_ipconfig *ipconfig, unsigned char prefixlen);
228
229 int __connman_ipconfig_enable(struct connman_ipconfig *ipconfig);
230 int __connman_ipconfig_disable(struct connman_ipconfig *ipconfig);
231
232 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method);
233 const char *__connman_ipconfig_type2string(enum connman_ipconfig_type type);
234 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method);
235
236 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
237                                                         DBusMessageIter *iter);
238 void __connman_ipconfig_append_ipv4config(struct connman_ipconfig *ipconfig,
239                                                         DBusMessageIter *iter);
240 void __connman_ipconfig_append_ipv6(struct connman_ipconfig *ipconfig,
241                                         DBusMessageIter *iter,
242                                         struct connman_ipconfig *ip4config);
243 void __connman_ipconfig_append_ipv6config(struct connman_ipconfig *ipconfig,
244                                                         DBusMessageIter *iter);
245 int __connman_ipconfig_set_config(struct connman_ipconfig *ipconfig,
246                                                         DBusMessageIter *array);
247 void __connman_ipconfig_append_ethernet(struct connman_ipconfig *ipconfig,
248                                                         DBusMessageIter *iter);
249 enum connman_ipconfig_method __connman_ipconfig_get_method(
250                                 struct connman_ipconfig *ipconfig);
251
252 int __connman_ipconfig_address_add(struct connman_ipconfig *ipconfig);
253 int __connman_ipconfig_address_remove(struct connman_ipconfig *ipconfig);
254 int __connman_ipconfig_address_unset(struct connman_ipconfig *ipconfig);
255 int __connman_ipconfig_gateway_add(struct connman_ipconfig *ipconfig);
256 void __connman_ipconfig_gateway_remove(struct connman_ipconfig *ipconfig);
257 unsigned char __connman_ipconfig_netmask_prefix_len(const char *netmask);
258
259 int __connman_ipconfig_set_proxy_autoconfig(struct connman_ipconfig *ipconfig,
260                                                         const char *url);
261 const char *__connman_ipconfig_get_proxy_autoconfig(struct connman_ipconfig *ipconfig);
262 void __connman_ipconfig_set_dhcp_address(struct connman_ipconfig *ipconfig,
263                                         const char *address);
264 char *__connman_ipconfig_get_dhcp_address(struct connman_ipconfig *ipconfig);
265
266 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
267                 GKeyFile *keyfile, const char *identifier, const char *prefix);
268 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
269                 GKeyFile *keyfile, const char *identifier, const char *prefix);
270
271 #include <connman/utsname.h>
272
273 int __connman_utsname_set_hostname(const char *hostname);
274 int __connman_utsname_set_domainname(const char *domainname);
275
276 #include <connman/timeserver.h>
277
278 int __connman_timeserver_init(void);
279 void __connman_timeserver_cleanup(void);
280
281 typedef void (* dhcp_cb) (struct connman_network *network,
282                                 connman_bool_t success);
283 int __connman_dhcp_start(struct connman_network *network, dhcp_cb callback);
284 void __connman_dhcp_stop(struct connman_network *network);
285 int __connman_dhcp_init(void);
286 void __connman_dhcp_cleanup(void);
287
288 int __connman_ipv4_init(void);
289 void __connman_ipv4_cleanup(void);
290
291 int __connman_connection_init(void);
292 void __connman_connection_cleanup(void);
293
294 int __connman_connection_gateway_add(struct connman_service *service,
295                                         const char *gateway,
296                                         enum connman_ipconfig_type type,
297                                         const char *peer);
298 void __connman_connection_gateway_remove(struct connman_service *service,
299                                         enum connman_ipconfig_type type);
300
301 gboolean __connman_connection_update_gateway(void);
302 void __connman_connection_gateway_activate(struct connman_service *service,
303                                         enum connman_ipconfig_type type);
304
305 int __connman_wpad_init(void);
306 void __connman_wpad_cleanup(void);
307 int __connman_wpad_start(struct connman_service *service);
308 void __connman_wpad_stop(struct connman_service *service);
309
310 int __connman_wispr_init(void);
311 void __connman_wispr_cleanup(void);
312
313 #include <connman/technology.h>
314
315 void __connman_technology_list(DBusMessageIter *iter, void *user_data);
316
317 int __connman_technology_add_device(struct connman_device *device);
318 int __connman_technology_remove_device(struct connman_device *device);
319 int __connman_technology_enabled(enum connman_service_type type);
320 int __connman_technology_enable(enum connman_service_type type, DBusMessage *msg);
321 int __connman_technology_disabled(enum connman_service_type type);
322 int __connman_technology_disable(enum connman_service_type type, DBusMessage *msg);
323 int __connman_technology_set_offlinemode(connman_bool_t offlinemode);
324
325 int __connman_technology_add_rfkill(unsigned int index,
326                                         enum connman_service_type type,
327                                                 connman_bool_t softblock,
328                                                 connman_bool_t hardblock);
329 int __connman_technology_update_rfkill(unsigned int index,
330                                         enum connman_service_type type,
331                                                 connman_bool_t softblock,
332                                                 connman_bool_t hardblock);
333 int __connman_technology_remove_rfkill(unsigned int index,
334                                         enum connman_service_type type);
335
336 void __connman_technology_add_interface(enum connman_service_type type,
337                                 int index, const char *name, const char *ident);
338 void __connman_technology_remove_interface(enum connman_service_type type,
339                                 int index, const char *name, const char *ident);
340
341 connman_bool_t __connman_technology_get_blocked(enum connman_service_type type);
342
343 #include <connman/device.h>
344
345 int __connman_device_init(const char *device, const char *nodevice);
346 void __connman_device_cleanup(void);
347
348 void __connman_device_list(DBusMessageIter *iter, void *user_data);
349
350 enum connman_service_type __connman_device_get_service_type(struct connman_device *device);
351 struct connman_device *__connman_device_find_device(enum connman_service_type type);
352 int __connman_device_request_scan(enum connman_service_type type);
353
354 connman_bool_t __connman_device_isfiltered(const char *devname);
355
356 int __connman_device_get_phyindex(struct connman_device *device);
357 void __connman_device_set_phyindex(struct connman_device *device,
358                                                         int phyindex);
359 int __connman_device_set_blocked(struct connman_device *device,
360                                                 connman_bool_t blocked);
361 connman_bool_t __connman_device_get_blocked(struct connman_device *device);
362
363 void __connman_device_increase_connections(struct connman_device *device);
364 void __connman_device_decrease_connections(struct connman_device *device);
365
366 void __connman_device_set_network(struct connman_device *device,
367                                         struct connman_network *network);
368 void __connman_device_cleanup_networks(struct connman_device *device);
369
370 int __connman_device_enable(struct connman_device *device);
371 int __connman_device_enable_persistent(struct connman_device *device);
372 int __connman_device_disable(struct connman_device *device);
373 int __connman_device_disable_persistent(struct connman_device *device);
374 int __connman_device_disconnect(struct connman_device *device);
375
376 connman_bool_t __connman_device_scanning(struct connman_device *device);
377
378 connman_bool_t __connman_device_has_driver(struct connman_device *device);
379
380 void __connman_device_set_reconnect(struct connman_device *device,
381                                                 connman_bool_t reconnect);
382 connman_bool_t __connman_device_get_reconnect(struct connman_device *device);
383
384 const char *__connman_device_get_type(struct connman_device *device);
385
386 #include <connman/network.h>
387
388 int __connman_network_init(void);
389 void __connman_network_cleanup(void);
390
391 void __connman_network_set_device(struct connman_network *network,
392                                         struct connman_device *device);
393
394 int __connman_network_connect(struct connman_network *network);
395 int __connman_network_disconnect(struct connman_network *network);
396 int __connman_network_clear_ipconfig(struct connman_network *network,
397                                         struct connman_ipconfig *ipconfig);
398 int __connman_network_set_ipconfig(struct connman_network *network,
399                                 struct connman_ipconfig *ipconfig_ipv4,
400                                 struct connman_ipconfig *ipconfig_ipv6);
401
402 connman_bool_t __connman_network_has_driver(struct connman_network *network);
403
404 const char *__connman_network_get_type(struct connman_network *network);
405 const char *__connman_network_get_group(struct connman_network *network);
406 const char *__connman_network_get_ident(struct connman_network *network);
407 connman_bool_t __connman_network_get_weakness(struct connman_network *network);
408
409 int __connman_config_init();
410 void __connman_config_cleanup(void);
411
412 int __connman_config_load_service(GKeyFile *keyfile, const char *group, connman_bool_t persistent);
413 int __connman_config_provision_service(struct connman_service *service);
414 int __connman_config_provision_service_ident(struct connman_service *service,
415                                                         const char *ident);
416
417 #include <connman/profile.h>
418
419 int __connman_profile_init();
420 void __connman_profile_cleanup(void);
421
422 connman_bool_t __connman_profile_get_offlinemode(void);
423 int __connman_profile_set_offlinemode(connman_bool_t offlinemode);
424 int __connman_profile_save_default(void);
425
426 void __connman_profile_list(DBusMessageIter *iter, void *user_data);
427 const char *__connman_profile_active_ident(void);
428 const char *__connman_profile_active_path(void);
429
430 int __connman_profile_create(const char *name, const char **path);
431 int __connman_profile_remove(const char *path);
432
433 void __connman_profile_changed(gboolean delayed);
434
435 int __connman_tethering_init(void);
436 void __connman_tethering_cleanup(void);
437
438 const char *__connman_tethering_get_bridge(void);
439 void __connman_tethering_update_interface(const char *interface);
440 void __connman_tethering_set_enabled(void);
441 void __connman_tethering_set_disabled(void);
442
443 int __connman_private_network_request(DBusMessage *msg, const char *owner);
444 int __connman_private_network_release(const char *path);
445
446 #include <connman/provider.h>
447
448 void __connman_provider_append_properties(struct connman_provider *provider, DBusMessageIter *iter);
449 void __connman_provider_list(DBusMessageIter *iter, void *user_data);
450 int __connman_provider_create_and_connect(DBusMessage *msg);
451 const char * __connman_provider_get_ident(struct connman_provider *provider);
452 int __connman_provider_indicate_state(struct connman_provider *provider,
453                                         enum connman_provider_state state);
454 int __connman_provider_indicate_error(struct connman_provider *provider,
455                                         enum connman_provider_error error);
456 int __connman_provider_connect(struct connman_provider *provider);
457 int __connman_provider_disconnect(struct connman_provider *provider);
458 int __connman_provider_remove(const char *path);
459 void __connman_provider_cleanup(void);
460 int __connman_provider_init(void);
461
462 #include <connman/service.h>
463
464 int __connman_service_init(void);
465 void __connman_service_cleanup(void);
466
467 void __connman_service_list(DBusMessageIter *iter, void *user_data);
468 void __connman_service_list_struct(DBusMessageIter *iter);
469 const char *__connman_service_default(void);
470
471 void __connman_service_put(struct connman_service *service);
472
473 struct connman_service *__connman_service_lookup_from_network(struct connman_network *network);
474 struct connman_service *__connman_service_lookup_from_index(int index);
475 struct connman_service *__connman_service_create_from_network(struct connman_network *network);
476 struct connman_service *__connman_service_create_from_provider(struct connman_provider *provider);
477 void __connman_service_update_from_network(struct connman_network *network);
478 void __connman_service_remove_from_network(struct connman_network *network);
479 void __connman_service_read_ip4config(struct connman_service *service);
480 void __connman_service_create_ip4config(struct connman_service *service,
481                                                                 int index);
482 void __connman_service_read_ip6config(struct connman_service *service);
483 void __connman_service_create_ip6config(struct connman_service *service,
484                                                                 int index);
485 struct connman_ipconfig *__connman_service_get_ip4config(
486                                 struct connman_service *service);
487 struct connman_ipconfig *__connman_service_get_ip6config(
488                                 struct connman_service *service);
489 struct connman_ipconfig *__connman_service_get_ipconfig(
490                                 struct connman_service *service, int family);
491 const char *__connman_service_get_ident(struct connman_service *service);
492 const char *__connman_service_get_path(struct connman_service *service);
493 unsigned int __connman_service_get_order(struct connman_service *service);
494 struct connman_network *__connman_service_get_network(struct connman_service *service);
495 enum connman_service_security __connman_service_get_security(struct connman_service *service);
496 const char *__connman_service_get_phase2(struct connman_service *service);
497 connman_bool_t __connman_service_wps_enabled(struct connman_service *service);
498 int __connman_service_set_favorite(struct connman_service *service,
499                                                 connman_bool_t favorite);
500 int __connman_service_set_immutable(struct connman_service *service,
501                                                 connman_bool_t immutable);
502
503 void __connman_service_set_string(struct connman_service *service,
504                                         const char *key, const char *value);
505 int __connman_service_ipconfig_indicate_state(struct connman_service *service,
506                                         enum connman_service_state new_state,
507                                         enum connman_ipconfig_type type);
508
509 int __connman_service_indicate_error(struct connman_service *service,
510                                         enum connman_service_error error);
511 int __connman_service_clear_error(struct connman_service *service);
512 int __connman_service_indicate_default(struct connman_service *service);
513 int __connman_service_request_login(struct connman_service *service);
514
515 int __connman_service_lookup(const char *pattern, const char **path);
516 int __connman_service_connect(struct connman_service *service);
517 int __connman_service_disconnect(struct connman_service *service);
518 int __connman_service_disconnect_all(void);
519 int __connman_service_create_and_connect(DBusMessage *msg);
520 int __connman_service_provision(DBusMessage *msg);
521 void __connman_service_auto_connect(void);
522
523 void __connman_service_provision_changed(const char *ident);
524
525 const char *__connman_service_type2string(enum connman_service_type type);
526
527 int __connman_service_nameserver_append(struct connman_service *service,
528                                         const char *nameserver);
529 int __connman_service_nameserver_remove(struct connman_service *service,
530                                         const char *nameserver);
531 void __connman_service_nameserver_clear(struct connman_service *service);
532 void __connman_service_nameserver_add_routes(struct connman_service *service,
533                                                 const char *gw);
534 void __connman_service_nameserver_del_routes(struct connman_service *service);
535 int __connman_service_timeserver_append(struct connman_service *service,
536                                                 const char *timeserver);
537 int __connman_service_timeserver_remove(struct connman_service *service,
538                                                 const char *timeserver);
539 void __connman_service_set_pac(struct connman_service *service,
540                                         const char *pac);
541 int __connman_service_get_index(struct connman_service *service);
542 void __connman_service_set_domainname(struct connman_service *service,
543                                                 const char *domainname);
544 const char *__connman_service_get_domainname(struct connman_service *service);
545 const char *__connman_service_get_nameserver(struct connman_service *service);
546 void __connman_service_set_proxy_autoconfig(struct connman_service *service,
547                                                         const char *url);
548
549 void __connman_service_set_identity(struct connman_service *service,
550                                         const char *identity);
551 void __connman_service_set_agent_identity(struct connman_service *service,
552                                                 const char *agent_identity);
553 void __connman_service_set_passphrase(struct connman_service *service,
554                                         const char* passphrase);
555 void __connman_service_set_agent_passphrase(struct connman_service *service,
556                                                 const char *agent_passphrase);
557
558 void __connman_service_notify(struct connman_service *service,
559                         unsigned int rx_packets, unsigned int tx_packets,
560                         unsigned int rx_bytes, unsigned int tx_bytes,
561                         unsigned int rx_error, unsigned int tx_error,
562                         unsigned int rx_dropped, unsigned int tx_dropped);
563
564 int __connman_service_counter_register(const char *counter);
565 void __connman_service_counter_unregister(const char *counter);
566 void __connman_service_downgrade_state(struct connman_service *service);
567
568 struct connman_session;
569 struct service_entry;
570 typedef connman_bool_t (* service_match_cb) (struct connman_session *session,
571                                         struct connman_service *service);
572 typedef struct service_entry* (* create_service_entry_cb) (
573                                         struct connman_service *service,
574                                         const char *name,
575                                         enum connman_service_state state);
576
577 GSequence *__connman_service_get_list(struct connman_session *session,
578                                 service_match_cb service_match,
579                                 create_service_entry_cb create_service_entry,
580                                 GDestroyNotify destroy_service_entry);
581
582 void __connman_service_session_inc(struct connman_service *service);
583 connman_bool_t __connman_service_session_dec(struct connman_service *service);
584
585 #include <connman/location.h>
586
587 int __connman_location_init(void);
588 void __connman_location_cleanup(void);
589
590 struct connman_location *__connman_location_create(struct connman_service *service);
591 struct connman_location *__connman_service_get_location(struct connman_service *service);
592
593 int __connman_location_detect(struct connman_service *service);
594 int __connman_location_finish(struct connman_service *service);
595
596 #include <connman/notifier.h>
597
598 int __connman_technology_init(void);
599 void __connman_technology_cleanup(void);
600
601 int __connman_notifier_init(void);
602 void __connman_notifier_cleanup(void);
603
604 void __connman_notifier_list_registered(DBusMessageIter *iter, void *user_data);
605 void __connman_notifier_list_enabled(DBusMessageIter *iter, void *user_data);
606 void __connman_notifier_list_connected(DBusMessageIter *iter, void *user_data);
607
608 void __connman_notifier_register(enum connman_service_type type);
609 void __connman_notifier_unregister(enum connman_service_type type);
610 void __connman_notifier_service_add(struct connman_service *service,
611                                         const char *name);
612 void __connman_notifier_service_remove(struct connman_service *service);
613 void __connman_notifier_enable(enum connman_service_type type);
614 void __connman_notifier_disable(enum connman_service_type type);
615 void __connman_notifier_connect(enum connman_service_type type);
616 void __connman_notifier_disconnect(enum connman_service_type type);
617 void __connman_notifier_offlinemode(connman_bool_t enabled);
618 void __connman_notifier_default_changed(struct connman_service *service);
619 void __connman_notifier_proxy_changed(struct connman_service *service);
620 void __connman_notifier_service_state_changed(struct connman_service *service,
621                                         enum connman_service_state state);
622 void __connman_notifier_ipconfig_changed(struct connman_service *service,
623                                         struct connman_ipconfig *ipconfig);
624
625 connman_bool_t __connman_notifier_is_registered(enum connman_service_type type);
626 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type);
627 unsigned int __connman_notifier_count_connected(void);
628 const char *__connman_notifier_get_state(void);
629
630 #include <connman/rtnl.h>
631
632 int __connman_rtnl_init(void);
633 void __connman_rtnl_start(void);
634 void __connman_rtnl_cleanup(void);
635
636 enum connman_device_type __connman_rtnl_get_device_type(int index);
637 unsigned int __connman_rtnl_update_interval_add(unsigned int interval);
638 unsigned int __connman_rtnl_update_interval_remove(unsigned int interval);
639 int __connman_rtnl_request_update(void);
640 int __connman_rtnl_send(const void *buf, size_t len);
641
642 connman_bool_t __connman_session_mode();
643 void __connman_session_set_mode(connman_bool_t enable);
644
645 int __connman_session_create(DBusMessage *msg);
646 int __connman_session_destroy(DBusMessage *msg);
647
648 int __connman_session_init(void);
649 void __connman_session_cleanup(void);
650
651 struct connman_stats_data {
652         unsigned int rx_packets;
653         unsigned int tx_packets;
654         unsigned int rx_bytes;
655         unsigned int tx_bytes;
656         unsigned int rx_errors;
657         unsigned int tx_errors;
658         unsigned int rx_dropped;
659         unsigned int tx_dropped;
660         unsigned int time;
661 };
662
663 int __connman_stats_init(void);
664 void __connman_stats_cleanup(void);
665 int __connman_stats_service_register(struct connman_service *service);
666 void __connman_stats_service_unregister(struct connman_service *service);
667 int  __connman_stats_update(struct connman_service *service,
668                                 connman_bool_t roaming,
669                                 struct connman_stats_data *data);
670 int __connman_stats_get(struct connman_service *service,
671                                 connman_bool_t roaming,
672                                 struct connman_stats_data *data);
673
674 int __connman_iptables_init(void);
675 void __connman_iptables_cleanup(void);
676 int __connman_iptables_command(const char *format, ...)
677                                 __attribute__((format(printf, 1, 2)));
678 int __connman_iptables_commit(const char *table_name);
679
680 int __connman_dnsproxy_init(void);
681 void __connman_dnsproxy_cleanup(void);
682 int __connman_dnsproxy_add_listener(const char *interface);
683 void __connman_dnsproxy_remove_listener(const char *interface);
684 int __connman_dnsproxy_append(const char *interface, const char *domain, const char *server);
685 int __connman_dnsproxy_remove(const char *interface, const char *domain, const char *server);
686 void __connman_dnsproxy_flush(void);
687
688 int __connman_6to4_probe(struct connman_service *service);
689 void __connman_6to4_remove(struct connman_ipconfig *ipconfig);
690 int __connman_6to4_check(struct connman_ipconfig *ipconfig);