Use __KERNEL_RCSID() instead of vendor RCS or SCCS IDs.

This commit is contained in:
lukem 2007-12-11 04:55:00 +00:00
parent 9313b4bcb3
commit 6c9202e6d8
17 changed files with 83 additions and 30 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_fil_netbsd.c,v 1.41 2007/09/17 06:25:23 martti Exp $ */
/* $NetBSD: ip_fil_netbsd.c,v 1.42 2007/12/11 04:55:00 lukem Exp $ */
/*
* Copyright (C) 1993-2003 by Darren Reed.
@ -6,9 +6,14 @@
* See the IPFILTER.LICENCE file for details on licencing.
*/
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_fil_netbsd.c,v 1.42 2007/12/11 04:55:00 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_netbsd.c,v 2.55.2.51 2007/05/31 12:27:35 darrenr Exp";
#endif
#endif
#if defined(KERNEL) || defined(_KERNEL)
# undef KERNEL

View File

@ -1,7 +1,4 @@
/* $NetBSD: ip_ftp_pxy.c,v 1.13 2007/05/15 22:52:50 martin Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_ftp_pxy.c,v 1.13 2007/05/15 22:52:50 martin Exp $");
/* $NetBSD: ip_ftp_pxy.c,v 1.14 2007/12/11 04:55:00 lukem Exp $ */
/*
* Copyright (C) 1997-2003 by Darren Reed
@ -14,6 +11,9 @@ __KERNEL_RCSID(1, "$NetBSD: ip_ftp_pxy.c,v 1.13 2007/05/15 22:52:50 martin Exp $
* Id: ip_ftp_pxy.c,v 2.88.2.22 2007/05/10 09:30:39 darrenr Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_ftp_pxy.c,v 1.14 2007/12/11 04:55:00 lukem Exp $");
#define IPF_FTP_PROXY
#define IPF_MINPORTLEN 18

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_h323_pxy.c,v 1.8 2007/05/01 19:08:04 martti Exp $ */
/* $NetBSD: ip_h323_pxy.c,v 1.9 2007/12/11 04:55:01 lukem Exp $ */
/*
* Copyright 2001, QNX Software Systems Ltd. All Rights Reserved
@ -34,7 +34,8 @@
#include "opt_ipfilter.h"
#endif
__KERNEL_RCSID(1, "$NetBSD: ip_h323_pxy.c,v 1.8 2007/05/01 19:08:04 martti Exp $");
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_h323_pxy.c,v 1.9 2007/12/11 04:55:01 lukem Exp $");
#define IPF_H323_PROXY

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_htable.c,v 1.7 2007/04/14 20:34:37 martin Exp $ */
/* $NetBSD: ip_htable.c,v 1.8 2007/12/11 04:55:01 lukem Exp $ */
/*
* Copyright (C) 1993-2001, 2003 by Darren Reed.
@ -58,8 +58,13 @@ struct file;
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_htable.c,v 1.8 2007/12/11 04:55:01 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_htable.c,v 2.34.2.9 2007/02/02 23:06:16 darrenr Exp";
#endif
#endif
#ifdef IPFILTER_LOOKUP
static iphtent_t *fr_iphmfind __P((iphtable_t *, struct in_addr *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_ipsec_pxy.c,v 1.6 2007/04/14 20:34:37 martin Exp $ */
/* $NetBSD: ip_ipsec_pxy.c,v 1.7 2007/12/11 04:55:01 lukem Exp $ */
/*
* Copyright (C) 2001-2003 by Darren Reed
@ -12,7 +12,8 @@
*
*/
__KERNEL_RCSID(1, "$NetBSD: ip_ipsec_pxy.c,v 1.6 2007/04/14 20:34:37 martin Exp $");
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_ipsec_pxy.c,v 1.7 2007/12/11 04:55:01 lukem Exp $");
#define IPF_IPSEC_PROXY

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_irc_pxy.c,v 1.9 2007/04/14 20:34:37 martin Exp $ */
/* $NetBSD: ip_irc_pxy.c,v 1.10 2007/12/11 04:55:01 lukem Exp $ */
/*
* Copyright (C) 2000-2003 Darren Reed
@ -8,6 +8,9 @@
* Id: ip_irc_pxy.c,v 2.39.2.6 2006/07/14 06:12:14 darrenr Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_irc_pxy.c,v 1.10 2007/12/11 04:55:01 lukem Exp $");
#define IPF_IRC_PROXY
#define IPF_IRCBUFSZ 96 /* This *MUST* be >= 64! */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_lookup.c,v 1.12 2007/06/16 10:52:28 martin Exp $ */
/* $NetBSD: ip_lookup.c,v 1.13 2007/12/11 04:55:01 lukem Exp $ */
/*
* Copyright (C) 2002-2003 by Darren Reed.
@ -65,8 +65,13 @@ struct file;
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_lookup.c,v 1.13 2007/12/11 04:55:01 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_lookup.c,v 2.35.2.15 2007/05/26 13:05:13 darrenr Exp";
#endif
#endif
#ifdef IPFILTER_LOOKUP
int ip_lookup_inited = 0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_nat.c,v 1.33 2007/10/02 06:15:12 martti Exp $ */
/* $NetBSD: ip_nat.c,v 1.34 2007/12/11 04:55:02 lukem Exp $ */
/*
* Copyright (C) 1995-2003 by Darren Reed.
@ -116,8 +116,13 @@ extern struct ifnet vpnif;
#define SOCKADDR_IN struct sockaddr_in
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_nat.c,v 1.34 2007/12/11 04:55:02 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 1.33 2007/10/02 06:15:12 martti Exp $";
static const char rcsid[] = "@(#)$Id: ip_nat.c,v 1.34 2007/12/11 04:55:02 lukem Exp $";
#endif
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_netbios_pxy.c,v 1.3 2006/04/04 16:17:19 martti Exp $ */
/* $NetBSD: ip_netbios_pxy.c,v 1.4 2007/12/11 04:55:02 lukem Exp $ */
/*
* Simple netbios-dgm transparent proxy for in-kernel use.
@ -34,7 +34,8 @@
* Id: ip_netbios_pxy.c,v 2.8.2.1 2005/08/20 13:48:23 darrenr Exp
*/
__KERNEL_RCSID(1, "$NetBSD: ip_netbios_pxy.c,v 1.3 2006/04/04 16:17:19 martti Exp $");
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_netbios_pxy.c,v 1.4 2007/12/11 04:55:02 lukem Exp $");
#define IPF_NETBIOS_PROXY

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_pool.c,v 1.10 2007/06/16 10:52:29 martin Exp $ */
/* $NetBSD: ip_pool.c,v 1.11 2007/12/11 04:55:02 lukem Exp $ */
/*
* Copyright (C) 1993-2001, 2003 by Darren Reed.
@ -81,9 +81,14 @@ static int rn_freenode __P((struct radix_node *, void *));
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_pool.c,v 1.11 2007/12/11 04:55:02 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_pool.c,v 2.55.2.20 2007/05/31 12:27:35 darrenr Exp";
#endif
#endif
#ifdef IPFILTER_LOOKUP

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_pptp_pxy.c,v 1.7 2007/04/14 20:34:38 martin Exp $ */
/* $NetBSD: ip_pptp_pxy.c,v 1.8 2007/12/11 04:55:03 lukem Exp $ */
/*
* Copyright (C) 2002-2003 by Darren Reed
@ -9,6 +9,10 @@
* Id: ip_pptp_pxy.c,v 2.10.2.15 2006/10/31 12:11:23 darrenr Exp
*
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_pptp_pxy.c,v 1.8 2007/12/11 04:55:03 lukem Exp $");
#define IPF_PPTP_PROXY
typedef struct pptp_hdr {

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_proxy.c,v 1.16 2007/06/16 10:52:29 martin Exp $ */
/* $NetBSD: ip_proxy.c,v 1.17 2007/12/11 04:55:03 lukem Exp $ */
/*
* Copyright (C) 1997-2003 by Darren Reed.
@ -105,8 +105,13 @@ struct file;
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_proxy.c,v 1.17 2007/12/11 04:55:03 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_proxy.c,v 2.62.2.20 2007/05/31 12:27:36 darrenr Exp";
#endif
#endif
#ifdef INET
static int appr_fixseqack __P((fr_info_t *, ip_t *, ap_session_t *, int ));

View File

@ -1,7 +1,4 @@
/* $NetBSD: ip_raudio_pxy.c,v 1.4 2007/04/14 20:34:38 martin Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_raudio_pxy.c,v 1.4 2007/04/14 20:34:38 martin Exp $");
/* $NetBSD: ip_raudio_pxy.c,v 1.5 2007/12/11 04:55:03 lukem Exp $ */
/*
* Copyright (C) 1998-2003 by Darren Reed
@ -11,6 +8,9 @@ __KERNEL_RCSID(1, "$NetBSD: ip_raudio_pxy.c,v 1.4 2007/04/14 20:34:38 martin Exp
* Id: ip_raudio_pxy.c,v 1.40.2.4 2006/07/14 06:12:17 darrenr Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_raudio_pxy.c,v 1.5 2007/12/11 04:55:03 lukem Exp $");
#define IPF_RAUDIO_PROXY

View File

@ -1,7 +1,4 @@
/* $NetBSD: ip_rcmd_pxy.c,v 1.9 2007/04/14 20:34:38 martin Exp $ */
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_rcmd_pxy.c,v 1.9 2007/04/14 20:34:38 martin Exp $");
/* $NetBSD: ip_rcmd_pxy.c,v 1.10 2007/12/11 04:55:03 lukem Exp $ */
/*
* Copyright (C) 1998-2003 by Darren Reed
@ -14,6 +11,9 @@ __KERNEL_RCSID(1, "$NetBSD: ip_rcmd_pxy.c,v 1.9 2007/04/14 20:34:38 martin Exp $
* code.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_rcmd_pxy.c,v 1.10 2007/12/11 04:55:03 lukem Exp $");
#define IPF_RCMD_PROXY

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_rpcb_pxy.c,v 1.11 2007/04/14 20:34:38 martin Exp $ */
/* $NetBSD: ip_rpcb_pxy.c,v 1.12 2007/12/11 04:55:04 lukem Exp $ */
/*
* Copyright (C) 2002-2003 by Ryan Beasley <ryanb@goddamnbastard.org>
@ -42,6 +42,9 @@
* Id: ip_rpcb_pxy.c,v 2.25.2.6 2007/01/17 11:34:54 darrenr Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: ip_rpcb_pxy.c,v 1.12 2007/12/11 04:55:04 lukem Exp $");
#define IPF_RPCB_PROXY
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_scan.c,v 1.11 2007/05/01 19:08:05 martti Exp $ */
/* $NetBSD: ip_scan.c,v 1.12 2007/12/11 04:55:04 lukem Exp $ */
/*
* Copyright (C) 1995-2001 by Darren Reed.
@ -59,9 +59,14 @@ struct file;
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_scan.c,v 1.12 2007/12/11 04:55:04 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_scan.c,v 2.40.2.9 2007/03/13 09:42:05 darrenr Exp";
#endif
#endif
#ifdef IPFILTER_SCAN /* endif at bottom of file */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_sync.c,v 1.8 2007/04/27 10:17:22 jnemeth Exp $ */
/* $NetBSD: ip_sync.c,v 1.9 2007/12/11 04:55:04 lukem Exp $ */
/*
* Copyright (C) 1995-1998 by Darren Reed.
@ -98,8 +98,13 @@ struct file;
/* END OF INCLUDES */
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_sync.c,v 1.9 2007/12/11 04:55:04 lukem Exp $");
#else
static const char rcsid[] = "@(#)Id: ip_sync.c,v 2.40.2.8 2006/07/14 06:12:20 darrenr Exp";
#endif
#endif
#define SYNC_STATETABSZ 256
#define SYNC_NATTABSZ 256