aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-12-21 17:34:43 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:36 +0100
commit88e8c4835b50c8967e3caa120b7cbc898a7875b7 (patch)
treede363131797e306af23d125a65372abc95814ff5 /cli/mmcli.c
parent241c29491873d527ac44272cbf4214e955ec5be6 (diff)
cli: implement SIM related actions
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r--cli/mmcli.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c
index 8bb5fc29..1ff7f938 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_sim_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);
@@ -227,6 +229,13 @@ main (gint argc, gchar **argv)
else
mmcli_manager_run_synchronous (connection);
}
+ /* Sim options? */
+ else if (mmcli_sim_options_enabled ()) {
+ if (async_flag)
+ mmcli_sim_run_asynchronous (connection, cancellable);
+ else
+ mmcli_sim_run_synchronous (connection);
+ }
/* Bearer options? */
else if (mmcli_bearer_options_enabled ()) {
if (async_flag)
@@ -267,7 +276,9 @@ main (gint argc, gchar **argv)
mmcli_modem_shutdown ();
} else if (mmcli_modem_3gpp_options_enabled ()) {
mmcli_modem_3gpp_shutdown ();
- } else if (mmcli_bearer_options_enabled ()) {
+ } else if (mmcli_sim_options_enabled ()) {
+ mmcli_sim_shutdown ();
+ } else if (mmcli_bearer_options_enabled ()) {
mmcli_bearer_shutdown ();
}