Correct erroneous copyright information.
[unix-history] / usr / src / sys / netns / idp_var.h
CommitLineData
8ae0e4b4 1/*
79b7ed8c 2 * Copyright (c) 1984 Regents of the University of California.
8ae0e4b4
KM
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
79b7ed8c 6 * @(#)idp_var.h 6.3 (Berkeley) %G%
8ae0e4b4 7 */
caa60def
KS
8
9/*
10 * IDP Kernel Structures and Variables
11 */
12struct idpstat {
13 int idps_badsum; /* checksum bad */
14 int idps_tooshort; /* packet too short */
15 int idps_toosmall; /* not enough data */
16 int idps_badhlen; /* ip header length < data size */
17 int idps_badlen; /* ip length < ip header length */
18};
19
20#ifdef KERNEL
21struct idpstat idpstat;
22#endif