Imported Upstream connman version 1.38
[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 #define VPN_FLAG_NO_DAEMON  2
33
34 enum vpn_state {
35         VPN_STATE_UNKNOWN       = 0,
36         VPN_STATE_IDLE          = 1,
37         VPN_STATE_CONNECT       = 2,
38         VPN_STATE_READY         = 3,
39         VPN_STATE_DISCONNECT    = 4,
40         VPN_STATE_FAILURE       = 5,
41         VPN_STATE_AUTH_FAILURE  = 6,
42 };
43
44 #if defined TIZEN_EXT
45 typedef void (*vpn_event_callback)(struct vpn_provider *provider, int state);
46 #endif
47
48 struct vpn_driver {
49         int flags;
50         int (*notify) (DBusMessage *msg, struct vpn_provider *provider);
51 #if defined TIZEN_EXT
52         void (*set_event_cb) (vpn_event_callback event_cb, struct vpn_provider *provider);
53 #endif
54         int (*connect) (struct vpn_provider *provider,
55                         struct connman_task *task, const char *if_name,
56                         vpn_provider_connect_cb_t cb, const char *dbus_sender,
57                         void *user_data);
58         void (*disconnect) (struct vpn_provider *provider);
59         int (*remove) (struct vpn_provider *provider);
60         int (*error_code) (struct vpn_provider *provider, int exit_code);
61         int (*save) (struct vpn_provider *provider, GKeyFile *keyfile);
62         int (*device_flags) (struct vpn_provider *provider);
63         int (*route_env_parse) (struct vpn_provider *provider, const char *key,
64                         int *family, unsigned long *idx,
65                         enum vpn_provider_route_type *type);
66 };
67
68 int vpn_register(const char *name, struct vpn_driver *driver,
69                         const char *program);
70 void vpn_unregister(const char *provider_name);
71 void vpn_died(struct connman_task *task, int exit_code, void *user_data);
72 int vpn_set_ifname(struct vpn_provider *provider, const char *ifname);
73
74 #ifdef __cplusplus
75 }
76 #endif
77
78 #endif /* __CONNMAN_VPND_VPN_H */