From b1d9338b73aee1198b2b79536f98fad04e7b33c7 Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 23 Aug 2004 03:00:27 +0000 Subject: Remove in6_prefix.[ch] and the contained router renumbering capability. The prefix management code currently resides in nd6, leaving only the unused router renumbering capability in the in6_prefix files. Removing it will make it easier for us to provide locking for the remainder of IPv6 by reducing the number of objects requiring synchronized access. This functionality has also been removed from NetBSD and OpenBSD. Submitted by: George Neville-Neil Discussed with/approved by: suz, keiichi at kame.net, core at kame.net --- sys/netinet6/ip6_input.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sys/netinet6/ip6_input.c') diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index ac24f97..e11cef1 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -104,7 +104,6 @@ #include #include #include -#include #ifdef IPSEC #include @@ -208,10 +207,6 @@ ip6_init2(dummy) callout_init(&nd6_timer_ch, 0); callout_reset(&nd6_timer_ch, hz, nd6_timer, NULL); - /* router renumbering prefix list maintenance */ - callout_init(&in6_rr_timer_ch, 0); - callout_reset(&in6_rr_timer_ch, hz, in6_rr_timer, NULL); - /* timer for regeneranation of temporary addresses randomize ID */ callout_init(&in6_tmpaddrtimer_ch, 0); callout_reset(&in6_tmpaddrtimer_ch, -- cgit v1.1