5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
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.
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.
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
24 #define CONNMAN_API_SUBJECT_TO_CHANGE
26 #include <connman/dbus.h>
28 int __connman_dbus_init(DBusConnection *conn);
29 void __connman_dbus_cleanup(void);
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);
52 #include <connman/types.h>
54 int __connman_manager_init(void);
55 void __connman_manager_cleanup(void);
57 int __connman_clock_init(void);
58 void __connman_clock_cleanup(void);
60 void __connman_clock_update_timezone(void);
62 int __connman_timezone_init(void);
63 void __connman_timezone_cleanup(void);
65 char *__connman_timezone_lookup(void);
66 int __connman_timezone_change(const char *zone);
68 int __connman_agent_init(void);
69 void __connman_agent_cleanup(void);
71 int __connman_agent_register(const char *sender, const char *path);
72 int __connman_agent_unregister(const char *sender, const char *path);
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);
80 int __connman_counter_init(void);
81 void __connman_counter_cleanup(void);
83 struct connman_service;
85 void __connman_service_add_passphrase(struct connman_service *service,
86 const gchar *passphrase);
87 typedef void (* authentication_cb_t) (struct connman_service *service,
88 connman_bool_t values_received,
89 const char *name, int name_len,
90 const char *identifier, const char *secret,
92 typedef void (* report_error_cb_t) (struct connman_service *service,
93 gboolean retry, void *user_data);
94 int __connman_agent_request_passphrase_input(struct connman_service *service,
95 authentication_cb_t callback, void *user_data);
96 int __connman_agent_request_login_input(struct connman_service *service,
97 authentication_cb_t callback, void *user_data);
98 int __connman_agent_report_error(struct connman_service *service,
100 report_error_cb_t callback, void *user_data);
103 #include <connman/log.h>
105 int __connman_log_init(const char *program, const char *debug,
106 connman_bool_t detach);
107 void __connman_log_cleanup(void);
108 void __connman_log_enable(struct connman_debug_desc *start,
109 struct connman_debug_desc *stop);
111 void __connman_debug_list_available(DBusMessageIter *iter, void *user_data);
112 void __connman_debug_list_enabled(DBusMessageIter *iter, void *user_data);
114 #include <connman/option.h>
116 #include <connman/setting.h>
118 #include <connman/plugin.h>
120 int __connman_plugin_init(const char *pattern, const char *exclude);
121 void __connman_plugin_cleanup(void);
123 #include <connman/task.h>
125 int __connman_task_init(void);
126 void __connman_task_cleanup(void);
128 #include <connman/inet.h>
130 int __connman_inet_modify_address(int cmd, int flags, int index, int family,
133 unsigned char prefixlen,
134 const char *broadcast);
136 #include <netinet/ip6.h>
137 #include <netinet/icmp6.h>
139 typedef void (*__connman_inet_rs_cb_t) (struct nd_router_advert *reply,
140 unsigned int length, void *user_data);
142 int __connman_inet_ipv6_send_rs(int index, int timeout,
143 __connman_inet_rs_cb_t callback, void *user_data);
144 GSList *__connman_inet_ipv6_get_prefixes(struct nd_router_advert *hdr,
145 unsigned int length);
147 #include <connman/resolver.h>
149 int __connman_resolver_init(connman_bool_t dnsproxy);
150 void __connman_resolver_cleanup(void);
151 int __connman_resolvfile_append(const char *interface, const char *domain, const char *server);
152 int __connman_resolvfile_remove(const char *interface, const char *domain, const char *server);
154 void __connman_storage_migrate(void);
155 GKeyFile *__connman_storage_open_global();
156 GKeyFile *__connman_storage_load_global();
157 void __connman_storage_save_global(GKeyFile *keyfile);
158 void __connman_storage_delete_global();
160 GKeyFile *__connman_storage_load_config(const char *ident);
161 void __connman_storage_save_config(GKeyFile *keyfile, const char *ident);
162 void __connman_storage_delete_config(const char *ident);
164 GKeyFile *__connman_storage_open_service(const char *ident);
165 void __connman_storage_save_service(GKeyFile *keyfile, const char *ident);
166 GKeyFile *__connman_storage_load_provider(const char *identifier);
167 void __connman_storage_save_provider(GKeyFile *keyfile, const char *identifier);
169 int __connman_detect_init(void);
170 void __connman_detect_cleanup(void);
172 #include <connman/proxy.h>
174 int __connman_proxy_init(void);
175 void __connman_proxy_cleanup(void);
177 #include <connman/ipconfig.h>
179 int __connman_ipconfig_init(void);
180 void __connman_ipconfig_cleanup(void);
182 struct rtnl_link_stats;
184 void __connman_ipconfig_newlink(int index, unsigned short type,
185 unsigned int flags, const char *address,
187 struct rtnl_link_stats *stats);
188 void __connman_ipconfig_dellink(int index, struct rtnl_link_stats *stats);
189 void __connman_ipconfig_newaddr(int index, int family, const char *label,
190 unsigned char prefixlen, const char *address);
191 void __connman_ipconfig_deladdr(int index, int family, const char *label,
192 unsigned char prefixlen, const char *address);
193 void __connman_ipconfig_newroute(int index, int family, unsigned char scope,
194 const char *dst, const char *gateway);
195 void __connman_ipconfig_delroute(int index, int family, unsigned char scope,
196 const char *dst, const char *gateway);
198 void __connman_ipconfig_foreach(void (*function) (int index, void *user_data),
200 enum connman_ipconfig_type __connman_ipconfig_get_config_type(
201 struct connman_ipconfig *ipconfig);
202 unsigned short __connman_ipconfig_get_type_from_index(int index);
203 unsigned int __connman_ipconfig_get_flags_from_index(int index);
204 const char *__connman_ipconfig_get_gateway_from_index(int index);
205 void __connman_ipconfig_set_index(struct connman_ipconfig *ipconfig, int index);
207 const char *__connman_ipconfig_get_local(struct connman_ipconfig *ipconfig);
208 void __connman_ipconfig_set_local(struct connman_ipconfig *ipconfig, const char *address);
209 const char *__connman_ipconfig_get_peer(struct connman_ipconfig *ipconfig);
210 void __connman_ipconfig_set_peer(struct connman_ipconfig *ipconfig, const char *address);
211 const char *__connman_ipconfig_get_broadcast(struct connman_ipconfig *ipconfig);
212 void __connman_ipconfig_set_broadcast(struct connman_ipconfig *ipconfig, const char *broadcast);
213 const char *__connman_ipconfig_get_gateway(struct connman_ipconfig *ipconfig);
214 void __connman_ipconfig_set_gateway(struct connman_ipconfig *ipconfig, const char *gateway);
215 unsigned char __connman_ipconfig_get_prefixlen(struct connman_ipconfig *ipconfig);
216 void __connman_ipconfig_set_prefixlen(struct connman_ipconfig *ipconfig, unsigned char prefixlen);
218 int __connman_ipconfig_enable(struct connman_ipconfig *ipconfig);
219 int __connman_ipconfig_disable(struct connman_ipconfig *ipconfig);
221 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method);
222 const char *__connman_ipconfig_type2string(enum connman_ipconfig_type type);
223 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method);
225 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
226 DBusMessageIter *iter);
227 void __connman_ipconfig_append_ipv4config(struct connman_ipconfig *ipconfig,
228 DBusMessageIter *iter);
229 void __connman_ipconfig_append_ipv6(struct connman_ipconfig *ipconfig,
230 DBusMessageIter *iter,
231 struct connman_ipconfig *ip4config);
232 void __connman_ipconfig_append_ipv6config(struct connman_ipconfig *ipconfig,
233 DBusMessageIter *iter);
234 int __connman_ipconfig_set_config(struct connman_ipconfig *ipconfig,
235 DBusMessageIter *array);
236 void __connman_ipconfig_append_ethernet(struct connman_ipconfig *ipconfig,
237 DBusMessageIter *iter);
238 enum connman_ipconfig_method __connman_ipconfig_get_method(
239 struct connman_ipconfig *ipconfig);
241 int __connman_ipconfig_address_add(struct connman_ipconfig *ipconfig);
242 int __connman_ipconfig_address_remove(struct connman_ipconfig *ipconfig);
243 int __connman_ipconfig_address_unset(struct connman_ipconfig *ipconfig);
244 int __connman_ipconfig_gateway_add(struct connman_ipconfig *ipconfig);
245 void __connman_ipconfig_gateway_remove(struct connman_ipconfig *ipconfig);
246 unsigned char __connman_ipconfig_netmask_prefix_len(const char *netmask);
248 int __connman_ipconfig_set_proxy_autoconfig(struct connman_ipconfig *ipconfig,
250 const char *__connman_ipconfig_get_proxy_autoconfig(struct connman_ipconfig *ipconfig);
251 void __connman_ipconfig_set_dhcp_address(struct connman_ipconfig *ipconfig,
252 const char *address);
253 char *__connman_ipconfig_get_dhcp_address(struct connman_ipconfig *ipconfig);
255 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
256 GKeyFile *keyfile, const char *identifier, const char *prefix);
257 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
258 GKeyFile *keyfile, const char *identifier, const char *prefix);
259 gboolean __connman_ipconfig_ipv6_privacy_enabled(struct connman_ipconfig *ipconfig);
261 int __connman_ipconfig_set_rp_filter();
262 void __connman_ipconfig_unset_rp_filter(int old_value);
264 #include <connman/utsname.h>
266 int __connman_utsname_set_hostname(const char *hostname);
267 int __connman_utsname_set_domainname(const char *domainname);
269 #include <connman/timeserver.h>
271 int __connman_timeserver_init(void);
272 void __connman_timeserver_cleanup(void);
274 typedef void (* dhcp_cb) (struct connman_network *network,
275 connman_bool_t success);
276 int __connman_dhcp_start(struct connman_network *network, dhcp_cb callback);
277 void __connman_dhcp_stop(struct connman_network *network);
278 int __connman_dhcp_init(void);
279 void __connman_dhcp_cleanup(void);
280 int __connman_dhcpv6_init(void);
281 void __connman_dhcpv6_cleanup(void);
282 int __connman_dhcpv6_start_info(struct connman_network *network,
284 void __connman_dhcpv6_stop(struct connman_network *network);
285 int __connman_dhcpv6_start(struct connman_network *network,
286 GSList *prefixes, dhcp_cb callback);
288 int __connman_ipv4_init(void);
289 void __connman_ipv4_cleanup(void);
291 int __connman_connection_init(void);
292 void __connman_connection_cleanup(void);
294 int __connman_connection_gateway_add(struct connman_service *service,
296 enum connman_ipconfig_type type,
298 void __connman_connection_gateway_remove(struct connman_service *service,
299 enum connman_ipconfig_type type);
301 gboolean __connman_connection_update_gateway(void);
302 void __connman_connection_gateway_activate(struct connman_service *service,
303 enum connman_ipconfig_type type);
305 int __connman_ntp_start(const char *interface, const char *resolver,
307 void __connman_ntp_stop(const char *interface);
309 int __connman_wpad_init(void);
310 void __connman_wpad_cleanup(void);
311 int __connman_wpad_start(struct connman_service *service);
312 void __connman_wpad_stop(struct connman_service *service);
314 int __connman_wispr_init(void);
315 void __connman_wispr_cleanup(void);
316 int __connman_wispr_start(struct connman_service *service,
317 enum connman_ipconfig_type type);
318 void __connman_wispr_stop(struct connman_service *service);
320 #include <connman/technology.h>
322 void __connman_technology_list_struct(DBusMessageIter *array);
324 int __connman_technology_add_device(struct connman_device *device);
325 int __connman_technology_remove_device(struct connman_device *device);
326 int __connman_technology_enabled(enum connman_service_type type);
327 int __connman_technology_enable(enum connman_service_type type, DBusMessage *msg);
328 int __connman_technology_disabled(enum connman_service_type type);
329 int __connman_technology_disable(enum connman_service_type type, DBusMessage *msg);
330 int __connman_technology_set_offlinemode(connman_bool_t offlinemode);
331 connman_bool_t __connman_technology_get_offlinemode(void);
333 int __connman_technology_add_rfkill(unsigned int index,
334 enum connman_service_type type,
335 connman_bool_t softblock,
336 connman_bool_t hardblock);
337 int __connman_technology_update_rfkill(unsigned int index,
338 enum connman_service_type type,
339 connman_bool_t softblock,
340 connman_bool_t hardblock);
341 int __connman_technology_remove_rfkill(unsigned int index,
342 enum connman_service_type type);
344 void __connman_technology_add_interface(enum connman_service_type type,
345 int index, const char *name, const char *ident);
346 void __connman_technology_remove_interface(enum connman_service_type type,
347 int index, const char *name, const char *ident);
349 #include <connman/device.h>
351 int __connman_device_init(const char *device, const char *nodevice);
352 void __connman_device_cleanup(void);
354 void __connman_device_list(DBusMessageIter *iter, void *user_data);
356 enum connman_service_type __connman_device_get_service_type(struct connman_device *device);
357 struct connman_device *__connman_device_find_device(enum connman_service_type type);
358 int __connman_device_request_scan(enum connman_service_type type);
359 int __connman_device_request_hidden_scan(struct connman_device *device,
360 const char *ssid, unsigned int ssid_len,
361 const char *identity, const char *passphrase);
363 connman_bool_t __connman_device_isfiltered(const char *devname);
365 int __connman_device_get_phyindex(struct connman_device *device);
366 void __connman_device_set_phyindex(struct connman_device *device,
369 void __connman_device_set_network(struct connman_device *device,
370 struct connman_network *network);
371 void __connman_device_cleanup_networks(struct connman_device *device);
373 int __connman_device_enable(struct connman_device *device);
374 int __connman_device_disable(struct connman_device *device);
375 int __connman_device_disconnect(struct connman_device *device);
377 connman_bool_t __connman_device_scanning(struct connman_device *device);
379 connman_bool_t __connman_device_has_driver(struct connman_device *device);
381 void __connman_device_set_reconnect(struct connman_device *device,
382 connman_bool_t reconnect);
383 connman_bool_t __connman_device_get_reconnect(struct connman_device *device);
385 const char *__connman_device_get_type(struct connman_device *device);
387 int __connman_rfkill_init(void);
388 void __connman_rfkill_cleanup(void);
389 int __connman_rfkill_block(enum connman_service_type type, connman_bool_t block);
391 #include <connman/network.h>
393 int __connman_network_init(void);
394 void __connman_network_cleanup(void);
396 void __connman_network_set_device(struct connman_network *network,
397 struct connman_device *device);
399 int __connman_network_connect(struct connman_network *network);
400 int __connman_network_disconnect(struct connman_network *network);
401 int __connman_network_clear_ipconfig(struct connman_network *network,
402 struct connman_ipconfig *ipconfig);
403 int __connman_network_set_ipconfig(struct connman_network *network,
404 struct connman_ipconfig *ipconfig_ipv4,
405 struct connman_ipconfig *ipconfig_ipv6);
407 connman_bool_t __connman_network_has_driver(struct connman_network *network);
409 const char *__connman_network_get_type(struct connman_network *network);
410 const char *__connman_network_get_group(struct connman_network *network);
411 const char *__connman_network_get_ident(struct connman_network *network);
412 connman_bool_t __connman_network_get_weakness(struct connman_network *network);
414 int __connman_config_init();
415 void __connman_config_cleanup(void);
417 int __connman_config_load_service(GKeyFile *keyfile, const char *group, connman_bool_t persistent);
418 int __connman_config_provision_service(struct connman_service *service);
419 int __connman_config_provision_service_ident(struct connman_service *service,
422 int __connman_tethering_init(void);
423 void __connman_tethering_cleanup(void);
425 const char *__connman_tethering_get_bridge(void);
426 void __connman_tethering_update_interface(const char *interface);
427 void __connman_tethering_set_enabled(void);
428 void __connman_tethering_set_disabled(void);
430 int __connman_private_network_request(DBusMessage *msg, const char *owner);
431 int __connman_private_network_release(const char *path);
433 #include <connman/provider.h>
435 void __connman_provider_append_properties(struct connman_provider *provider, DBusMessageIter *iter);
436 void __connman_provider_list(DBusMessageIter *iter, void *user_data);
437 int __connman_provider_create_and_connect(DBusMessage *msg);
438 const char * __connman_provider_get_ident(struct connman_provider *provider);
439 int __connman_provider_indicate_state(struct connman_provider *provider,
440 enum connman_provider_state state);
441 int __connman_provider_indicate_error(struct connman_provider *provider,
442 enum connman_provider_error error);
443 int __connman_provider_connect(struct connman_provider *provider);
444 int __connman_provider_disconnect(struct connman_provider *provider);
445 int __connman_provider_remove(const char *path);
446 void __connman_provider_cleanup(void);
447 int __connman_provider_init(void);
449 #include <connman/service.h>
451 int __connman_service_init(void);
452 void __connman_service_cleanup(void);
454 void __connman_service_list(DBusMessageIter *iter, void *user_data);
455 void __connman_service_list_struct(DBusMessageIter *iter);
457 void __connman_service_put(struct connman_service *service);
459 struct connman_service *__connman_service_lookup_from_network(struct connman_network *network);
460 struct connman_service *__connman_service_lookup_from_index(int index);
461 struct connman_service *__connman_service_create_from_network(struct connman_network *network);
462 struct connman_service *__connman_service_create_from_provider(struct connman_provider *provider);
463 void __connman_service_update_from_network(struct connman_network *network);
464 void __connman_service_remove_from_network(struct connman_network *network);
465 void __connman_service_read_ip4config(struct connman_service *service);
466 void __connman_service_create_ip4config(struct connman_service *service,
468 void __connman_service_read_ip6config(struct connman_service *service);
469 void __connman_service_create_ip6config(struct connman_service *service,
471 struct connman_ipconfig *__connman_service_get_ip4config(
472 struct connman_service *service);
473 struct connman_ipconfig *__connman_service_get_ip6config(
474 struct connman_service *service);
475 struct connman_ipconfig *__connman_service_get_ipconfig(
476 struct connman_service *service, int family);
477 const char *__connman_service_get_ident(struct connman_service *service);
478 const char *__connman_service_get_path(struct connman_service *service);
479 unsigned int __connman_service_get_order(struct connman_service *service);
480 struct connman_network *__connman_service_get_network(struct connman_service *service);
481 enum connman_service_security __connman_service_get_security(struct connman_service *service);
482 const char *__connman_service_get_phase2(struct connman_service *service);
483 connman_bool_t __connman_service_wps_enabled(struct connman_service *service);
484 int __connman_service_set_favorite(struct connman_service *service,
485 connman_bool_t favorite);
486 int __connman_service_set_immutable(struct connman_service *service,
487 connman_bool_t immutable);
489 void __connman_service_set_string(struct connman_service *service,
490 const char *key, const char *value);
491 int __connman_service_online_check_failed(struct connman_service *service,
492 enum connman_ipconfig_type type);
493 int __connman_service_ipconfig_indicate_state(struct connman_service *service,
494 enum connman_service_state new_state,
495 enum connman_ipconfig_type type);
496 enum connman_service_state __connman_service_ipconfig_get_state(
497 struct connman_service *service,
498 enum connman_ipconfig_type type);
500 int __connman_service_indicate_error(struct connman_service *service,
501 enum connman_service_error error);
502 int __connman_service_clear_error(struct connman_service *service);
503 int __connman_service_indicate_default(struct connman_service *service);
505 int __connman_service_connect(struct connman_service *service);
506 int __connman_service_disconnect(struct connman_service *service);
507 int __connman_service_disconnect_all(void);
508 void __connman_service_auto_connect(void);
510 void __connman_service_provision_changed(const char *ident);
512 const char *__connman_service_type2string(enum connman_service_type type);
514 int __connman_service_nameserver_append(struct connman_service *service,
515 const char *nameserver, gboolean is_auto);
516 int __connman_service_nameserver_remove(struct connman_service *service,
517 const char *nameserver, gboolean is_auto);
518 void __connman_service_nameserver_clear(struct connman_service *service);
519 void __connman_service_nameserver_add_routes(struct connman_service *service,
521 void __connman_service_nameserver_del_routes(struct connman_service *service);
522 int __connman_service_timeserver_append(struct connman_service *service,
523 const char *timeserver);
524 int __connman_service_timeserver_remove(struct connman_service *service,
525 const char *timeserver);
526 void __connman_service_set_pac(struct connman_service *service,
528 connman_bool_t __connman_service_is_hidden(struct connman_service *service);
529 int __connman_service_get_index(struct connman_service *service);
530 void __connman_service_set_domainname(struct connman_service *service,
531 const char *domainname);
532 const char *__connman_service_get_domainname(struct connman_service *service);
533 const char *__connman_service_get_nameserver(struct connman_service *service);
534 void __connman_service_set_proxy_autoconfig(struct connman_service *service,
537 void __connman_service_set_identity(struct connman_service *service,
538 const char *identity);
539 void __connman_service_set_agent_identity(struct connman_service *service,
540 const char *agent_identity);
541 void __connman_service_set_passphrase(struct connman_service *service,
542 const char* passphrase);
543 void __connman_service_set_agent_passphrase(struct connman_service *service,
544 const char *agent_passphrase);
546 void __connman_service_notify(struct connman_service *service,
547 unsigned int rx_packets, unsigned int tx_packets,
548 unsigned int rx_bytes, unsigned int tx_bytes,
549 unsigned int rx_error, unsigned int tx_error,
550 unsigned int rx_dropped, unsigned int tx_dropped);
552 int __connman_service_counter_register(const char *counter);
553 void __connman_service_counter_unregister(const char *counter);
555 struct connman_session;
556 struct service_entry;
557 typedef connman_bool_t (* service_match_cb) (struct connman_session *session,
558 struct connman_service *service);
559 typedef struct service_entry* (* create_service_entry_cb) (
560 struct connman_service *service,
562 enum connman_service_state state);
564 GSequence *__connman_service_get_list(struct connman_session *session,
565 service_match_cb service_match,
566 create_service_entry_cb create_service_entry,
567 GDestroyNotify destroy_service_entry);
569 void __connman_service_session_inc(struct connman_service *service);
570 connman_bool_t __connman_service_session_dec(struct connman_service *service);
572 #include <connman/notifier.h>
574 int __connman_technology_init(void);
575 void __connman_technology_cleanup(void);
577 int __connman_notifier_init(void);
578 void __connman_notifier_cleanup(void);
580 void __connman_notifier_register(enum connman_service_type type);
581 void __connman_notifier_unregister(enum connman_service_type type);
582 void __connman_notifier_service_add(struct connman_service *service,
584 void __connman_notifier_service_remove(struct connman_service *service);
585 void __connman_notifier_enable(enum connman_service_type type);
586 void __connman_notifier_disable(enum connman_service_type type);
587 void __connman_notifier_connect(enum connman_service_type type);
588 void __connman_notifier_disconnect(enum connman_service_type type);
589 void __connman_notifier_offlinemode(connman_bool_t enabled);
590 void __connman_notifier_default_changed(struct connman_service *service);
591 void __connman_notifier_proxy_changed(struct connman_service *service);
592 void __connman_notifier_service_state_changed(struct connman_service *service,
593 enum connman_service_state state);
594 void __connman_notifier_ipconfig_changed(struct connman_service *service,
595 struct connman_ipconfig *ipconfig);
597 connman_bool_t __connman_notifier_is_registered(enum connman_service_type type);
598 connman_bool_t __connman_notifier_is_enabled(enum connman_service_type type);
599 unsigned int __connman_notifier_count_connected(void);
600 const char *__connman_notifier_get_state(void);
602 #include <connman/rtnl.h>
604 int __connman_rtnl_init(void);
605 void __connman_rtnl_start(void);
606 void __connman_rtnl_cleanup(void);
608 enum connman_device_type __connman_rtnl_get_device_type(int index);
609 unsigned int __connman_rtnl_update_interval_add(unsigned int interval);
610 unsigned int __connman_rtnl_update_interval_remove(unsigned int interval);
611 int __connman_rtnl_request_update(void);
612 int __connman_rtnl_send(const void *buf, size_t len);
614 connman_bool_t __connman_session_mode();
615 void __connman_session_set_mode(connman_bool_t enable);
617 int __connman_session_create(DBusMessage *msg);
618 int __connman_session_destroy(DBusMessage *msg);
620 int __connman_session_init(void);
621 void __connman_session_cleanup(void);
623 struct connman_stats_data {
624 unsigned int rx_packets;
625 unsigned int tx_packets;
626 unsigned int rx_bytes;
627 unsigned int tx_bytes;
628 unsigned int rx_errors;
629 unsigned int tx_errors;
630 unsigned int rx_dropped;
631 unsigned int tx_dropped;
635 int __connman_stats_init(void);
636 void __connman_stats_cleanup(void);
637 int __connman_stats_service_register(struct connman_service *service);
638 void __connman_stats_service_unregister(struct connman_service *service);
639 int __connman_stats_update(struct connman_service *service,
640 connman_bool_t roaming,
641 struct connman_stats_data *data);
642 int __connman_stats_get(struct connman_service *service,
643 connman_bool_t roaming,
644 struct connman_stats_data *data);
646 int __connman_iptables_init(void);
647 void __connman_iptables_cleanup(void);
648 int __connman_iptables_command(const char *format, ...)
649 __attribute__((format(printf, 1, 2)));
650 int __connman_iptables_commit(const char *table_name);
652 int __connman_dnsproxy_init(void);
653 void __connman_dnsproxy_cleanup(void);
654 int __connman_dnsproxy_add_listener(const char *interface);
655 void __connman_dnsproxy_remove_listener(const char *interface);
656 int __connman_dnsproxy_append(const char *interface, const char *domain, const char *server);
657 int __connman_dnsproxy_remove(const char *interface, const char *domain, const char *server);
658 void __connman_dnsproxy_flush(void);
660 int __connman_6to4_probe(struct connman_service *service);
661 void __connman_6to4_remove(struct connman_ipconfig *ipconfig);
662 int __connman_6to4_check(struct connman_ipconfig *ipconfig);