From 31f217fc9ddfaf9de04e2ee75fbbac421c0db4f2 Mon Sep 17 00:00:00 2001 From: Hans Dedecker Date: Mon, 9 Apr 2018 17:01:45 +0200 Subject: [PATCH] router: improve RFC7084 compliancy Send Router Information Option as well for prefixes with length 64 in order to be compliant with L-3 in RFC7084: An IPv6 CE router must advertise itself as a router for the delegated prefixes using the "Route Information Option". Signed-off-by: Hans Dedecker --- src/router.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/router.c b/src/router.c index e62282b..e9919b2 100644 --- a/src/router.c +++ b/src/router.c @@ -519,10 +519,10 @@ static uint64_t send_router_advert(struct interface *iface, const struct in6_add for (ssize_t i = 0; i < ipcnt; ++i) { struct odhcpd_ipaddr *addr = &addrs[i]; - if (addr->dprefix > 64 || addr->dprefix == 0 || addr->valid <= (uint32_t)now || - (addr->dprefix == 64 && addr->prefix == 64)) { + if (addr->dprefix > 64 || addr->dprefix == 0 || addr->valid <= (uint32_t)now) continue; // Address not suitable - } else if (addr->dprefix > 32) { + + if (addr->dprefix > 32) { addr->addr.in6.s6_addr32[1] &= htonl(~((1U << (64 - addr->dprefix)) - 1)); } else if (addr->dprefix <= 32) { addr->addr.in6.s6_addr32[0] &= htonl(~((1U << (32 - addr->dprefix)) - 1)); -- 2.11.0