diff options
author | Ujjwal Pande <ujjwalpande@google.com> | 2023-10-04 18:27:43 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2023-10-11 14:07:53 +0000 |
commit | ae02c47634141c532db62559d1b5baa5048f70cd (patch) | |
tree | 8726e5e6a9536c0e5161ef354d5b126d887f3a27 /libmm-glib/mm-bearer-properties.h | |
parent | b7433b4c1499dbdbd7eac10a4ff2111fd4fdd6f4 (diff) |
ModemManager: Add force option to set initial EPS bearer settings
Adding a new force option to force send initial EPS bearer settings to
modem even if they match the existing ones. Currently settings are
not sent to the modem if they match old settings
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 9e522022..fad85e15 100644 --- a/libmm-glib/mm-bearer-properties.h +++ b/libmm-glib/mm-bearer-properties.h @@ -93,6 +93,9 @@ void mm_bearer_properties_set_access_type_preference (MMBearerProperties MMBearerAccessTypePreference access_type_preference); void mm_bearer_properties_set_roaming_allowance (MMBearerProperties *self, MMBearerRoamingAllowance roaming_allowance); +void mm_bearer_properties_set_force (MMBearerProperties *self, + gboolean force); + const gchar *mm_bearer_properties_get_apn (MMBearerProperties *self); MMBearerAllowedAuth mm_bearer_properties_get_allowed_auth (MMBearerProperties *self); @@ -107,6 +110,7 @@ MMModemCdmaRmProtocol mm_bearer_properties_get_rm_protocol (MM 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); +gboolean mm_bearer_properties_get_force (MMBearerProperties *self); /*****************************************************************************/ /* ModemManager/libmm-glib/mmcli specific methods */ |