1 /*	$OpenBSD: ipx_var.h,v 1.6 2003/06/02 23:28:16 millert Exp $	*/
2 
3 /*-
4  *
5  * Copyright (c) 1996 Michael Shalayeff
6  * Copyright (c) 1995, Mike Mitchell
7  * Copyright (c) 1984, 1985, 1986, 1987, 1993
8  *	The Regents of the University of California.  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *	@(#)ipx_var.h
35  *
36  * from FreeBSD Id: ipx_var.h,v 1.3 1995/11/04 09:03:27 julian Exp
37  */
38 
39 #ifndef _NETIPX_IPX_VAR_H_
40 #define _NETIPX_IPX_VAR_H_
41 
42 /*
43  * IPX Kernel Structures and Variables
44  */
45 struct	ipxstat {
46 	u_long  ipxs_total;             /* total packets received */
47 	u_long  ipxs_badsum;            /* checksum bad */
48 	u_long  ipxs_tooshort;          /* packet too short */
49 	u_long  ipxs_toosmall;          /* not enough data */
50 	u_long  ipxs_forward;           /* packets forwarded */
51 	u_long  ipxs_cantforward;       /* packets rcvd for unreachable dest */
52 	u_long  ipxs_delivered;         /* datagrams delivered to upper level*/
53 	u_long  ipxs_localout;          /* total ipx packets generated here */
54 	u_long  ipxs_odropped;          /* lost packets due to nobufs, etc. */
55 	u_long  ipxs_noroute;           /* packets discarded due to no route */
56 	u_long  ipxs_mtutoosmall;       /* the interface mtu is too small */
57 };
58 
59 /*
60  * Names for IPX sysctl objects.
61  */
62 
63 #define	IPXCTL_CHECKSUM		1
64 #define IPXCTL_FORWARDING	2
65 #define IPXCTL_NETBIOS		3
66 #define IPXCTL_RECVSPACE	4
67 #define IPXCTL_SENDSPACE	5
68 #define	IPXCTL_MAXID		6
69 
70 #define IPXCTL_NAMES { \
71 	{ 0, 0}, \
72 	{ "checksum", CTLTYPE_INT }, \
73 	{ "forwarding", CTLTYPE_INT }, \
74 	{ "netbios", CTLTYPE_INT }, \
75 	{ "recvspace", CTLTYPE_INT }, \
76 	{ "sendspace", CTLTYPE_INT }, \
77 }
78 
79 #ifdef _KERNEL
80 extern struct ipxstat ipxstat;
81 #endif
82 
83 #endif
84