Add support for creating and removing networks
[connman] / src / connman.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007  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 <stdio.h>
23
24 #include <glib.h>
25
26 #include <dbus/dbus.h>
27
28 #define CONNMAN_SERVICE  "org.freedesktop.connman"
29
30 #define CONNMAN_ERROR_INTERFACE  CONNMAN_SERVICE ".Error"
31
32 #define CONNMAN_AGENT_INTERFACE  CONNMAN_SERVICE ".Agent"
33
34 #define CONNMAN_MANAGER_PATH       "/"
35 #define CONNMAN_MANAGER_INTERFACE  CONNMAN_SERVICE ".Manager"
36
37 #define CONNMAN_IFACE_BASEPATH  "/interface"
38 #define CONNMAN_IFACE_INTERFACE  CONNMAN_SERVICE ".Interface"
39
40 #define CONNMAN_NETWORK_INTERFACE  CONNMAN_SERVICE ".Network"
41
42 #define NM_SERVICE    "org.freedesktop.NetworkManager"
43 #define NM_PATH       "/org/freedesktop/NetworkManager"
44 #define NM_INTERFACE  NM_SERVICE
45 #define NM_DEVICE     NM_SERVICE ".Devices"
46
47 int __connman_manager_init(DBusConnection *conn, int compat);
48 void __connman_manager_cleanup(void);
49
50 int __connman_agent_init(DBusConnection *conn);
51 void __connman_agent_cleanup(void);
52
53 int __connman_agent_register(const char *sender, const char *path);
54 int __connman_agent_unregister(const char *sender, const char *path);
55
56 #include <connman/log.h>
57
58 int __connman_log_init(int detach, int debug);
59 void __connman_log_cleanup(void);
60
61 #include <connman/plugin.h>
62
63 int __connman_plugin_init(void);
64 void __connman_plugin_cleanup(void);
65
66 #include <connman/iface.h>
67
68 int __connman_iface_init(DBusConnection *conn, const char *interface);
69 void __connman_iface_cleanup(void);
70
71 struct connman_iface *__connman_iface_find(int index);
72 void __connman_iface_list(DBusMessageIter *iter);
73 gboolean __connman_iface_is_connected(void);
74
75 int __connman_iface_create_identifier(struct connman_iface *iface);
76 int __connman_iface_init_via_inet(struct connman_iface *iface);
77 int __connman_iface_start(struct connman_iface *iface);
78 int __connman_iface_stop(struct connman_iface *iface);
79 int __connman_iface_connect(struct connman_iface *iface,
80                                         struct connman_network *network);
81 int __connman_iface_disconnect(struct connman_iface *iface);
82
83 char *__connman_iface_find_passphrase(struct connman_iface *iface,
84                                                         const char *network);
85 int __connman_iface_load(struct connman_iface *iface);
86 int __connman_iface_store(struct connman_iface *iface);
87 int __connman_iface_store_current_network(struct connman_iface *iface);
88 int __connman_iface_load_networks(struct connman_iface *iface);
89
90 void __connman_iface_network_list(struct connman_iface *iface,
91                                                 DBusMessageIter *iter);
92 struct connman_network *__connman_iface_find_network(struct connman_iface *iface,
93                                                                 const char *path);
94 int __connman_iface_remove_network(struct connman_iface *iface, const char *path);
95 const char *__connman_iface_add_network(struct connman_iface *iface,
96                                 const char *identifier, const char *passphrase);
97
98 int __connman_network_init(DBusConnection *conn);
99 void __connman_network_cleanup(void);
100
101 const char *__connman_iface_type2string(enum connman_iface_type type);
102 const char *__connman_iface_state2string(enum connman_iface_state state);
103 const char *__connman_iface_policy2string(enum connman_iface_policy policy);
104 enum connman_iface_policy __connman_iface_string2policy(const char *policy);
105
106 const char *__connman_ipv4_method2string(enum connman_ipv4_method method);
107 enum connman_ipv4_method __connman_ipv4_string2method(const char *method);
108
109 #include <connman/rtnl.h>
110
111 int __connman_rtnl_init(void);
112 void __connman_rtnl_cleanup(void);
113
114 int __connman_rtnl_send(const void *buf, size_t len);
115
116 #include <connman/dhcp.h>
117
118 int __connman_dhcp_request(struct connman_iface *iface);
119 int __connman_dhcp_release(struct connman_iface *iface);
120
121 #include <connman/resolver.h>
122
123 int __connman_resolver_append(struct connman_iface *iface,
124                                                 const char *nameserver);
125 int __connman_resolver_remove(struct connman_iface *iface);