diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-11-26 15:26:05 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-24 14:03:15 +0100 |
commit | f6a91b2250203e0f11f1d9dde9e8f9963e5c62a4 (patch) | |
tree | 479e867aad27f42a8c08ae953490508eb7c80a27 /libmm-glib/mm-bearer-properties.h | |
parent | 24e634229d27cd9743c5c5cfa3e6cedd98bf1379 (diff) |
libmm-glib: new 'roaming-allowance' in 3GPP profile and bearer properties
Diffstat (limited to 'libmm-glib/mm-bearer-properties.h')
-rw-r--r-- | libmm-glib/mm-bearer-properties.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmm-glib/mm-bearer-properties.h b/libmm-glib/mm-bearer-properties.h index c0e9c78f..0e6a3471 100644 --- a/libmm-glib/mm-bearer-properties.h +++ b/libmm-glib/mm-bearer-properties.h @@ -90,6 +90,8 @@ void mm_bearer_properties_set_multiplex (MMBearerProperties MMBearerMultiplexSupport multiplex); void mm_bearer_properties_set_access_type_preference (MMBearerProperties *self, MMBearerAccessTypePreference access_type_preference); +void mm_bearer_properties_set_roaming_allowance (MMBearerProperties *self, + MMBearerRoamingAllowance roaming_allowance); const gchar *mm_bearer_properties_get_apn (MMBearerProperties *self); MMBearerAllowedAuth mm_bearer_properties_get_allowed_auth (MMBearerProperties *self); @@ -103,6 +105,7 @@ gboolean mm_bearer_properties_get_allow_roaming (MM MMModemCdmaRmProtocol mm_bearer_properties_get_rm_protocol (MMBearerProperties *self); MMBearerMultiplexSupport mm_bearer_properties_get_multiplex (MMBearerProperties *self); MMBearerAccessTypePreference mm_bearer_properties_get_access_type_preference (MMBearerProperties *self); +MMBearerRoamingAllowance mm_bearer_properties_get_roaming_allowance (MMBearerProperties *self); /*****************************************************************************/ /* ModemManager/libmm-glib/mmcli specific methods */ @@ -141,6 +144,7 @@ typedef enum { MM_BEARER_PROPERTIES_CMP_FLAGS_NO_PROFILE_ID = 1 << 5, MM_BEARER_PROPERTIES_CMP_FLAGS_NO_PROFILE_NAME = 1 << 6, MM_BEARER_PROPERTIES_CMP_FLAGS_NO_ACCESS_TYPE_PREFERENCE = 1 << 7, + MM_BEARER_PROPERTIES_CMP_FLAGS_NO_ROAMING_ALLOWANCE = 1 << 8, } MMBearerPropertiesCmpFlags; gboolean mm_bearer_properties_cmp (MMBearerProperties *a, |