diff options
| author | Bill Fumerola <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
|---|---|---|
| committer | Bill Fumerola <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
| commit | 3d177f465a88e6d324c54f0bf69bd2df8946e954 (patch) | |
| tree | 90f6eb4af00eec611225d3fa6a0c841ba8a26847 /sys/netinet/raw_ip.c | |
| parent | 139559717bc77367a1305acdeaf319c4205a8a04 (diff) | |
Notes
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 571491d67971..f94cc093c10c 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) |
