diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-23 10:16:42 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-29 10:13:22 +0000 |
commit | ff8e21b535bc43d0ecfb135628711b3c32c47de8 (patch) | |
tree | 968c26d1269c0ea70f8ceae4e82f07bb7537657c /docs/reference | |
parent | 21ae558fe3600c84b3ca7dcd9bf50a3ba576c7c9 (diff) |
api,bearer: new 'apn-type' setting
This new setting allows the user setting up the connection to specify
the purpose of the connection being brought up.
Until now, we would always assume that connections are exclusively
brought up for connecting to the Internet, also limited by the
inability to connect to multiple different APNs at the same time.
But that may really not be true as there may be additional services
that may be accessed through other APNs, like MMS services or even
private networks for companies that have their own APNs on a given
operator (e.g. not that uncommon with banks and connected cars).
The new APN type setting will not change the way the bearer is
connected, but will allow the connection manager to decide what kind
of networking setup the specific connection needs.
This new setting can be provided by the user itself, or implicitly
read from the device if the device stores this information.
Diffstat (limited to 'docs/reference')
-rw-r--r-- | docs/reference/api/ModemManager-sections.txt | 1 | ||||
-rw-r--r-- | docs/reference/libmm-glib/libmm-glib-sections.txt | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/reference/api/ModemManager-sections.txt b/docs/reference/api/ModemManager-sections.txt index e0dc29f3..6b1eabd9 100644 --- a/docs/reference/api/ModemManager-sections.txt +++ b/docs/reference/api/ModemManager-sections.txt @@ -15,6 +15,7 @@ MMBearerIpFamily MMBearerIpMethod MMBearerAllowedAuth MMBearerMultiplexSupport +MMBearerApnType MMCallDirection MMCallState MMCallStateReason diff --git a/docs/reference/libmm-glib/libmm-glib-sections.txt b/docs/reference/libmm-glib/libmm-glib-sections.txt index cbf8e80e..327f33e5 100644 --- a/docs/reference/libmm-glib/libmm-glib-sections.txt +++ b/docs/reference/libmm-glib/libmm-glib-sections.txt @@ -861,6 +861,8 @@ mm_simple_connect_properties_get_operator_id mm_simple_connect_properties_set_operator_id mm_simple_connect_properties_get_apn mm_simple_connect_properties_set_apn +mm_simple_connect_properties_get_apn_type +mm_simple_connect_properties_set_apn_type mm_simple_connect_properties_get_allowed_auth mm_simple_connect_properties_set_allowed_auth mm_simple_connect_properties_get_user @@ -1183,6 +1185,8 @@ mm_bearer_properties_new <SUBSECTION GettersSetters> mm_bearer_properties_get_apn mm_bearer_properties_set_apn +mm_bearer_properties_get_apn_type +mm_bearer_properties_set_apn_type mm_bearer_properties_get_allowed_auth mm_bearer_properties_set_allowed_auth mm_bearer_properties_get_user @@ -1536,6 +1540,7 @@ mm_bearer_ip_method_get_string mm_bearer_ip_family_get_string mm_bearer_allowed_auth_build_string_from_mask mm_bearer_multiplex_support_get_string +mm_bearer_apn_type_build_string_from_mask mm_modem_capability_build_string_from_mask mm_modem_state_get_string mm_modem_state_failed_reason_get_string @@ -1599,6 +1604,7 @@ mm_bearer_ip_family_build_string_from_mask mm_bearer_ip_method_build_string_from_mask mm_bearer_allowed_auth_get_string mm_bearer_multiplex_support_build_string_from_mask +mm_bearer_apn_type_get_string mm_modem_cdma_registration_state_build_string_from_mask mm_modem_cdma_activation_state_build_string_from_mask mm_modem_cdma_rm_protocol_build_string_from_mask @@ -1624,6 +1630,7 @@ MM_TYPE_BEARER_IP_FAMILY MM_TYPE_BEARER_IP_METHOD MM_TYPE_BEARER_ALLOWED_AUTH MM_TYPE_BEARER_MULTIPLEX_SUPPORT +MM_TYPE_BEARER_APN_TYPE MM_TYPE_FIRMWARE_IMAGE_TYPE MM_TYPE_MODEM_3GPP_FACILITY MM_TYPE_MODEM_3GPP_NETWORK_AVAILABILITY @@ -1667,6 +1674,7 @@ mm_bearer_ip_family_get_type mm_bearer_ip_method_get_type mm_bearer_allowed_auth_get_type mm_bearer_multiplex_support_get_type +mm_bearer_apn_type_get_type mm_firmware_image_type_get_type mm_modem_3gpp_facility_get_type mm_modem_3gpp_network_availability_get_type |