summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-dhcp4-config.h
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2008-08-07 17:47:08 +0000
committerDan Williams <dcbw@redhat.com>2008-08-07 17:47:08 +0000
commit641a7072b8c1833a20568b2817bf9536e55789f0 (patch)
treeb96948a40cdda48b092f5984089f58a3157fe747 /libnm-glib/nm-dhcp4-config.h
parentf7c3485421167be4a4625c81c113386c51ea55d2 (diff)
downloadNetworkManager-641a7072b8c1833a20568b2817bf9536e55789f0.tar.gz
2008-08-07 Dan Williams <dcbw@redhat.com>
* callouts/nm-dispatcher-action.c - (nm_dispatcher_action): grab device path and create the device; pass the device's DHCP4 config to script caller - (dispatch_scripts): dump the DHCP4 config to the environment of called scripts * libnm-glib/nm-dhcp4-config.c libnm-glib/nm-dhcp4-config.h - (nm_dhcp4_config_get_options): expose - (nm_dhcp4_config_get_one_option): renamed from nm_dhcp4_config_get_option git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3907 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'libnm-glib/nm-dhcp4-config.h')
-rw-r--r--libnm-glib/nm-dhcp4-config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libnm-glib/nm-dhcp4-config.h b/libnm-glib/nm-dhcp4-config.h
index 2db55003d9..496dedd11c 100644
--- a/libnm-glib/nm-dhcp4-config.h
+++ b/libnm-glib/nm-dhcp4-config.h
@@ -28,7 +28,9 @@ GType nm_dhcp4_config_get_type (void);
GObject *nm_dhcp4_config_new (DBusGConnection *connection, const char *object_path);
-const char * nm_dhcp4_config_get_option (NMDHCP4Config *config, const char *option);
+GHashTable * nm_dhcp4_config_get_options (NMDHCP4Config *config);
+
+const char * nm_dhcp4_config_get_one_option (NMDHCP4Config *config, const char *option);
G_END_DECLS