diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-18 11:22:27 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:52 +0100 |
commit | f8cb1269e31526813450cae4fd7382842fee242d (patch) | |
tree | 02ca111a94549436611a94396f6a4459b3edc54f /cli/mmcli.c | |
parent | b05430cb289e058ec118be13e4b0a813c46b1fb2 (diff) |
cli: include Location-related 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 9f403122..73a10760 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -189,6 +189,8 @@ main (gint argc, gchar **argv) g_option_context_add_group (context, mmcli_modem_simple_get_option_group ()); g_option_context_add_group (context, + mmcli_modem_location_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 ()); @@ -268,6 +270,13 @@ main (gint argc, gchar **argv) else mmcli_modem_simple_run_synchronous (connection); } + /* Modem Location options? */ + else if (mmcli_modem_location_options_enabled ()) { + if (async_flag) + mmcli_modem_location_run_asynchronous (connection, cancellable); + else + mmcli_modem_location_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 @@ -296,6 +305,8 @@ main (gint argc, gchar **argv) mmcli_modem_cdma_shutdown (); } else if (mmcli_modem_simple_options_enabled ()) { mmcli_modem_simple_shutdown (); + } else if (mmcli_modem_location_options_enabled ()) { + mmcli_modem_location_shutdown (); } else if (mmcli_sim_options_enabled ()) { mmcli_sim_shutdown (); } else if (mmcli_bearer_options_enabled ()) { |