diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2014-08-26 21:44:30 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2014-08-26 21:44:30 +0000 |
commit | 603248a58e2fd9646b3828232c8d78a2030e727b (patch) | |
tree | 455f7c07aa1fd63644349cac92ed73b671936fce /sys/netinet6/in6.c | |
parent | a079e27ec8f3b1c3c0d07835c7ab49a954bfea72 (diff) |
Do not hand-roll all routers link local address.
pointed out & OK bluhm@
Diffstat (limited to 'sys/netinet6/in6.c')
-rw-r--r-- | sys/netinet6/in6.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet6/in6.c b/sys/netinet6/in6.c index 1a9dc206158..6174d47b06c 100644 --- a/sys/netinet6/in6.c +++ b/sys/netinet6/in6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6.c,v 1.139 2014/08/25 14:00:34 florian Exp $ */ +/* $OpenBSD: in6.c,v 1.140 2014/08/26 21:44:29 florian Exp $ */ /* $KAME: in6.c,v 1.372 2004/06/14 08:14:21 itojun Exp $ */ /* @@ -112,6 +112,8 @@ const struct in6_addr in6addr_intfacelocal_allnodes = IN6ADDR_INTFACELOCAL_ALLNODES_INIT; const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT; +const struct in6_addr in6addr_linklocal_allrouters = + IN6ADDR_LINKLOCAL_ALLROUTERS_INIT; const struct in6_addr in6mask0 = IN6MASK0; const struct in6_addr in6mask32 = IN6MASK32; |