diff options
| author | Michael Biebl <biebl@debian.org> | 2015-01-22 00:29:39 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2015-01-22 00:29:39 +0100 |
| commit | 2c032d8f1c6292c1338a615e6ec40252889ba85c (patch) | |
| tree | 1f77182220b2b0264288ba4a476ab47e5bc48716 /callouts/nm-dispatcher-utils.h | |
| parent | 33491bc4279481db8ae47213e34a6d695a0e8830 (diff) | |
Imported Upstream version 1.0.0 upstream/1.0.0
Diffstat (limited to 'callouts/nm-dispatcher-utils.h')
| -rw-r--r-- | callouts/nm-dispatcher-utils.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/callouts/nm-dispatcher-utils.h b/callouts/nm-dispatcher-utils.h index 33202e0e..665a0d4e 100644 --- a/callouts/nm-dispatcher-utils.h +++ b/callouts/nm-dispatcher-utils.h @@ -18,24 +18,24 @@ * Copyright (C) 2008 - 2011 Red Hat, Inc. */ -#ifndef NM_DISPATCHER_UTILS_H -#define NM_DISPATCHER_UTILS_H +#ifndef __NETWORKMANAGER_DISPATCHER_UTILS_H__ +#define __NETWORKMANAGER_DISPATCHER_UTILS_H__ #include <glib.h> char ** nm_dispatcher_utils_construct_envp (const char *action, - GHashTable *connection_hash, - GHashTable *connection_props, - GHashTable *device_props, - GHashTable *device_ip4_props, - GHashTable *device_ip6_props, - GHashTable *device_dhcp4_props, - GHashTable *device_dhcp6_props, + GVariant *connection_dict, + GVariant *connection_props, + GVariant *device_props, + GVariant *device_ip4_props, + GVariant *device_ip6_props, + GVariant *device_dhcp4_props, + GVariant *device_dhcp6_props, const char *vpn_ip_iface, - GHashTable *vpn_ip4_props, - GHashTable *vpn_ip6_props, + GVariant *vpn_ip4_props, + GVariant *vpn_ip6_props, char **out_iface); -#endif /* NM_DISPATCHER_UTILS_H */ +#endif /* __NETWORKMANAGER_DISPATCHER_UTILS_H__ */ |