4.3BSD-UWisc/include/netns/idp_var.h
/*
* Copyright (c) 1984, 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)idp_var.h 7.1 (Berkeley) 6/5/86
*/
/*
* RCS Info
* $Header: idp_var.h,v 3.1 86/10/22 13:37:05 tadl Exp $
* $Locker: $
*/
/*
* IDP Kernel Structures and Variables
*/
struct idpstat {
int idps_badsum; /* checksum bad */
int idps_tooshort; /* packet too short */
int idps_toosmall; /* not enough data */
int idps_badhlen; /* ip header length < data size */
int idps_badlen; /* ip length < ip header length */
};
#ifdef KERNEL
struct idpstat idpstat;
#endif