add RCSIDs

This commit is contained in:
lukem 2001-11-13 00:32:34 +00:00
parent f85a625206
commit ea1cd7eb08
38 changed files with 145 additions and 45 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fil.c,v 1.48 2001/11/04 20:55:25 matt Exp $ */
/* $NetBSD: fil.c,v 1.49 2001/11/13 00:32:34 lukem Exp $ */
/*
* Copyright (C) 1993-2000 by Darren Reed.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: fil.c,v 1.48 2001/11/04 20:55:25 matt Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fil.c,v 1.49 2001/11/13 00:32:34 lukem Exp $");
#else
static const char sccsid[] = "@(#)fil.c 1.36 6/5/96 (C) 1993-2000 Darren Reed";
static const char rcsid[] = "@(#)Id: fil.c,v 2.35.2.30 2000/12/17 05:49:22 darrenr Exp";

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_arp.c,v 1.78 2001/08/20 03:13:45 itojun Exp $ */
/* $NetBSD: if_arp.c,v 1.79 2001/11/13 00:32:35 lukem Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@ -78,6 +78,9 @@
* add "inuse/lock" bit (or ref. count) along with valid bit
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.79 2001/11/13 00:32:35 lukem Exp $");
#include "opt_ddb.h"
#include "opt_inet.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_atm.c,v 1.13 2001/01/17 04:05:44 itojun Exp $ */
/* $NetBSD: if_atm.c,v 1.14 2001/11/13 00:32:35 lukem Exp $ */
/*
*
@ -36,6 +36,9 @@
* IP <=> ATM address resolution.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_atm.c,v 1.14 2001/11/13 00:32:35 lukem Exp $");
#include "opt_inet.h"
#include "opt_natm.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ieee1394arp.c,v 1.5 2001/07/04 02:29:59 itojun Exp $ */
/* $NetBSD: if_ieee1394arp.c,v 1.6 2001/11/13 00:32:35 lukem Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_ieee1394arp.c,v 1.6 2001/11/13 00:32:35 lukem Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/types.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: igmp.c,v 1.26 2001/07/25 00:13:16 enami Exp $ */
/* $NetBSD: igmp.c,v 1.27 2001/11/13 00:32:35 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -39,6 +39,9 @@
* MULTICAST Revision: 1.3
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: igmp.c,v 1.27 2001/11/13 00:32:35 lukem Exp $");
#include "opt_mrouting.h"
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: in.c,v 1.70 2001/11/04 20:55:25 matt Exp $ */
/* $NetBSD: in.c,v 1.71 2001/11/13 00:32:35 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)in.c 8.4 (Berkeley) 1/9/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in.c,v 1.71 2001/11/13 00:32:35 lukem Exp $");
#include "opt_inet.h"
#include "opt_inet_conf.h"
#include "opt_mrouting.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: in4_cksum.c,v 1.6 2001/05/19 14:20:40 thorpej Exp $ */
/* $NetBSD: in4_cksum.c,v 1.7 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (C) 1999 WIDE Project.
@ -64,6 +64,9 @@
* @(#)in_cksum.c 8.1 (Berkeley) 6/10/93
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in4_cksum.c,v 1.7 2001/11/13 00:32:36 lukem Exp $");
#include <sys/param.h>
#include <sys/mbuf.h>
#include <sys/systm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: in_cksum.c,v 1.14 2000/03/30 13:24:55 augustss Exp $ */
/* $NetBSD: in_cksum.c,v 1.15 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (c) 1988, 1992, 1993
@ -35,6 +35,9 @@
* @(#)in_cksum.c 8.1 (Berkeley) 6/10/93
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_cksum.c,v 1.15 2001/11/13 00:32:36 lukem Exp $");
#include <sys/param.h>
#include <sys/mbuf.h>
#include <sys/systm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: in_gif.c,v 1.24 2001/11/04 20:55:26 matt Exp $ */
/* $NetBSD: in_gif.c,v 1.25 2001/11/13 00:32:36 lukem Exp $ */
/* $KAME: in_gif.c,v 1.66 2001/07/29 04:46:09 itojun Exp $ */
/*
@ -30,6 +30,9 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_gif.c,v 1.25 2001/11/13 00:32:36 lukem Exp $");
#include "opt_inet.h"
#include "opt_iso.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: in_pcb.c,v 1.72 2001/11/04 20:55:26 matt Exp $ */
/* $NetBSD: in_pcb.c,v 1.73 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)in_pcb.c 8.4 (Berkeley) 5/24/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_pcb.c,v 1.73 2001/11/13 00:32:36 lukem Exp $");
#include "opt_ipsec.h"
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: in_proto.c,v 1.50 2001/10/30 06:41:10 kml Exp $ */
/* $NetBSD: in_proto.c,v 1.51 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -64,6 +64,9 @@
* @(#)in_proto.c 8.2 (Berkeley) 2/9/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.51 2001/11/13 00:32:36 lukem Exp $");
#include "opt_mrouting.h"
#include "opt_eon.h" /* ISO CLNL over IP */
#include "opt_iso.h" /* ISO TP tunneled over IP */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_auth.c,v 1.20 2001/09/28 11:59:55 chs Exp $ */
/* $NetBSD: ip_auth.c,v 1.21 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (C) 1998-2000 by Darren Reed & Guido van Rooij.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_auth.c,v 1.20 2001/09/28 11:59:55 chs Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_auth.c,v 1.21 2001/11/13 00:32:36 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_auth.c,v 2.11.2.5 2001/01/10 06:18:35 darrenr Exp";
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_ecn.c,v 1.10 2001/05/10 01:37:42 itojun Exp $ */
/* $NetBSD: ip_ecn.c,v 1.11 2001/11/13 00:32:36 lukem Exp $ */
/* $KAME: ip_ecn.c,v 1.11 2001/05/03 16:09:29 itojun Exp $ */
/*
@ -35,6 +35,9 @@
* http://www.aciri.org/floyd/papers/draft-ipsec-ecn-00.txt
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_ecn.c,v 1.11 2001/11/13 00:32:36 lukem Exp $");
#include "opt_inet.h"
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_encap.c,v 1.5 2001/05/08 10:07:15 itojun Exp $ */
/* $NetBSD: ip_encap.c,v 1.6 2001/11/13 00:32:36 lukem Exp $ */
/* $KAME: ip_encap.c,v 1.39 2000/10/01 12:37:18 itojun Exp $ */
/*
@ -56,6 +56,9 @@
*/
/* XXX is M_NETADDR correct? */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_encap.c,v 1.6 2001/11/13 00:32:36 lukem Exp $");
#include "opt_mrouting.h"
#include "opt_inet.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_fil.c,v 1.70 2001/10/18 20:17:29 thorpej Exp $ */
/* $NetBSD: ip_fil.c,v 1.71 2001/11/13 00:32:36 lukem Exp $ */
/*
* Copyright (C) 1993-2000 by Darren Reed.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_fil.c,v 1.70 2001/10/18 20:17:29 thorpej Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_fil.c,v 1.71 2001/11/13 00:32:36 lukem Exp $");
#else
static const char sccsid[] = "@(#)ip_fil.c 2.41 6/5/96 (C) 1993-2000 Darren Reed";
static const char rcsid[] = "@(#)Id: ip_fil.c,v 2.42.2.17 2000/10/19 15:39:42 darrenr Exp";

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_flow.c,v 1.21 2001/10/29 07:02:33 simonb Exp $ */
/* $NetBSD: ip_flow.c,v 1.22 2001/11/13 00:32:37 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.22 2001/11/13 00:32:37 lukem Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_frag.c,v 1.23 2001/04/06 15:32:40 darrenr Exp $ */
/* $NetBSD: ip_frag.c,v 1.24 2001/11/13 00:32:37 lukem Exp $ */
/*
* Copyright (C) 1993-2000 by Darren Reed.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_frag.c,v 1.23 2001/04/06 15:32:40 darrenr Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_frag.c,v 1.24 2001/11/13 00:32:37 lukem Exp $");
#else
static const char sccsid[] = "@(#)ip_frag.c 1.11 3/24/96 (C) 1993-2000 Darren Reed";
static const char rcsid[] = "@(#)Id: ip_frag.c,v 2.10.2.7 2000/11/27 10:26:56 darrenr Exp";

View File

@ -1,4 +1,7 @@
/* $NetBSD: ip_ftp_pxy.c,v 1.18 2001/03/26 06:13:13 mike Exp $ */
/* $NetBSD: ip_ftp_pxy.c,v 1.19 2001/11/13 00:32:37 lukem Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_ftp_pxy.c,v 1.19 2001/11/13 00:32:37 lukem Exp $");
/*
* Simple FTP transparent proxy for in-kernel use. For use with the NAT

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_gre.c,v 1.16 2001/04/13 23:30:22 thorpej Exp $ */
/* $NetBSD: ip_gre.c,v 1.17 2001/11/13 00:32:37 lukem Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -42,6 +42,8 @@
* This currently handles IPPROTO_GRE, IPPROTO_MOBILE
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_gre.c,v 1.17 2001/11/13 00:32:37 lukem Exp $");
#include "gre.h"
#if NGRE > 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_icmp.c,v 1.65 2001/11/04 20:55:27 matt Exp $ */
/* $NetBSD: ip_icmp.c,v 1.66 2001/11/13 00:32:37 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -104,6 +104,9 @@
* @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_icmp.c,v 1.66 2001/11/13 00:32:37 lukem Exp $");
#include "opt_ipsec.h"
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_input.c,v 1.140 2001/11/04 20:55:27 matt Exp $ */
/* $NetBSD: ip_input.c,v 1.141 2001/11/13 00:32:38 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.141 2001/11/13 00:32:38 lukem Exp $");
#include "opt_gateway.h"
#include "opt_pfil_hooks.h"
#include "opt_ipsec.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_ipip.c,v 1.15 2001/04/13 23:30:23 thorpej Exp $ */
/* $NetBSD: ip_ipip.c,v 1.16 2001/11/13 00:32:38 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -43,6 +43,9 @@
* See: RFC 2003.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_ipip.c,v 1.16 2001/11/13 00:32:38 lukem Exp $");
#include "opt_inet.h"
#include "bpfilter.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_log.c,v 1.14 2001/09/28 11:59:55 chs Exp $ */
/* $NetBSD: ip_log.c,v 1.15 2001/11/13 00:32:38 lukem Exp $ */
/*
* Copyright (C) 1997-2000 by Darren Reed.
@ -9,6 +9,10 @@
*
* Id: ip_log.c,v 2.5.2.2 2000/08/13 03:50:41 darrenr Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_log.c,v 1.15 2001/11/13 00:32:38 lukem Exp $");
#include <sys/param.h>
#include <sys/proc.h>
#if defined(KERNEL) && !defined(_KERNEL)

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_mroute.c,v 1.57 2001/11/04 20:55:28 matt Exp $ */
/* $NetBSD: ip_mroute.c,v 1.58 2001/11/13 00:32:38 lukem Exp $ */
/*
* IP multicast forwarding procedures
@ -14,6 +14,9 @@
* MROUTING Revision: 1.2
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_mroute.c,v 1.58 2001/11/13 00:32:38 lukem Exp $");
#include "opt_ipsec.h"
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_nat.c,v 1.40 2001/05/20 13:03:39 martin Exp $ */
/* $NetBSD: ip_nat.c,v 1.41 2001/11/13 00:32:38 lukem Exp $ */
/*
* Copyright (C) 1995-2000 by Darren Reed.
@ -11,7 +11,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_nat.c,v 1.40 2001/05/20 13:03:39 martin Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_nat.c,v 1.41 2001/11/13 00:32:38 lukem Exp $");
#else
static const char sccsid[] = "@(#)ip_nat.c 1.11 6/5/96 (C) 1995 Darren Reed";
static const char rcsid[] = "@(#)Id: ip_nat.c,v 2.37.2.32 2001/01/10 06:19:11 darrenr Exp";

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_output.c,v 1.88 2001/09/17 17:27:00 thorpej Exp $ */
/* $NetBSD: ip_output.c,v 1.89 2001/11/13 00:32:39 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_output.c,v 1.89 2001/11/13 00:32:39 lukem Exp $");
#include "opt_pfil_hooks.h"
#include "opt_ipsec.h"
#include "opt_mrouting.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_proxy.c,v 1.23 2001/02/05 10:42:44 chs Exp $ */
/* $NetBSD: ip_proxy.c,v 1.24 2001/11/13 00:32:39 lukem Exp $ */
/*
* Copyright (C) 1997-2000 by Darren Reed.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_proxy.c,v 1.23 2001/02/05 10:42:44 chs Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_proxy.c,v 1.24 2001/11/13 00:32:39 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_proxy.c,v 2.9.2.1 2000/05/06 12:30:50 darrenr Exp";
#endif

View File

@ -1,4 +1,7 @@
/* $NetBSD: ip_raudio_pxy.c,v 1.6 2001/03/26 06:13:14 mike Exp $ */
/* $NetBSD: ip_raudio_pxy.c,v 1.7 2001/11/13 00:32:39 lukem Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_raudio_pxy.c,v 1.7 2001/11/13 00:32:39 lukem Exp $");
/*
* Id: ip_raudio_pxy.c,v 1.7.2.3 2000/10/27 22:54:04 darrenr Exp

View File

@ -1,4 +1,7 @@
/* $NetBSD: ip_rcmd_pxy.c,v 1.6 2001/03/26 06:13:14 mike Exp $ */
/* $NetBSD: ip_rcmd_pxy.c,v 1.7 2001/11/13 00:32:40 lukem Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_rcmd_pxy.c,v 1.7 2001/11/13 00:32:40 lukem Exp $");
/*
* Id: ip_rcmd_pxy.c,v 1.4.2.4 2000/11/01 14:34:20 darrenr Exp

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_state.c,v 1.30 2001/04/06 15:32:41 darrenr Exp $ */
/* $NetBSD: ip_state.c,v 1.31 2001/11/13 00:32:40 lukem Exp $ */
/*
* Copyright (C) 1995-2000 by Darren Reed.
@ -9,7 +9,8 @@
*/
#if !defined(lint)
#if defined(__NetBSD__)
static const char rcsid[] = "$NetBSD: ip_state.c,v 1.30 2001/04/06 15:32:41 darrenr Exp $";
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_state.c,v 1.31 2001/11/13 00:32:40 lukem Exp $");
#else
static const char sccsid[] = "@(#)ip_state.c 1.8 6/5/96 (C) 1993-2000 Darren Reed";
static const char rcsid[] = "@(#)Id: ip_state.c,v 2.30.2.28 2001/01/08 14:04:46 darrenr Exp";

