aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-12-21 15:16:07 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:36 +0100
commit6583bd61e13e842ab6b016cb0947432f1e3aea26 (patch)
treed33ae194c1ca7f9b3fb8576bb9dbcdb7b8e081e9 /cli/mmcli.c
parent73ca5dcb24c131d3e3a99a89dcd6f1329c9d90f4 (diff)
cli: implement 3GPP related actions
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r--cli/mmcli.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c
index a7c9072a..8bb5fc29 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -183,6 +183,8 @@ main (gint argc, gchar **argv)
g_option_context_add_group (context,
mmcli_modem_get_option_group ());
g_option_context_add_group (context,
+ mmcli_modem_3gpp_get_option_group ());
+ g_option_context_add_group (context,
mmcli_bearer_get_option_group ());
g_option_context_add_main_entries (context, main_entries, NULL);
g_option_context_parse (context, &argc, &argv, NULL);
@@ -232,6 +234,13 @@ main (gint argc, gchar **argv)
else
mmcli_bearer_run_synchronous (connection);
}
+ /* Modem 3GPP options? */
+ else if (mmcli_modem_3gpp_options_enabled ()) {
+ if (async_flag)
+ mmcli_modem_3gpp_run_asynchronous (connection, cancellable);
+ else
+ mmcli_modem_3gpp_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
@@ -256,6 +265,8 @@ main (gint argc, gchar **argv)
mmcli_manager_shutdown ();
} else if (mmcli_modem_options_enabled ()) {
mmcli_modem_shutdown ();
+ } else if (mmcli_modem_3gpp_options_enabled ()) {
+ mmcli_modem_3gpp_shutdown ();
} else if (mmcli_bearer_options_enabled ()) {
mmcli_bearer_shutdown ();
}