
* introspection/nm-settings-system.xml system-settings/src/dbus-settings.c system-settings/src/dbus-settings.h - Add a 'Hostname' property (rw) which represents the configured hostname and domain of the system, if any * system-settings/src/nm-system-config-error.c system-settings/src/nm-system-config-error.h system-settings/src/nm-system-config-interface.c system-settings/src/nm-system-config-interface.h - Add a 'hostname' property to the plugin interface - Add a method to send updated hostname to plugins to save in their backing configuration store * system-settings/plugins/keyfile/nm-keyfile-connection.c system-settings/plugins/keyfile/plugin.c system-settings/plugins/keyfile/writer.c system-settings/plugins/keyfile/writer.h system-settings/plugins/ifcfg-suse/plugin.c - Add minimal hostname support * system-settings/plugins/ifcfg-fedora/plugin.c - Add support for updating system hostname in /etc/sysconfig/network git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3941 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
12 lines
299 B
C
12 lines
299 B
C
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
|
|
|
|
#ifndef _KEYFILE_PLUGIN_WRITER_H
|
|
#define _KEYFILE_PLUGIN_WRITER_H
|
|
|
|
#include <glib.h>
|
|
#include <nm-connection.h>
|
|
|
|
gboolean write_connection (NMConnection *connection, GError **error);
|
|
|
|
#endif /* _KEYFILE_PLUGIN_WRITER_H */
|