merge: branch 'ungateway-ofono'

wwan/ofono: handle missing default gateway

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1731
This commit is contained in:
Beniamino Galvani 2023-10-02 13:27:36 +00:00
commit 9820e791d1

View file

@ -1276,8 +1276,11 @@ handle_settings(NMModemOfono *self, GVariant *v_dict)
nm_l3_config_data_add_address_4(priv->l3cd_4, &address);
if (!g_variant_lookup(v_dict, "Gateway", "&s", &s) || !s) {
_LOGW("Settings 'Gateway' missing");
goto out;
/* It is normal for point-to-point connections to not have a gateway IP
* specified. Use 0.0.0.0 in that case.
*/
_LOGD("Settings 'Gateway' missing. Setting it to 0.0.0.0");
s = "0.0.0.0";
}
if (!nm_inet_parse_bin(AF_INET, s, NULL, &gateway_network)) {
_LOGW("invalid 'Gateway': %s", s);