123203Smckusick /* 2*63231Sbostic * Copyright (c) 1984, 1985, 1986, 1987, 1993 3*63231Sbostic * The Regents of the University of California. All rights reserved. 423203Smckusick * 544499Sbostic * %sccs.include.redist.c% 633371Ssklower * 7*63231Sbostic * @(#)idp_var.h 8.1 (Berkeley) 06/10/93 823203Smckusick */ 921480Ssklower 1021480Ssklower /* 1121480Ssklower * IDP Kernel Structures and Variables 1221480Ssklower */ 1321480Ssklower struct idpstat { 1421480Ssklower int idps_badsum; /* checksum bad */ 1521480Ssklower int idps_tooshort; /* packet too short */ 1621480Ssklower int idps_toosmall; /* not enough data */ 1721480Ssklower int idps_badhlen; /* ip header length < data size */ 1821480Ssklower int idps_badlen; /* ip length < ip header length */ 1921480Ssklower }; 2021480Ssklower 2121480Ssklower #ifdef KERNEL 2221480Ssklower struct idpstat idpstat; 2321480Ssklower #endif 24