Document a few sysctls.

Reviewed by:	rwatson
This commit is contained in:
Tom Rhodes 2008-07-20 15:25:20 +00:00
parent 8699ea087e
commit 941b15a3e0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=180630
2 changed files with 6 additions and 6 deletions

View file

@ -86,19 +86,19 @@ __FBSDID("$FreeBSD$");
int ipxcksum = 0;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, checksum, CTLFLAG_RW,
&ipxcksum, 0, "");
&ipxcksum, 0, "compute ipx checksum");
static int ipxprintfs = 0; /* printing forwarding information */
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxprintfs, CTLFLAG_RW,
&ipxprintfs, 0, "");
&ipxprintfs, 0, "printing forwarding information");
static int ipxforwarding = 0;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxforwarding, CTLFLAG_RW,
&ipxforwarding, 0, "");
&ipxforwarding, 0, "do ipx forwarding");
static int ipxnetbios = 0;
SYSCTL_INT(_net_ipx, OID_AUTO, ipxnetbios, CTLFLAG_RW,
&ipxnetbios, 0, "");
&ipxnetbios, 0, "propagate netbios over ipx");
const union ipx_net ipx_zeronet;
const union ipx_host ipx_zerohost;

View file

@ -96,10 +96,10 @@ __FBSDID("$FreeBSD$");
static int ipxsendspace = IPXSNDQ;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxsendspace, CTLFLAG_RW,
&ipxsendspace, 0, "");
&ipxsendspace, 0, "ipx send buffer space");
static int ipxrecvspace = IPXRCVQ;
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxrecvspace, CTLFLAG_RW,
&ipxrecvspace, 0, "");
&ipxrecvspace, 0, "ipx receive buffer space");
static void ipx_usr_abort(struct socket *so);
static int ipx_attach(struct socket *so, int proto, struct thread *td);