summaryrefslogtreecommitdiff
path: root/include/vpn-dbus.h
blob: 01780cbdd676f9953ac9c552649bb3687f72d2a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 *
 *  ConnMan VPN daemon
 *
 *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef __VPN_DBUS_H
#define __VPN_DBUS_H

#include <dbus/dbus.h>

#ifdef __cplusplus
extern "C" {
#endif

#define VPN_SERVICE			"net.connman.vpn"
#define VPN_PATH			"/net/connman/vpn"

#define VPN_ERROR_INTERFACE		VPN_SERVICE ".Error"

#define VPN_MANAGER_INTERFACE		VPN_SERVICE ".Manager"
#define VPN_MANAGER_PATH		"/"

#define VPN_CONNECTION_INTERFACE	VPN_SERVICE ".Connection"
#define VPN_AGENT_INTERFACE		VPN_SERVICE ".Agent"
#define VPN_TASK_INTERFACE		VPN_SERVICE ".Task"

#define VPN_PRIVILEGE_MODIFY		1
#define VPN_PRIVILEGE_SECRET		2

#define CONNECTION_ADDED		"ConnectionAdded"
#define CONNECTION_REMOVED		"ConnectionRemoved"
#define PROPERTY_CHANGED		"PropertyChanged"
#define GET_CONNECTIONS			"GetConnections"
#define VPN_CONNECT			"Connect"
#define VPN_DISCONNECT			"Disconnect"
#define VPN_REMOVE			"Remove"

#ifdef __cplusplus
}
#endif

#endif /* __VPN_DBUS_H */