[network-manager-applet/polkit1] settings: implement add_connection
- From: Dan Williams <dcbw src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [network-manager-applet/polkit1] settings: implement add_connection
- Date: Tue, 11 Aug 2009 20:19:49 +0000 (UTC)
commit e6753eb044acce9dcf0869ad9608000ed59f3aeb
Author: Dan Williams <dcbw redhat com>
Date: Tue Aug 11 15:19:03 2009 -0500
settings: implement add_connection
but local-only (ie no D-Bus) for now until we figure out the privacy
and security issues.
src/gconf-helpers/nma-gconf-settings.c | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
---
diff --git a/src/gconf-helpers/nma-gconf-settings.c b/src/gconf-helpers/nma-gconf-settings.c
index 2776703..8fca201 100644
--- a/src/gconf-helpers/nma-gconf-settings.c
+++ b/src/gconf-helpers/nma-gconf-settings.c
@@ -174,6 +174,31 @@ nma_gconf_settings_add_connection (NMAGConfSettings *self, NMConnection *connect
return exported;
}
+static void
+add_connection (NMSettingsService *settings,
+ NMConnection *connection,
+ DBusGMethodInvocation *context, /* Only present for D-Bus calls */
+ NMSettingsAddConnectionFunc callback,
+ gpointer user_data)
+{
+ NMAGConfSettings *self = NMA_GCONF_SETTINGS (settings);
+
+ /* For now, we don't support additions via D-Bus until we figure out
+ * the security implications.
+ */
+ if (context) {
+ GError *error;
+
+ error = g_error_new (0, 0, "%s: adding connections via D-Bus is not (yet) supported", __func__);
+ callback (NM_SETTINGS_INTERFACE (settings), error, user_data);
+ g_error_free (error);
+ return;
+ }
+
+ nma_gconf_settings_add_connection (self, connection);
+ callback (NM_SETTINGS_INTERFACE (settings), NULL, user_data);
+}
+
static NMAGConfConnection *
get_connection_by_gconf_path (NMAGConfSettings *self, const char *path)
{
@@ -411,6 +436,7 @@ nma_gconf_settings_class_init (NMAGConfSettingsClass *class)
object_class->dispose = dispose;
settings_class->list_connections = list_connections;
+ settings_class->add_connection = add_connection;
/* Signals */
signals[NEW_SECRETS_REQUESTED] =
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]