View File

@ -1,4 +1,4 @@
/* $NetBSD: raw_ip.c,v 1.58 2001/11/04 20:55:28 matt Exp $ */
/* $NetBSD: raw_ip.c,v 1.59 2001/11/13 00:32:40 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -64,6 +64,9 @@
* @(#)raw_ip.c 8.7 (Berkeley) 5/15/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.59 2001/11/13 00:32:40 lukem Exp $");
#include "opt_ipsec.h"
#include "opt_mrouting.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_debug.c,v 1.16 2001/07/08 16:18:57 abs Exp $ */
/* $NetBSD: tcp_debug.c,v 1.17 2001/11/13 00:32:40 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -64,6 +64,9 @@
* @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_debug.c,v 1.17 2001/11/13 00:32:40 lukem Exp $");
#include "opt_inet.h"
#include "opt_tcp_debug.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_input.c,v 1.132 2001/11/04 20:55:28 matt Exp $ */
/* $NetBSD: tcp_input.c,v 1.133 2001/11/13 00:32:40 lukem Exp $ */
/*
%%% portions-copyright-nrl-95
@ -124,6 +124,9 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>.
* connections.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.133 2001/11/13 00:32:40 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
#include "opt_inet_csum.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_output.c,v 1.74 2001/09/10 22:14:27 thorpej Exp $ */
/* $NetBSD: tcp_output.c,v 1.75 2001/11/13 00:32:41 lukem Exp $ */
/*
%%% portions-copyright-nrl-95
@ -114,6 +114,9 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>.
* @(#)tcp_output.c 8.4 (Berkeley) 5/24/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.75 2001/11/13 00:32:41 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
#include "opt_tcp_debug.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_subr.c,v 1.121 2001/11/04 20:55:29 matt Exp $ */
/* $NetBSD: tcp_subr.c,v 1.122 2001/11/13 00:32:41 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_subr.c,v 1.122 2001/11/13 00:32:41 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
#include "opt_tcp_compat_42.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_timer.c,v 1.56 2001/11/04 13:42:28 matt Exp $ */
/* $NetBSD: tcp_timer.c,v 1.57 2001/11/13 00:32:42 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)tcp_timer.c 8.2 (Berkeley) 5/24/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_timer.c,v 1.57 2001/11/13 00:32:42 lukem Exp $");
#include "opt_inet.h"
#include "opt_tcp_debug.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp_usrreq.c,v 1.66 2001/10/29 07:02:34 simonb Exp $ */
/* $NetBSD: tcp_usrreq.c,v 1.67 2001/11/13 00:32:42 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,6 +101,9 @@
* @(#)tcp_usrreq.c 8.5 (Berkeley) 6/21/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tcp_usrreq.c,v 1.67 2001/11/13 00:32:42 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
#include "opt_tcp_debug.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: udp_usrreq.c,v 1.90 2001/11/07 06:30:50 itojun Exp $ */
/* $NetBSD: udp_usrreq.c,v 1.91 2001/11/13 00:32:42 lukem Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -64,6 +64,9 @@
* @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.91 2001/11/13 00:32:42 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
#include "opt_inet_csum.h"