
* system-settings/plugins/keyfile/nm-keyfile-connection.c - (update): Update filename of the connection if the connection id was changed * system-settings/plugins/keyfile/plugin.c - (dir_changed): first pass at handling connection renames correctly * system-settings/plugins/keyfile/writer.c system-settings/plugins/keyfile/writer.h - (write_connection): replace '/' with '*' when writing out the filename from the connection id git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4018 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
14 lines
363 B
C
14 lines
363 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, char **out_path, GError **error);
|
|
|
|
char *writer_id_to_filename (const char *id);
|
|
|
|
#endif /* _KEYFILE_PLUGIN_WRITER_H */
|