diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-03 21:19:54 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-29 10:13:22 +0000 |
commit | 2d43ea48e1d2bae37f9d0594c385451739287bef (patch) | |
tree | c7c10edaac1cdaa15ac36e0b82b496fb2e201ad4 /cli/mmcli.c | |
parent | 793370f2f8efc6472d7265892013f6615188344e (diff) |
api,modem: new Modem3gpp.ProfileManager interface
This new interface allows modems to expose the list of available
connection profiles stored in the device and edit or delete them; as
long as the underlying device/protocol allows it.
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 76e630b0..eff1b512 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -212,6 +212,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_profile_manager_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 ()); @@ -337,6 +339,13 @@ main (gint argc, gchar **argv) else mmcli_modem_3gpp_run_synchronous (connection); } + /* Modem 3GPP profile manager options? */ + else if (mmcli_modem_3gpp_profile_manager_options_enabled ()) { + if (async_flag) + mmcli_modem_3gpp_profile_manager_run_asynchronous (connection, cancellable); + else + mmcli_modem_3gpp_profile_manager_run_synchronous (connection); + } /* Modem 3GPP USSD options? */ else if (mmcli_modem_3gpp_ussd_options_enabled ()) { if (async_flag) @@ -431,6 +440,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_profile_manager_options_enabled ()) { + mmcli_modem_3gpp_profile_manager_shutdown (); } else if (mmcli_modem_3gpp_ussd_options_enabled ()) { mmcli_modem_3gpp_ussd_shutdown (); } else if (mmcli_modem_cdma_options_enabled ()) { |