diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-25 10:04:20 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-25 11:44:01 +0200 |
commit | 8f8bcd7724e8c75cf7e0460946c04624ce6ed46a (patch) | |
tree | bd2d0a9050977197fb0ac2e50eeb75e8f8dd2f5e /cli/mmcli-modem-time.c | |
parent | 8a34e417943df90f6b43a0de08550def557c7db7 (diff) |
cli: allow modifying default DBus timeout with `--timeout'
By default 30s will be used for every operation.
Diffstat (limited to 'cli/mmcli-modem-time.c')
-rw-r--r-- | cli/mmcli-modem-time.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/mmcli-modem-time.c b/cli/mmcli-modem-time.c index d17c1dee..6918833c 100644 --- a/cli/mmcli-modem-time.c +++ b/cli/mmcli-modem-time.c @@ -202,6 +202,10 @@ get_modem_ready (GObject *source, ctx->object = mmcli_get_modem_finish (result, &ctx->manager); ctx->modem_time = mm_object_get_modem_time (ctx->object); + /* Setup operation timeout */ + if (ctx->modem_time) + mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_time)); + ensure_modem_time (); /* Request to get network time from the modem? */ @@ -247,6 +251,10 @@ mmcli_modem_time_run_synchronous (GDBusConnection *connection) &ctx->manager); ctx->modem_time = mm_object_get_modem_time (ctx->object); + /* Setup operation timeout */ + if (ctx->modem_time) + mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_time)); + ensure_modem_time (); /* Request to get network time from the modem? */ |