1 /* 2 * Copyright (c) 1984, 1985, 1986, 1987, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)idp_var.h 8.1 (Berkeley) 06/10/93 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