diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-30 17:28:21 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-30 17:28:21 +0000 |
commit | b526fb56aab4ef73de5931ababacc01693a1279f (patch) | |
tree | 9539297ee8161f8efe61c08f6bd47695794878de /sys/netinet6/ip6_input.c | |
parent | a6418bfe209e3212398b3d35169dbb091c93f6ea (diff) |
initialize lo0 automatically. kame ipv6 code assumes that there's ::1,
for various reasons ("goto ours" speedup, multicast group mgmt, and others).
should fix PR1012.
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r-- | sys/netinet6/ip6_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index bb18a75ab0c..ccef263da09 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.4 1999/12/09 13:59:57 itojun Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.5 1999/12/30 17:28:20 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -193,7 +193,7 @@ ip6_init2(dummy) /* get EUI64 from somewhere */ ret = in6_ifattach_getifid(NULL); -#if 0 +#if 1 /* * to route local address of p2p link to loopback, * assign loopback address first. |