Add definitions for IPv4 methods
[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 DBusMessage *__connman_error_failed(DBusMessage *msg);
31 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg);
32 DBusMessage *__connman_error_permission_denied(DBusMessage *msg);
33
34 int __connman_storage_init(void);
35 void __connman_storage_cleanup(void);
36
37 int __connman_manager_init(DBusConnection *conn, gboolean compat);
38 void __connman_manager_cleanup(void);
39
40 int __connman_agent_init(DBusConnection *conn);
41 void __connman_agent_cleanup(void);
42
43 int __connman_agent_register(const char *sender, const char *path);
44 int __connman_agent_unregister(const char *sender, const char *path);
45
46 int __connman_profile_init(DBusConnection *conn);
47 void __connman_profile_cleanup(void);
48
49 void __connman_profile_list(DBusMessageIter *iter);
50
51 #include <connman/log.h>
52
53 int __connman_log_init(gboolean detach, gboolean debug);
54 void __connman_log_cleanup(void);
55
56 #include <connman/plugin.h>
57
58 int __connman_plugin_init(void);
59 void __connman_plugin_cleanup(void);
60
61 #include <connman/security.h>
62
63 int __connman_security_check_privileges(DBusMessage *message);
64
65 #include <connman/ipv4.h>
66 #include <connman/resolver.h>
67
68 #include <connman/driver.h>
69
70 void __connman_driver_rescan(struct connman_driver *driver);
71
72 #include <connman/element.h>
73
74 int __connman_element_init(DBusConnection *conn, const char *device);
75 void __connman_element_cleanup(void);
76
77 void __connman_element_list(struct connman_element *element,
78                                         enum connman_element_type type,
79                                                         DBusMessageIter *iter);
80 int __connman_element_count(struct connman_element *element,
81                                         enum connman_element_type type);
82
83 const char *__connman_element_type2string(enum connman_element_type type);
84 const char *__connman_element_subtype2string(enum connman_element_subtype type);
85
86 const char *__connman_element_policy2string(enum connman_element_policy policy);
87 enum connman_element_policy __connman_element_string2policy(const char *policy);
88
89 int __connman_element_load(struct connman_element *element);
90 int __connman_element_store(struct connman_element *element);
91
92 static inline void __connman_element_lock(struct connman_element *element)
93 {
94 }
95
96 static inline void __connman_element_unlock(struct connman_element *element)
97 {
98 }
99
100 #include <connman/device.h>
101
102 int __connman_device_init(void);
103 void __connman_device_cleanup(void);
104
105 #include <connman/rtnl.h>
106
107 int __connman_rtnl_init(void);
108 void __connman_rtnl_cleanup(void);
109
110 int __connman_rtnl_send(const void *buf, size_t len);