From: Roy Marples Date: Tue, 3 Jun 2014 21:20:49 +0000 (+0000) Subject: Clarify comments. X-Git-Tag: v6.4.0~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be844cae6d927e1f8f132f0fc94bcab1565b0fe8;p=thirdparty%2Fdhcpcd.git Clarify comments. --- diff --git a/ipv6.c b/ipv6.c index 94bc2a84..25ebd65a 100644 --- a/ipv6.c +++ b/ipv6.c @@ -258,6 +258,8 @@ eexit: return -1; } +/* http://www.iana.org/assignments/ipv6-interface-ids/ipv6-interface-ids.xhtml + * RFC5453 */ static const struct reslowhigh { const uint8_t high[8]; const uint8_t low[8]; @@ -343,7 +345,8 @@ ipv6_makestableprivate1(struct in6_addr *addr, len = sizeof(addr->s6_addr) - l; memcpy(p + l, digest + (sizeof(digest) - len), len); - /* Ensure that the Interface ID does not match a reserved one. + /* Ensure that the Interface ID does not match a reserved one, + * if it does then treat it as a DAD failure. * RFC7217 section 5.2 */ if (prefix_len != 64) break;