Add object path for the default profile
[connman] / src / connman.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 #include <glib.h>
23
24 #include <connman/dbus.h>
25
26 #define NM_SERVICE    "org.freedesktop.NetworkManager"
27 #define NM_PATH       "/org/freedesktop/NetworkManager"
28 #define NM_INTERFACE  NM_SERVICE
29
30 int __connman_storage_init(void);
31 void __connman_storage_cleanup(void);
32
33 int __connman_manager_init(DBusConnection *conn, gboolean compat);
34 void __connman_manager_cleanup(void);
35
36 int __connman_agent_init(DBusConnection *conn);
37 void __connman_agent_cleanup(void);
38
39 int __connman_agent_register(const char *sender, const char *path);
40 int __connman_agent_unregister(const char *sender, const char *path);
41
42 int __connman_profile_init(DBusConnection *conn);
43 void __connman_profile_cleanup(void);
44
45 void __connman_profile_list(DBusMessageIter *iter);
46
47 #include <connman/log.h>
48
49 int __connman_log_init(gboolean detach, gboolean debug);
50 void __connman_log_cleanup(void);
51
52 #include <connman/plugin.h>
53
54 int __connman_plugin_init(void);
55 void __connman_plugin_cleanup(void);
56
57 #include <connman/driver.h>
58 #include <connman/element.h>
59
60 int __connman_element_init(DBusConnection *conn, const char *device);
61 void __connman_element_cleanup(void);
62
63 void __connman_element_list(enum connman_element_type type,
64                                                 DBusMessageIter *iter);
65
66 const char *__connman_element_type2string(enum connman_element_type type);
67 const char *__connman_element_subtype2string(enum connman_element_subtype type);
68
69 int __connman_element_load(struct connman_element *element);
70 int __connman_element_store(struct connman_element *element);
71
72 #include <connman/iface.h>
73
74 int __connman_iface_init(DBusConnection *conn, const char *interface);
75 void __connman_iface_cleanup(void);
76
77 struct connman_iface *__connman_iface_find(int index);
78 void __connman_iface_list(DBusMessageIter *iter);
79 gboolean __connman_iface_is_connected(void);
80
81 int __connman_iface_create_identifier(struct connman_iface *iface);
82 int __connman_iface_init_via_inet(struct connman_iface *iface);
83 int __connman_iface_start(struct connman_iface *iface);
84 int __connman_iface_stop(struct connman_iface *iface);
85 int __connman_iface_connect(struct connman_iface *iface,
86                                         struct connman_network *network);
87 int __connman_iface_disconnect(struct connman_iface *iface);
88
89 char *__connman_iface_find_passphrase(struct connman_iface *iface,
90                                                         const char *network);
91 int __connman_iface_load(struct connman_iface *iface);
92 int __connman_iface_store(struct connman_iface *iface);
93 int __connman_iface_store_current_network(struct connman_iface *iface);
94 int __connman_iface_load_networks(struct connman_iface *iface);
95
96 void __connman_iface_network_list(struct connman_iface *iface,
97                                                 DBusMessageIter *iter);
98 struct connman_network *__connman_iface_find_network(struct connman_iface *iface,
99                                                                 const char *path);
100 int __connman_iface_remove_network(struct connman_iface *iface, const char *path);
101 const char *__connman_iface_add_network(struct connman_iface *iface,
102                                 const char *identifier, const char *passphrase);
103
104 int __connman_network_init(DBusConnection *conn);
105 void __connman_network_cleanup(void);
106
107 const char *__connman_iface_type2string(enum connman_iface_type type);
108 const char *__connman_iface_state2string(enum connman_iface_state state);
109 const char *__connman_iface_policy2string(enum connman_iface_policy policy);
110 enum connman_iface_policy __connman_iface_string2policy(const char *policy);
111
112 const char *__connman_ipv4_method2string(enum connman_ipv4_method method);
113 enum connman_ipv4_method __connman_ipv4_string2method(const char *method);
114
115 #include <connman/rtnl.h>
116
117 int __connman_rtnl_init(void);
118 void __connman_rtnl_cleanup(void);
119
120 int __connman_rtnl_send(const void *buf, size_t len);
121
122 #include <connman/dhcp.h>
123
124 int __connman_dhcp_request(struct connman_iface *iface);
125 int __connman_dhcp_release(struct connman_iface *iface);
126
127 #include <connman/resolver.h>
128
129 int __connman_resolver_append(struct connman_iface *iface,
130                                                 const char *nameserver);
131 int __connman_resolver_remove(struct connman_iface *iface);