xref: /original-bsd/sys/netns/idp_var.h (revision cf2124ff)
1 /*
2  * Copyright (c) 1984, 1985, 1986, 1987 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)idp_var.h	7.4 (Berkeley) 06/28/90
8  */
9 
10 /*
11  * IDP Kernel Structures and Variables
12  */
13 struct	idpstat {
14 	int	idps_badsum;		/* checksum bad */
15 	int	idps_tooshort;		/* packet too short */
16 	int	idps_toosmall;		/* not enough data */
17 	int	idps_badhlen;		/* ip header length < data size */
18 	int	idps_badlen;		/* ip length < ip header length */
19 };
20 
21 #ifdef KERNEL
22 struct	idpstat	idpstat;
23 #endif
24