diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-06 17:45:41 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:22 +0100 |
commit | 1df1fe4f4aa271bb66616da789dda0b2bc7f653e (patch) | |
tree | 2e82edf3965a91e876b7defad4563d4d46576ed2 /cli/mmcli.c | |
parent | a3e6faeaca45ab7499ba3652597042e036c03a15 (diff) |
mmcli: new Time-specific actions
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r-- | cli/mmcli.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c index 33634e66..78284ca9 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -193,6 +193,8 @@ main (gint argc, gchar **argv) g_option_context_add_group (context, mmcli_modem_messaging_get_option_group ()); g_option_context_add_group (context, + mmcli_modem_time_get_option_group ()); + g_option_context_add_group (context, mmcli_sim_get_option_group ()); g_option_context_add_group (context, mmcli_bearer_get_option_group ()); @@ -295,6 +297,13 @@ main (gint argc, gchar **argv) else mmcli_modem_messaging_run_synchronous (connection); } + /* Modem Time options? */ + else if (mmcli_modem_time_options_enabled ()) { + if (async_flag) + mmcli_modem_time_run_asynchronous (connection, cancellable); + else + mmcli_modem_time_run_synchronous (connection); + } /* Modem options? * NOTE: let this check be always the last one, as other groups also need * having a modem specified, and therefore if -m is set, modem options @@ -327,6 +336,8 @@ main (gint argc, gchar **argv) mmcli_modem_location_shutdown (); } else if (mmcli_modem_messaging_options_enabled ()) { mmcli_modem_messaging_shutdown (); + } else if (mmcli_modem_time_options_enabled ()) { + mmcli_modem_time_shutdown (); } else if (mmcli_sim_options_enabled ()) { mmcli_sim_shutdown (); } else if (mmcli_bearer_options_enabled ()) { |