diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-16 10:03:33 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:51 +0100 |
commit | bb88a63a72af3dd5b87a381a363aff4cc782eca1 (patch) | |
tree | e2e8566431decb6101495b8294ff0503c45dbe42 /cli/mmcli.c | |
parent | 231e54f037964bb08686e006c32eecbbe70c878e (diff) |
cli: add CDMA-related option group, and enable activation request
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r-- | cli/mmcli.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c index 18e1c4dc..9f403122 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_cdma_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 ()); @@ -252,6 +254,13 @@ main (gint argc, gchar **argv) else mmcli_modem_3gpp_run_synchronous (connection); } + /* Modem CDMA options? */ + else if (mmcli_modem_cdma_options_enabled ()) { + if (async_flag) + mmcli_modem_cdma_run_asynchronous (connection, cancellable); + else + mmcli_modem_cdma_run_synchronous (connection); + } /* Modem Simple options? */ else if (mmcli_modem_simple_options_enabled ()) { if (async_flag) @@ -283,6 +292,8 @@ main (gint argc, gchar **argv) mmcli_manager_shutdown (); } else if (mmcli_modem_3gpp_options_enabled ()) { mmcli_modem_3gpp_shutdown (); + } else if (mmcli_modem_cdma_options_enabled ()) { + mmcli_modem_cdma_shutdown (); } else if (mmcli_modem_simple_options_enabled ()) { mmcli_modem_simple_shutdown (); } else if (mmcli_sim_options_enabled ()) { |