mostly make EON route mtu reflect size of underlying IP route mtu
[unix-history] / usr / src / sys / netiso / clnp_stat.h
CommitLineData
6cc7b678
KS
1/***********************************************************
2 Copyright IBM Corporation 1987
3
4 All Rights Reserved
5
6Permission to use, copy, modify, and distribute this software and its
7documentation for any purpose and without fee is hereby granted,
8provided that the above copyright notice appear in all copies and that
9both that copyright notice and this permission notice appear in
10supporting documentation, and that the name of IBM not be
11used in advertising or publicity pertaining to distribution of the
12software without specific, written prior permission.
13
14IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
15ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
16IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
17ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
18WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
19ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
20SOFTWARE.
21
22******************************************************************/
23
24/*
25 * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
26 */
a50e2bc0
KS
27/* $Header: /var/src/sys/netiso/RCS/clnp_stat.h,v 5.1 89/02/09 16:20:42 hagens Exp $ */
28/* $Source: /var/src/sys/netiso/RCS/clnp_stat.h,v $ */
6cc7b678
KS
29
30
31#ifndef __CLNP_STAT__
32#define __CLNP_STAT__
33
34struct clnp_stat {
4f565be6
KS
35 int cns_total; /* total pkts received */
36 int cns_toosmall; /* fixed part of header too small */
37 int cns_badhlen; /* header length is not reasonable */
38 int cns_badcsum; /* checksum on packet failed */
39 int cns_badaddr; /* address fields were not reasonable */
40 int cns_badvers; /* incorrect version */
41 int cns_noseg; /* segment information forgotten */
42 int cns_noproto; /* incorrect protocol id */
43 int cns_delivered; /* packets consumed by protocol */
44 int cns_ttlexpired; /* ttl has expired */
45 int cns_forward; /* forwarded packets */
46 int cns_sent; /* total packets sent */
47 int cns_odropped; /* o.k. packets discarded, e.g. ENOBUFS */
48 int cns_cantforward; /* non-forwarded packets */
49 int cns_fragmented; /* packets fragmented */
50 int cns_fragments; /* fragments received */
51 int cns_fragdropped; /* fragments discarded */
52 int cns_fragtimeout; /* fragments timed out */
53 int cns_ofragments; /* fragments generated */
54 int cns_cantfrag; /* fragmentation prohibited */
55 int cns_reassembled; /* packets reconstructed */
56 int cns_cachemiss; /* cache misses */
57 int cns_congest_set; /* congestion experienced bit set */
58 int cns_congest_rcvd; /* congestion experienced bit received */
59 int cns_er_inhist[CLNP_ERRORS + 1];
60 int cns_er_outhist[CLNP_ERRORS + 1];
6cc7b678
KS
61} clnp_stat ;
62
63#ifdef INCSTAT
64#undef INCSTAT
65#endif INCSTAT
66#define INCSTAT(x) clnp_stat./**/x/**/++
67
68#endif __CLNP_STAT__