From 02e731140a4f5f285e80ed129ab2654aeb427a10 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 13 Jul 2015 22:14:07 +0200 Subject: [PATCH] router: only send RAs to neighbors if unsolicited --- src/router.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/router.c b/src/router.c index 91ea809..a66f65f 100644 --- a/src/router.c +++ b/src/router.c @@ -468,11 +468,12 @@ static uint64_t send_router_advert(struct interface *iface, const struct in6_add if (from && !IN6_IS_ADDR_UNSPECIFIED(from)) dest.sin6_addr = *from; + else + odhcpd_iterate_interface_neighbors(iface, send_neigh_ra, iov); odhcpd_send(router_event.uloop.fd, &dest, iov, ARRAY_SIZE(iov), iface); - odhcpd_iterate_interface_neighbors(iface, send_neigh_ra, iov); return msecs; } -- 2.11.0