aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-03-24 15:17:59 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-03-24 15:31:13 +0100
commit342b7119c3337f1baa4648dac473a7274ca084f0 (patch)
tree5380b46ced230a971e96ec5d1d7945d659688c13 /cli/mmcli.c
parent08ed7b75dbf62536df79c98394f3b092d2cd9ccc (diff)
cli,3gpp-ussd: move actions to a separate source file
All the USSD operations together in a separate file, as they're managed in a separate 3GPP USSD 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 05644519..3343a6c8 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -211,6 +211,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_3gpp_ussd_get_option_group ());
+ g_option_context_add_group (context,
mmcli_modem_cdma_get_option_group ());
g_option_context_add_group (context,
mmcli_modem_simple_get_option_group ());
@@ -334,6 +336,13 @@ main (gint argc, gchar **argv)
else
mmcli_modem_3gpp_run_synchronous (connection);
}
+ /* Modem 3GPP USSD options? */
+ else if (mmcli_modem_3gpp_ussd_options_enabled ()) {
+ if (async_flag)
+ mmcli_modem_3gpp_ussd_run_asynchronous (connection, cancellable);
+ else
+ mmcli_modem_3gpp_ussd_run_synchronous (connection);
+ }
/* Modem CDMA options? */
else if (mmcli_modem_cdma_options_enabled ()) {
if (async_flag)
@@ -421,6 +430,8 @@ main (gint argc, gchar **argv)
mmcli_manager_shutdown ();
} else if (mmcli_modem_3gpp_options_enabled ()) {
mmcli_modem_3gpp_shutdown ();
+ } else if (mmcli_modem_3gpp_ussd_options_enabled ()) {
+ mmcli_modem_3gpp_ussd_shutdown ();
} else if (mmcli_modem_cdma_options_enabled ()) {
mmcli_modem_cdma_shutdown ();
} else if (mmcli_modem_simple_options_enabled ()) {