Remove obsolete files netinet/in_route.[ch].

This commit is contained in:
dyoung 2007-05-02 22:39:03 +00:00
parent e7c35aabc9
commit 8b646d9bb9
8 changed files with 9 additions and 118 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.1022 2007/05/01 17:18:52 bouyer Exp $
# $NetBSD: mi,v 1.1023 2007/05/02 22:39:03 dyoung Exp $
./etc/mtree/set.comp comp-sys-root
./usr/bin/addr2line comp-debug-bin bfd
./usr/bin/ar comp-util-bin bfd
@ -1379,7 +1379,7 @@
./usr/include/netinet/in_gif.h comp-c-include
./usr/include/netinet/in_pcb.h comp-c-include
./usr/include/netinet/in_pcb_hdr.h comp-c-include
./usr/include/netinet/in_route.h comp-c-include
./usr/include/netinet/in_route.h comp-obsolete obsolete
./usr/include/netinet/in_selsrc.h comp-c-include
./usr/include/netinet/in_systm.h comp-c-include
./usr/include/netinet/in_var.h comp-c-include

View File

@ -1,10 +1,9 @@
# $NetBSD: Makefile,v 1.17 2006/12/09 05:33:04 dyoung Exp $
# $NetBSD: Makefile,v 1.18 2007/05/02 22:39:03 dyoung Exp $
INCSDIR= /usr/include/netinet
INCS= icmp6.h icmp_var.h if_atm.h if_ether.h if_inarp.h igmp.h \
igmp_var.h in.h in_gif.h in_pcb.h in_pcb_hdr.h \
in_route.h \
in_selsrc.h in_systm.h \
in_var.h ip.h ip_carp.h ip6.h ip_ecn.h ip_encap.h ip_gre.h \
ip_icmp.h ip_mroute.h ip_var.h pim.h pim_var.h \

View File

@ -1,4 +1,4 @@
# $NetBSD: files.netinet,v 1.18 2007/05/02 20:43:47 dyoung Exp $
# $NetBSD: files.netinet,v 1.19 2007/05/02 22:39:03 dyoung Exp $
defflag opt_tcp_debug.h TCP_DEBUG
defparam opt_tcp_debug.h TCP_NDEBUG
@ -22,7 +22,6 @@ file netinet/in.c inet
file netinet/in_offload.c inet
file netinet/in_pcb.c inet
file netinet/in_proto.c inet
file netinet/in_route.c inet
file netinet/in_selsrc.c inet & ipselsrc
file netinet/ip_flow.c inet & gateway
file netinet/ip_icmp.c inet

View File

@ -1,4 +1,4 @@
/* $NetBSD: in_proto.c,v 1.84 2007/05/02 20:40:24 dyoung Exp $ */
/* $NetBSD: in_proto.c,v 1.85 2007/05/02 22:39:03 dyoung Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.84 2007/05/02 20:40:24 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.85 2007/05/02 22:39:03 dyoung Exp $");
#include "opt_mrouting.h"
#include "opt_eon.h" /* ISO CLNL over IP */
@ -88,7 +88,6 @@ __KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.84 2007/05/02 20:40:24 dyoung Exp $")
#include <netinet/in_ifattach.h>
#include <netinet/in_pcb.h>
#include <netinet/in_proto.h>
#include <netinet/in_route.h>
#ifdef INET6
#ifndef INET

View File

@ -1,62 +0,0 @@
/* $NetBSD: in_route.c,v 1.7 2007/05/02 20:40:24 dyoung Exp $ */
/*
* Copyright (c) 2006 David Young. All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3. The name of David Young may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY David Young ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL David
* Young BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_route.c,v 1.7 2007/05/02 20:40:24 dyoung Exp $");
#include "opt_inet.h"
#include "opt_in_route.h"
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/protosw.h>
#include <sys/domain.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/radix.h>
#ifdef RADIX_MPATH
#include <net/radix_mpath.h>
#endif
#include <net/route.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_var.h>
#include <netinet/ip_icmp.h>
#include <netinet/in_ifattach.h>
#include <netinet/in_pcb.h>
#include <netinet/in_proto.h>
#include <netinet/in_route.h>

View File

@ -1,42 +0,0 @@
/* $NetBSD: in_route.h,v 1.1 2006/12/09 05:33:04 dyoung Exp $ */
/*
* Copyright (c) 2006 David Young. All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3. The name of David Young may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY David Young ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL David
* Young BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*/
#ifndef _NETINET_IN_ROUTE_H_
#define _NETINET_IN_ROUTE_H_
struct route;
void in_rtcache(struct route *);
void in_rtflush(struct route *);
void in_rtflushall(void);
#endif /* !_NETINET_IN_ROUTE_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_flow.c,v 1.46 2007/05/02 20:40:24 dyoung Exp $ */
/* $NetBSD: ip_flow.c,v 1.47 2007/05/02 22:39:04 dyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.46 2007/05/02 20:40:24 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.47 2007/05/02 22:39:04 dyoung Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -62,7 +62,6 @@ __KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.46 2007/05/02 20:40:24 dyoung Exp $");
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <netinet/in_route.h>
#include <netinet/in_var.h>
#include <netinet/ip_var.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip6_flow.c,v 1.7 2007/05/02 20:40:26 dyoung Exp $ */
/* $NetBSD: ip6_flow.c,v 1.8 2007/05/02 22:39:04 dyoung Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@ -65,7 +65,6 @@
#include <net/pfil.h>
#include <netinet/in.h>
#include <netinet/in_route.h>
#include <netinet6/in6_var.h>
#include <netinet/in_systm.h>
#include <netinet/ip6.h>