From c0d9c1817b9231deff0ba749b0569be0ae11e0d0 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 21 Sep 2010 15:36:50 +0200 Subject: Maemo: Listen for a special "Start" D-BUS call. This call is made on the system D-BUS so that charon is started as root. --- src/libcharon/plugins/maemo/maemo_plugin.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/libcharon/plugins/maemo/maemo_plugin.c') diff --git a/src/libcharon/plugins/maemo/maemo_plugin.c b/src/libcharon/plugins/maemo/maemo_plugin.c index 5b921d556..3ce15f6d3 100644 --- a/src/libcharon/plugins/maemo/maemo_plugin.c +++ b/src/libcharon/plugins/maemo/maemo_plugin.c @@ -220,7 +220,11 @@ static gint dbus_req_handler(const gchar *interface, const gchar *method, GArray *arguments, private_maemo_plugin_t *this, osso_rpc_t *retval) { - if (streq(method, "Connect")) + if (streq(method, "Start")) + { /* void start (void), dummy function to start charon as root */ + return OSSO_OK; + } + else if (streq(method, "Connect")) { /* bool connect (name, host, cert, user, pass) */ retval->value.b = initiate_connection(this, arguments); retval->type = DBUS_TYPE_BOOLEAN; -- cgit v1.2.3