diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-31 23:33:24 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-31 23:46:31 +0200 |
commit | 2c27a7aadc79f3ded2e0ab13cc757266639f01e1 (patch) | |
tree | 4edae2451304c184f10f0eca0bb4ee74c169b080 /plugins | |
parent | 317900635136564cce1ce74ef09a8e5fb012912b (diff) |
base-bearer: remove default IP family property
There is no point in providing a configurable default IP family in the
bearer object, because we can always assume IPv4 as being the only
default expected.
Simplify the logic and also provide a new method to get the normalize
the IP family, using IPv4 as default always.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/huawei/mm-broadband-bearer-huawei.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/huawei/mm-broadband-bearer-huawei.c b/plugins/huawei/mm-broadband-bearer-huawei.c index 4bf2bb59..425edda2 100644 --- a/plugins/huawei/mm-broadband-bearer-huawei.c +++ b/plugins/huawei/mm-broadband-bearer-huawei.c @@ -345,16 +345,7 @@ connect_3gpp_context_step (GTask *task) MMBearerIpFamily ip_family; ip_family = mm_bearer_properties_get_ip_type (mm_base_bearer_peek_config (MM_BASE_BEARER (self))); - if (ip_family == MM_BEARER_IP_FAMILY_NONE || - ip_family == MM_BEARER_IP_FAMILY_ANY) { - gchar *ip_family_str; - - ip_family = mm_base_bearer_get_default_ip_family (MM_BASE_BEARER (self)); - ip_family_str = mm_bearer_ip_family_build_string_from_mask (ip_family); - mm_obj_dbg (self, "no specific IP family requested, defaulting to %s", ip_family_str); - g_free (ip_family_str); - } - + mm_3gpp_normalize_ip_family (&ip_family, self); if (ip_family != MM_BEARER_IP_FAMILY_IPV4) { g_task_return_new_error (task, MM_CORE_ERROR, |