265fd82f62e4b5dd3b4b92bda8edda289f4df4ff
[platform/upstream/connman.git] / vpn / plugins / vpn.h
1 /*
2  *
3  *  ConnMan VPN daemon
4  *
5  *  Copyright (C) 2010,2014  BMW Car IT GmbH.
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 #ifndef __CONNMAN_VPND_VPN_H
23 #define __CONNMAN_VPND_VPN_H
24
25 #include "../vpn-provider.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 #define VPN_FLAG_NO_TUN 1
32
33 enum vpn_state {
34         VPN_STATE_UNKNOWN       = 0,
35         VPN_STATE_IDLE          = 1,
36         VPN_STATE_CONNECT       = 2,
37         VPN_STATE_READY         = 3,
38         VPN_STATE_DISCONNECT    = 4,
39         VPN_STATE_FAILURE       = 5,
40         VPN_STATE_AUTH_FAILURE  = 6,
41 };
42
43 struct vpn_driver {
44         int flags;
45         int (*notify) (DBusMessage *msg, struct vpn_provider *provider);
46         int (*connect) (struct vpn_provider *provider,
47                         struct connman_task *task, const char *if_name,
48                         vpn_provider_connect_cb_t cb, const char *dbus_sender,
49                         void *user_data);
50         void (*disconnect) (struct vpn_provider *provider);
51         int (*remove) (struct vpn_provider *provider);
52         int (*error_code) (struct vpn_provider *provider, int exit_code);
53         int (*save) (struct vpn_provider *provider, GKeyFile *keyfile);
54         int (*device_flags) (struct vpn_provider *provider);
55         int (*route_env_parse) (struct vpn_provider *provider, const char *key,
56                         int *family, unsigned long *idx,
57                         enum vpn_provider_route_type *type);
58 };
59
60 int vpn_register(const char *name, struct vpn_driver *driver,
61                         const char *program);
62 void vpn_unregister(const char *provider_name);
63 void vpn_died(struct connman_task *task, int exit_code, void *user_data);
64 int vpn_set_ifname(struct vpn_provider *provider, const char *ifname);
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 #endif /* __CONNMAN_VPND_VPN_H */