cli: allow modifying default DBus timeout with `--timeout'

By default 30s will be used for every operation.
This commit is contained in:
Aleksander Morgado
2012-07-25 10:04:20 +02:00
parent 8a34e41794
commit 8f8bcd7724
12 changed files with 100 additions and 3 deletions

View File

@@ -162,6 +162,10 @@ get_modem_ready (GObject *source,
ctx->object = mmcli_get_modem_finish (result, &ctx->manager);
ctx->modem_cdma = mm_object_get_modem_cdma (ctx->object);
/* Setup operation timeout */
if (ctx->modem_cdma)
mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_cdma));
ensure_modem_cdma ();
/* Request to activate the modem? */
@@ -207,6 +211,10 @@ mmcli_modem_cdma_run_synchronous (GDBusConnection *connection)
&ctx->manager);
ctx->modem_cdma = mm_object_get_modem_cdma (ctx->object);
/* Setup operation timeout */
if (ctx->modem_cdma)
mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_cdma));
ensure_modem_cdma ();
/* Request to activate the modem? */