diff options
author | Jonas Gorski <jonas.gorski@bisdn.de> | 2024-05-29 07:45:24 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2024-05-29 08:28:57 (GMT) |
commit | 326882017876bc22f9d16508a44a8ef98a53d220 (patch) | |
tree | 49d18c036109d0100b0a23c83f5aed2efffc99ad | |
parent | c36c7faad175b0238252d916a67a49ff025d1641 (diff) | |
download | libnl-326882017876bc22f9d16508a44a8ef98a53d220.zip libnl-326882017876bc22f9d16508a44a8ef98a53d220.tar.gz libnl-326882017876bc22f9d16508a44a8ef98a53d220.tar.bz2 |
route: treat routes with via nexthops as universe scoped as well
RTA_VIA is a RTA_GATEWAY with added address family, so we should treat
them them equivalent for guessing the scope.
Signed-off-by: Jonas Gorski <jonas.gorski@bisdn.de>
https://github.com/thom311/libnl/pull/389
-rw-r--r-- | lib/route/route_obj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/route/route_obj.c b/lib/route/route_obj.c index 7abb58c..812d7ad 100644 --- a/lib/route/route_obj.c +++ b/lib/route/route_obj.c @@ -1026,7 +1026,7 @@ int rtnl_route_guess_scope(struct rtnl_route *route) * is not directly connected */ nl_list_for_each_entry(nh, &route->rt_nexthops, rtnh_list) { - if (nh->rtnh_gateway) + if (nh->rtnh_gateway || nh->rtnh_via) return RT_SCOPE_UNIVERSE; } } |