cli: implement SIM related actions

This commit is contained in:
Aleksander Morgado
2011-12-21 17:34:43 +01:00
parent 241c294918
commit 88e8c4835b
7 changed files with 762 additions and 60 deletions

View File

@@ -184,6 +184,8 @@ main (gint argc, gchar **argv)
mmcli_modem_get_option_group ());
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);
@@ -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 ();
}