aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-12-22 20:44:18 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:37 +0100
commit21d3aed12536509ca3694374a2dc5abad619e577 (patch)
tree8200cc3370f92f03dca522cb198c0383b51ff47c /cli/mmcli.c
parent90b4323b8a5499ac6f18e99477778f9e9c4e20ee (diff)
cli: implement actions from the Simple interface
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 1ff7f938..79dcf3b4 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -185,6 +185,8 @@ main (gint argc, gchar **argv)
g_option_context_add_group (context,
mmcli_modem_3gpp_get_option_group ());
g_option_context_add_group (context,
+ mmcli_modem_simple_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 ());
@@ -250,6 +252,13 @@ main (gint argc, gchar **argv)
else
mmcli_modem_3gpp_run_synchronous (connection);
}
+ /* Modem Simple options? */
+ else if (mmcli_modem_simple_options_enabled ()) {
+ if (async_flag)
+ mmcli_modem_simple_run_asynchronous (connection, cancellable);
+ else
+ mmcli_modem_simple_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
@@ -276,6 +285,8 @@ main (gint argc, gchar **argv)
mmcli_modem_shutdown ();
} else if (mmcli_modem_3gpp_options_enabled ()) {
mmcli_modem_3gpp_shutdown ();
+ } else if (mmcli_modem_simple_options_enabled ()) {
+ mmcli_modem_simple_shutdown ();
} else if (mmcli_sim_options_enabled ()) {
mmcli_sim_shutdown ();
} else if (mmcli_bearer_options_enabled ()) {