diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-12-19 14:57:44 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:34 +0100 |
commit | 85b14b0008f217c3124e381c998fcf7ead6d999b (patch) | |
tree | 92d803f1ea97b36c113cdafe171663667ea957a1 /cli/mmcli.c | |
parent | 9e1b2105fb9b7454774a0414fa3f5958d79e8211 (diff) |
cli: new Bearer related options
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 1bd7300c..a91f7cfe 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -179,6 +179,8 @@ main (gint argc, gchar **argv) mmcli_manager_get_option_group ()); g_option_context_add_group (context, mmcli_modem_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); g_option_context_free (context); @@ -220,6 +222,13 @@ main (gint argc, gchar **argv) else mmcli_manager_run_synchronous (connection); } + /* Bearer options? */ + else if (mmcli_bearer_options_enabled ()) { + if (async_flag) + mmcli_bearer_run_asynchronous (connection, cancellable); + else + mmcli_bearer_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 @@ -244,6 +253,8 @@ main (gint argc, gchar **argv) mmcli_manager_shutdown (); } else if (mmcli_modem_options_enabled ()) { mmcli_modem_shutdown (); + } else if (mmcli_bearer_options_enabled ()) { + mmcli_bearer_shutdown (); } if (cancellable) |