From c1edab7ad1e7ccc9be693bedfd464cd1cbffb395 Mon Sep 17 00:00:00 2001 From: florianjacob Date: Wed, 12 Jul 2017 16:01:10 +0200 Subject: [PATCH] resolved: consider pointopoint links for local multicast (#6343) Resolves #6313. --- src/resolve/resolved-link.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/resolve/resolved-link.c b/src/resolve/resolved-link.c index 25b8c1152cb..61a3f203625 100644 --- a/src/resolve/resolved-link.c +++ b/src/resolve/resolved-link.c @@ -562,7 +562,7 @@ bool link_relevant(Link *l, int family, bool local_multicast) { assert(l); - /* A link is relevant for local multicast traffic if it isn't a loopback or pointopoint device, has a link + /* A link is relevant for local multicast traffic if it isn't a loopback device, has a link * beat, can do multicast and has at least one link-local (or better) IP address. * * A link is relevant for non-multicast traffic if it isn't a loopback device, has a link beat, and has at @@ -575,9 +575,6 @@ bool link_relevant(Link *l, int family, bool local_multicast) { return false; if (local_multicast) { - if (l->flags & IFF_POINTOPOINT) - return false; - if ((l->flags & IFF_MULTICAST) != IFF_MULTICAST) return false; } -- 2.47.3