blob: e1a740f19077261e0dcea4a8aec728c180e5a9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-License-Identifier: GPL-2.0+
/* NetworkManager Applet -- allow user control over networking
*
* Dan Williams <dcbw@redhat.com>
*
* (C) Copyright 2004 - 2011 Red Hat, Inc.
*/
#ifndef APPLET_VPN_REQUEST_H
#define APPLET_VPN_REQUEST_H
#include "applet.h"
size_t applet_vpn_request_get_secrets_size (void);
gboolean applet_vpn_request_get_secrets (SecretsRequest *req, GError **error);
#endif /* APPLET_VPN_REQUEST_H */
|