diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-01-17 00:34:01 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-01-17 00:34:01 +0000 |
commit | f1f46243321cb5208b5ebaa79a7aeb78c47a45a2 (patch) | |
tree | 28eacfca0ec2f7bd71d648c4660970a50e84291a /sys/netipx/ipx_var.h | |
parent | 9dc0cea9d716a3bd305a424a58e299906b363cc7 (diff) |
Add sysctl vars for checksum, forwarding and netbios.
Remove ancient code from ipx_input. ipxrecvspace/ipxsendspace changed
to ipx_xxx to match netinet counterparts.
Diffstat (limited to 'sys/netipx/ipx_var.h')
-rw-r--r-- | sys/netipx/ipx_var.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/netipx/ipx_var.h b/sys/netipx/ipx_var.h index 270e0692c13..7993e0d3784 100644 --- a/sys/netipx/ipx_var.h +++ b/sys/netipx/ipx_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_var.h,v 1.4 2000/01/11 19:52:16 fgsch Exp $ */ +/* $OpenBSD: ipx_var.h,v 1.5 2000/01/17 00:34:00 fgsch Exp $ */ /*- * @@ -64,12 +64,18 @@ struct ipxstat { * Names for IPX sysctl objects. */ -#define IPXCTL_RECVSPACE 1 -#define IPXCTL_SENDSPACE 2 -#define IPXCTL_MAXID 3 +#define IPXCTL_CHECKSUM 1 +#define IPXCTL_FORWARDING 2 +#define IPXCTL_NETBIOS 3 +#define IPXCTL_RECVSPACE 4 +#define IPXCTL_SENDSPACE 5 +#define IPXCTL_MAXID 6 #define IPXCTL_NAMES { \ { 0, 0}, \ + { "checksum", CTLTYPE_INT }, \ + { "forwarding", CTLTYPE_INT }, \ + { "netbios", CTLTYPE_INT }, \ { "recvspace", CTLTYPE_INT }, \ { "sendspace", CTLTYPE_INT }, \ } |