summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authorkeramida <keramida@FreeBSD.org>2006-03-20 21:44:12 +0000
committerkeramida <keramida@FreeBSD.org>2006-03-20 21:44:12 +0000
commit5b2b6f7af785ebc60e0fdeae1838e2f4d2d5caf7 (patch)
treeded2aec219f6599281f887174519987be591ad1f /sys/netinet
parent13ad9e48d194aaa9df0f09c14a965cb6583b92d5 (diff)
downloadFreeBSD-src-5b2b6f7af785ebc60e0fdeae1838e2f4d2d5caf7.zip
FreeBSD-src-5b2b6f7af785ebc60e0fdeae1838e2f4d2d5caf7.tar.gz
Add descriptions for the sysctls:
net.inet.icmp.drop_redirect net.inet.icmp.log_redirect net.inet.icmp.icmplim net.inet.icmp.icmplim_output Approved & text by: andre
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_icmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c
index a20967a..b3539a9 100644
--- a/sys/netinet/ip_icmp.c
+++ b/sys/netinet/ip_icmp.c
@@ -93,19 +93,19 @@ SYSCTL_UINT(_net_inet_icmp, OID_AUTO, maskfake, CTLFLAG_RW,
static int drop_redirect = 0;
SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW,
- &drop_redirect, 0, "");
+ &drop_redirect, 0, "Ignore ICMP redirects");
static int log_redirect = 0;
SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW,
- &log_redirect, 0, "");
+ &log_redirect, 0, "Log ICMP redirects to the console");
static int icmplim = 200;
SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RW,
- &icmplim, 0, "");
+ &icmplim, 0, "Maximum number of ICMP responses per second");
static int icmplim_output = 1;
SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW,
- &icmplim_output, 0, "");
+ &icmplim_output, 0, "Enable rate limiting of ICMP responses");
static char reply_src[IFNAMSIZ];
SYSCTL_STRING(_net_inet_icmp, OID_AUTO, reply_src, CTLFLAG_RW,
OpenPOWER on IntegriCloud