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.h | |
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.h')
-rw-r--r-- | cli/mmcli.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/mmcli.h b/cli/mmcli.h index e3d7bb88..99d6091e 100644 --- a/cli/mmcli.h +++ b/cli/mmcli.h @@ -61,6 +61,14 @@ void mmcli_modem_3gpp_ussd_run_asynchronous (GDBusConnection *connect void mmcli_modem_3gpp_ussd_run_synchronous (GDBusConnection *connection); void mmcli_modem_3gpp_ussd_shutdown (void); +/* 3GPP profile manager group */ +GOptionGroup *mmcli_modem_3gpp_profile_manager_get_option_group (void); +gboolean mmcli_modem_3gpp_profile_manager_options_enabled (void); +void mmcli_modem_3gpp_profile_manager_run_asynchronous (GDBusConnection *connection, + GCancellable *cancellable); +void mmcli_modem_3gpp_profile_manager_run_synchronous (GDBusConnection *connection); +void mmcli_modem_3gpp_profile_manager_shutdown (void); + /* CDMA group */ GOptionGroup *mmcli_modem_cdma_get_option_group (void); gboolean mmcli_modem_cdma_options_enabled (void); |