From: Tobias Brunner Date: Tue, 21 Sep 2010 13:36:50 +0000 (+0200) Subject: Maemo: Listen for a special "Start" D-BUS call. X-Git-Tag: 4.5.0~56 X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=commitdiff_plain;h=c0d9c1817b9231deff0ba749b0569be0ae11e0d0;ds=sidebyside 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. --- diff --git a/src/libcharon/plugins/maemo/maemo_plugin.c b/src/libcharon/plugins/maemo/maemo_plugin.c index 5b921d5..3ce15f6 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;