Add handling for agent registration and monitoring
[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 #define DBG(fmt, arg...)  printf("%s: " fmt "\n" , __FUNCTION__ , ## arg)
25 //#define DBG(fmt, arg...)
26
27 #include <dbus/dbus.h>
28
29 #define CONNMAN_SERVICE  "org.freedesktop.connman"
30
31 #define CONNMAN_AGENT_INTERFACE  CONNMAN_SERVICE ".Agent"
32
33 #define CONNMAN_MANAGER_PATH       "/"
34 #define CONNMAN_MANAGER_INTERFACE  CONNMAN_SERVICE ".Manager"
35
36 #define CONNMAN_IFACE_BASEPATH  "/interface"
37 #define CONNMAN_IFACE_INTERFACE  CONNMAN_SERVICE ".Interface"
38
39 #define NM_SERVICE    "org.freedesktop.NetworkManager"
40 #define NM_PATH       "/org/freedesktop/NetworkManager"
41 #define NM_INTERFACE  NM_SERVICE
42 #define NM_DEVICE     NM_SERVICE ".Devices"
43
44 int __connman_manager_init(DBusConnection *conn, int compat);
45 void __connman_manager_cleanup(void);
46
47 int __connman_agent_init(DBusConnection *conn);
48 void __connman_agent_cleanup(void);
49
50 int __connman_agent_register(const char *sender, const char *path);
51 int __connman_agent_unregister(const char *sender, const char *path);
52
53 #include <connman/plugin.h>
54
55 int __connman_plugin_init(void);
56 void __connman_plugin_cleanup(void);
57
58 #include <connman/iface.h>
59
60 int __connman_iface_init(DBusConnection *conn);
61 void __connman_iface_cleanup(void);
62
63 struct connman_iface *__connman_iface_find(int index);
64 void __connman_iface_list(DBusMessageIter *iter);
65
66 int __connman_iface_create_identifier(struct connman_iface *iface);
67 int __connman_iface_init_via_inet(struct connman_iface *iface);
68 int __connman_iface_up(struct connman_iface *iface);
69 int __connman_iface_down(struct connman_iface *iface);
70
71 int __connman_iface_load(struct connman_iface *iface);
72 int __connman_iface_store(struct connman_iface *iface);
73
74 const char *__connman_iface_type2string(enum connman_iface_type type);
75 const char *__connman_iface_state2string(enum connman_iface_state state);
76 const char *__connman_iface_policy2string(enum connman_iface_policy policy);
77 enum connman_iface_policy __connman_iface_string2policy(const char *policy);
78
79 const char *__connman_ipv4_method2string(enum connman_ipv4_method method);
80 enum connman_ipv4_method __connman_ipv4_string2method(const char *method);
81
82 #include <connman/rtnl.h>
83
84 int __connman_rtnl_init(void);
85 void __connman_rtnl_cleanup(void);
86
87 int __connman_rtnl_send(const void *buf, size_t len);
88
89 #include <connman/dhcp.h>
90
91 int __connman_dhcp_request(struct connman_iface *iface);
92 int __connman_dhcp_release(struct connman_iface *iface);