5 * Copyright (C) 2007-2012 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
25 #include <dbus/dbus.h>
31 #define VPN_SERVICE "net.connman.vpn"
32 #define VPN_PATH "/net/connman/vpn"
34 #define VPN_ERROR_INTERFACE VPN_SERVICE ".Error"
36 #define VPN_MANAGER_INTERFACE VPN_SERVICE ".Manager"
37 #define VPN_MANAGER_PATH "/"
39 #define VPN_CONNECTION_INTERFACE VPN_SERVICE ".Connection"
40 #define VPN_AGENT_INTERFACE VPN_SERVICE ".Agent"
41 #define VPN_TASK_INTERFACE VPN_SERVICE ".Task"
43 #define VPN_PRIVILEGE_MODIFY 1
44 #define VPN_PRIVILEGE_SECRET 2
46 #define CONNECTION_ADDED "ConnectionAdded"
47 #define CONNECTION_REMOVED "ConnectionRemoved"
48 #define PROPERTY_CHANGED "PropertyChanged"
49 #define GET_CONNECTIONS "GetConnections"
50 #define VPN_CONNECT "Connect"
51 #define VPN_DISCONNECT "Disconnect"
52 #define VPN_REMOVE "Remove"
58 #endif /* __VPN_DBUS_H */