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-output.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-output.h')
-rw-r--r-- | cli/mmcli-output.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/mmcli-output.h b/cli/mmcli-output.h index 088cc35a..79d2e2be 100644 --- a/cli/mmcli-output.h +++ b/cli/mmcli-output.h @@ -42,6 +42,7 @@ typedef enum { MMC_S_MODEM_3GPP_EPS, MMC_S_MODEM_3GPP_SCAN, MMC_S_MODEM_3GPP_USSD, + MMC_S_MODEM_3GPP_PROFILE_MANAGER, MMC_S_MODEM_CDMA, MMC_S_MODEM_SIM, MMC_S_MODEM_BEARER, @@ -140,6 +141,9 @@ typedef enum { MMC_F_3GPP_EPS_BEARER_SETTINGS_PASSWORD, /* 3GPP scan section */ MMC_F_3GPP_SCAN_NETWORKS, + /* 3GPP profile management section */ + MMC_F_3GPP_PROFILE_MANAGER_LIST, + MMC_F_3GPP_PROFILE_MANAGER_SET, /* USSD section */ MMC_F_3GPP_USSD_STATUS, MMC_F_3GPP_USSD_NETWORK_REQUEST, @@ -356,6 +360,8 @@ void mmcli_output_firmware_list (GList *firmware_list, MMFirmwareProperties *selected); void mmcli_output_pco_list (GList *pco_list); void mmcli_output_preferred_networks (GList *preferred_nets_list); +void mmcli_output_profile_list (GList *profile_list); +void mmcli_output_profile_set (MM3gppProfile *profile); /******************************************************************************/ /* Dump output */ |