aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-07-07 21:11:47 +0200
committerAleksander Morgado <aleksander@lanedo.com>2013-08-21 12:33:09 +0200
commitd29423202555e41283796a1abeb28f3372ea15ab (patch)
tree2e96c4d2402116c4ff4576518558016aec867064 /cli/mmcli.c
parentfcdbefa51962aac545db7a797b5fbeb60a66ab60 (diff)
mmcli: new actions to use the 'Signal' 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 da68780f..d3427e51 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -209,6 +209,8 @@ main (gint argc, gchar **argv)
g_option_context_add_group (context,
mmcli_modem_firmware_get_option_group ());
g_option_context_add_group (context,
+ mmcli_modem_signal_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 ());
@@ -325,6 +327,13 @@ main (gint argc, gchar **argv)
else
mmcli_modem_firmware_run_synchronous (connection);
}
+ /* Modem Signal options? */
+ else if (mmcli_modem_signal_options_enabled ()) {
+ if (async_flag)
+ mmcli_modem_signal_run_asynchronous (connection, cancellable);
+ else
+ mmcli_modem_signal_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
@@ -361,6 +370,8 @@ main (gint argc, gchar **argv)
mmcli_modem_time_shutdown ();
} else if (mmcli_modem_firmware_options_enabled ()) {
mmcli_modem_firmware_shutdown ();
+ } else if (mmcli_modem_signal_options_enabled ()) {
+ mmcli_modem_signal_shutdown ();
} else if (mmcli_sim_options_enabled ()) {
mmcli_sim_shutdown ();
} else if (mmcli_bearer_options_enabled ()) {