mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-12 09:58:36 +00:00
Use __FBSDID().
This commit is contained in:
parent
f98c8ea46c
commit
f25de95508
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116199
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS CLS - ARP support
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -69,11 +67,6 @@
|
||||
|
||||
#include <vm/uma.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
* Global variables
|
||||
*/
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS Connectionless Datagram Service (CLS) module
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/systm.h>
|
||||
@ -67,11 +65,6 @@
|
||||
|
||||
#include <vm/uma.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
* Global variables
|
||||
*/
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -33,9 +29,11 @@
|
||||
*
|
||||
* External interfaces to SPANS manager. Includes support for
|
||||
* running as a loadable kernel module.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#ifndef ATM_SPANS_MODULE
|
||||
#include "opt_atm.h"
|
||||
#endif
|
||||
@ -69,10 +67,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Global variables
|
||||
*/
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -29,12 +28,8 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* Kernel XDR (External Data Representation) routines
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -84,6 +79,8 @@ __FBSDID("$FreeBSD$");
|
||||
/*static char *sccsid = "from: @(#)xdr.c 1.35 87/08/12";*/
|
||||
/*static char *sccsid = "from: @(#)xdr.c 2.1 88/07/29 4.0 RPCSRC";*/
|
||||
#endif
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
/*
|
||||
* xdr.c, Generic XDR routines implementation.
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS signalling message processing.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -61,10 +59,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
/*
|
||||
* External functions
|
||||
*/
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS Print Routines.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -54,10 +52,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
/*
|
||||
* If LONGPRINT is defined, every field of the SPANS message will be
|
||||
* printed. If not, a shorter summary (useful for debugging without
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS protocol processing module.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -60,10 +58,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Internal functions
|
||||
*/
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS-related subroutines.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/systm.h>
|
||||
@ -61,11 +59,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
* Open a SPANS VCC
|
||||
*
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ===================================
|
||||
* HARP | Host ATM Research Platform
|
||||
* ===================================
|
||||
@ -22,9 +21,6 @@
|
||||
*
|
||||
* Copies of this Software may be made, however, the above copyright
|
||||
* notice must be reproduced on all copies.
|
||||
*
|
||||
* @(#) $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -32,9 +28,11 @@
|
||||
* ---------------------------
|
||||
*
|
||||
* SPANS-related utility routines.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/types.h>
|
||||
@ -54,11 +52,6 @@
|
||||
#include "spans_xdr.h"
|
||||
#include <netatm/spans/spans_var.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("@(#) $FreeBSD$");
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef NOTDEF
|
||||
/* XXX -- Remove all SAP checks? */
|
||||
#define MAX_SAP_ENT 1
|
||||
|
Loading…
Reference in New Issue
Block a user