Begin the sysctl descriptions with a capital letter.
Make some slight wording tweaks.
This commit is contained in:
parent
8330af909c
commit
a9614a97a1
@ -86,19 +86,19 @@ __FBSDID("$FreeBSD$");
|
|||||||
|
|
||||||
int ipxcksum = 0;
|
int ipxcksum = 0;
|
||||||
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, checksum, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, checksum, CTLFLAG_RW,
|
||||||
&ipxcksum, 0, "compute ipx checksum");
|
&ipxcksum, 0, "Compute ipx checksum");
|
||||||
|
|
||||||
static int ipxprintfs = 0; /* printing forwarding information */
|
static int ipxprintfs = 0; /* printing forwarding information */
|
||||||
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxprintfs, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxprintfs, CTLFLAG_RW,
|
||||||
&ipxprintfs, 0, "printing forwarding information");
|
&ipxprintfs, 0, "Printing forwarding information");
|
||||||
|
|
||||||
static int ipxforwarding = 0;
|
static int ipxforwarding = 0;
|
||||||
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxforwarding, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxforwarding, CTLFLAG_RW,
|
||||||
&ipxforwarding, 0, "do ipx forwarding");
|
&ipxforwarding, 0, "Enable ipx forwarding");
|
||||||
|
|
||||||
static int ipxnetbios = 0;
|
static int ipxnetbios = 0;
|
||||||
SYSCTL_INT(_net_ipx, OID_AUTO, ipxnetbios, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx, OID_AUTO, ipxnetbios, CTLFLAG_RW,
|
||||||
&ipxnetbios, 0, "propagate netbios over ipx");
|
&ipxnetbios, 0, "Propagate netbios over ipx");
|
||||||
|
|
||||||
const union ipx_net ipx_zeronet;
|
const union ipx_net ipx_zeronet;
|
||||||
const union ipx_host ipx_zerohost;
|
const union ipx_host ipx_zerohost;
|
||||||
|
@ -96,10 +96,10 @@ __FBSDID("$FreeBSD$");
|
|||||||
|
|
||||||
static int ipxsendspace = IPXSNDQ;
|
static int ipxsendspace = IPXSNDQ;
|
||||||
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxsendspace, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxsendspace, CTLFLAG_RW,
|
||||||
&ipxsendspace, 0, "ipx send buffer space");
|
&ipxsendspace, 0, "Send buffer space");
|
||||||
static int ipxrecvspace = IPXRCVQ;
|
static int ipxrecvspace = IPXRCVQ;
|
||||||
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxrecvspace, CTLFLAG_RW,
|
SYSCTL_INT(_net_ipx_ipx, OID_AUTO, ipxrecvspace, CTLFLAG_RW,
|
||||||
&ipxrecvspace, 0, "ipx receive buffer space");
|
&ipxrecvspace, 0, "Receive buffer space");
|
||||||
|
|
||||||
static void ipx_usr_abort(struct socket *so);
|
static void ipx_usr_abort(struct socket *so);
|
||||||
static int ipx_attach(struct socket *so, int proto, struct thread *td);
|
static int ipx_attach(struct socket *so, int proto, struct thread *td);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user