summaryrefslogtreecommitdiff
path: root/sys/netipx/ipx_var.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-11-25 08:20:04 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-11-25 08:20:04 +0000
commite22e8b458b746af16a67ea878e2ca82aed43b1cc (patch)
tree0607c393af8ccddd368f53d406980c510f2c341c /sys/netipx/ipx_var.h
parentd5b9124bfc4cc3de29c46dfca9d16f169e8dc9cd (diff)
sysctl entries;
control ipx {send,recv} queues size
Diffstat (limited to 'sys/netipx/ipx_var.h')
-rw-r--r--sys/netipx/ipx_var.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/sys/netipx/ipx_var.h b/sys/netipx/ipx_var.h
index 7aae1111ca4..ada67246fd7 100644
--- a/sys/netipx/ipx_var.h
+++ b/sys/netipx/ipx_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipx_var.h,v 1.2 1996/10/26 09:34:55 mickey Exp $ */
+/* $OpenBSD: ipx_var.h,v 1.3 1996/11/25 08:20:02 mickey Exp $ */
/*-
*
@@ -54,6 +54,20 @@ struct ipxstat {
int ipxs_badlen; /* ip length < ip header length */
};
+/*
+ * Names for IPX sysctl objects.
+ */
+
+#define IPXCTL_RECVSPACE 1
+#define IPXCTL_SENDSPACE 2
+#define IPXCTL_MAXID 3
+
+#define IPXCTL_NAMES { \
+ { 0, 0}, \
+ { "recvspace", CTLTYPE_INT }, \
+ { "sendspace", CTLTYPE_INT }, \
+}
+
#ifdef _KERNEL
extern struct ipxstat ipxstat;
#endif