diff options
author | billf <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
commit | dd35516544a379a6c23755ba8ea52e0cb126c095 (patch) | |
tree | 0f822319d7261647df8d637a9f7ddf894d0567a0 /sys/netinet/raw_ip.c | |
parent | 4dc3ea1a78da868bd91c20c2daef85b47bcb6778 (diff) | |
download | FreeBSD-src-dd35516544a379a6c23755ba8ea52e0cb126c095.zip FreeBSD-src-dd35516544a379a6c23755ba8ea52e0cb126c095.tar.gz |
Add sysctl descriptions to many SYSCTL_XXXs
PR: kern/11197
Submitted by: Adrian Chadd <adrian@FreeBSD.org>
Reviewed by: billf(spelling/style/minor nits)
Looked at by: bde(style)
Diffstat (limited to 'sys/netinet/raw_ip.c')
-rw-r--r-- | sys/netinet/raw_ip.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index 571491d..f94cc09 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_ip.c 8.7 (Berkeley) 5/15/95 - * $Id: raw_ip.c,v 1.57 1999/04/20 13:32:06 peter Exp $ + * $Id: raw_ip.c,v 1.58 1999/04/27 11:17:36 phk Exp $ */ #include <sys/param.h> @@ -413,10 +413,10 @@ rip_ctlinput(cmd, sa, vip) static u_long rip_sendspace = RIPSNDQ; static u_long rip_recvspace = RIPRCVQ; -SYSCTL_INT(_net_inet_raw, OID_AUTO, maxdgram, CTLFLAG_RW, &rip_sendspace, - 0, ""); -SYSCTL_INT(_net_inet_raw, OID_AUTO, recvspace, CTLFLAG_RW, &rip_recvspace, - 0, ""); +SYSCTL_INT(_net_inet_raw, OID_AUTO, maxdgram, CTLFLAG_RW, + &rip_sendspace, 0, "Maximum outgoing raw IP datagram size"); +SYSCTL_INT(_net_inet_raw, OID_AUTO, recvspace, CTLFLAG_RW, + &rip_recvspace, 0, "Maximum incoming raw IP datagram size"); static int rip_attach(struct socket *so, int proto, struct proc *p) |