5 * Copyright (C) 2010 BMW Car IT GmbH. 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
23 VPN_STATE_UNKNOWN = 0,
25 VPN_STATE_CONNECT = 2,
27 VPN_STATE_DISCONNECT = 4,
28 VPN_STATE_FAILURE = 5,
29 VPN_STATE_AUTH_FAILURE = 6,
33 int (*notify) (DBusMessage *msg, struct connman_provider *provider);
34 int (*connect) (struct connman_provider *provider,
35 struct connman_task *task, const char *if_name);
36 void (*disconnect) (void);
37 int (*error_code) (int exit_code);
38 int (*save) (struct connman_provider *provider, GKeyFile *keyfile);
41 int vpn_register(const char *name, struct vpn_driver *driver,
43 void vpn_unregister(const char *provider_name);
44 void vpn_died(struct connman_task *task, int exit_code, void *user_data);