Fill in a few sysctl descriptions.
Approved by: rwatson
This commit is contained in:
parent
ad291f81da
commit
be6b130476
@ -139,14 +139,15 @@ SYSCTL_NODE(_net_local, SOCK_STREAM, stream, CTLFLAG_RW, 0, "SOCK_STREAM");
|
||||
SYSCTL_NODE(_net_local, SOCK_DGRAM, dgram, CTLFLAG_RW, 0, "SOCK_DGRAM");
|
||||
|
||||
SYSCTL_ULONG(_net_local_stream, OID_AUTO, sendspace, CTLFLAG_RW,
|
||||
&unpst_sendspace, 0, "");
|
||||
&unpst_sendspace, 0, "Default stream send space.");
|
||||
SYSCTL_ULONG(_net_local_stream, OID_AUTO, recvspace, CTLFLAG_RW,
|
||||
&unpst_recvspace, 0, "");
|
||||
&unpst_recvspace, 0, "Default stream receive space.");
|
||||
SYSCTL_ULONG(_net_local_dgram, OID_AUTO, maxdgram, CTLFLAG_RW,
|
||||
&unpdg_sendspace, 0, "");
|
||||
&unpdg_sendspace, 0, "Default datagram send space.");
|
||||
SYSCTL_ULONG(_net_local_dgram, OID_AUTO, recvspace, CTLFLAG_RW,
|
||||
&unpdg_recvspace, 0, "");
|
||||
SYSCTL_INT(_net_local, OID_AUTO, inflight, CTLFLAG_RD, &unp_rights, 0, "");
|
||||
&unpdg_recvspace, 0, "Default datagram receive space.");
|
||||
SYSCTL_INT(_net_local, OID_AUTO, inflight, CTLFLAG_RD, &unp_rights, 0,
|
||||
"File descriptors in flight.");
|
||||
|
||||
/*-
|
||||
* Locking and synchronization:
|
||||
@ -1969,10 +1970,12 @@ unp_gc_process(struct unpcb *unp)
|
||||
}
|
||||
|
||||
static int unp_recycled;
|
||||
SYSCTL_INT(_net_local, OID_AUTO, recycled, CTLFLAG_RD, &unp_recycled, 0, "");
|
||||
SYSCTL_INT(_net_local, OID_AUTO, recycled, CTLFLAG_RD, &unp_recycled, 0,
|
||||
"Number of unreachable sockets claimed by the garbage collector.");
|
||||
|
||||
static int unp_taskcount;
|
||||
SYSCTL_INT(_net_local, OID_AUTO, taskcount, CTLFLAG_RD, &unp_taskcount, 0, "");
|
||||
SYSCTL_INT(_net_local, OID_AUTO, taskcount, CTLFLAG_RD, &unp_taskcount, 0,
|
||||
"Number of times the garbage collector has run.");
|
||||
|
||||
static void
|
||||
unp_gc(__unused void *arg, int pending)
|
||||
|
@ -126,7 +126,8 @@ SYSCTL_DECL(_net_inet_ipsec);
|
||||
|
||||
/* net.inet.ipsec */
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_DEF_POLICY,
|
||||
def_policy, CTLFLAG_RW, &ip4_def_policy.policy, 0, "IPsec default policy.");
|
||||
def_policy, CTLFLAG_RW, &ip4_def_policy.policy, 0,
|
||||
"IPsec default policy.");
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_DEF_ESP_TRANSLEV, esp_trans_deflev,
|
||||
CTLFLAG_RW, &ip4_esp_trans_deflev, 0, "Default ESP transport mode level");
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_DEF_ESP_NETLEV, esp_net_deflev,
|
||||
@ -144,11 +145,14 @@ SYSCTL_INT(_net_inet_ipsec, IPSECCTL_AH_OFFSETMASK,
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_DFBIT,
|
||||
dfbit, CTLFLAG_RW, &ip4_ipsec_dfbit, 0, "Do not fragment bit on encap.");
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_ECN,
|
||||
ecn, CTLFLAG_RW, &ip4_ipsec_ecn, 0, "Explicit Congestion Notification handling.");
|
||||
ecn, CTLFLAG_RW, &ip4_ipsec_ecn, 0,
|
||||
"Explicit Congestion Notification handling.");
|
||||
SYSCTL_INT(_net_inet_ipsec, IPSECCTL_DEBUG,
|
||||
debug, CTLFLAG_RW, &ipsec_debug, 0, "Enable IPsec debugging output when set.");
|
||||
debug, CTLFLAG_RW, &ipsec_debug, 0,
|
||||
"Enable IPsec debugging output when set.");
|
||||
SYSCTL_INT(_net_inet_ipsec, OID_AUTO,
|
||||
crypto_support, CTLFLAG_RW, &crypto_support,0, "Crypto driver selection.");
|
||||
crypto_support, CTLFLAG_RW, &crypto_support, 0,
|
||||
"Crypto driver selection.");
|
||||
SYSCTL_STRUCT(_net_inet_ipsec, OID_AUTO,
|
||||
ipsecstats, CTLFLAG_RD, &ipsec4stat, ipsecstat, "IPsec IPv4 statistics.");
|
||||
|
||||
@ -182,7 +186,7 @@ SYSCTL_DECL(_net_inet6_ipsec6);
|
||||
/* net.inet6.ipsec6 */
|
||||
#ifdef COMPAT_KAME
|
||||
SYSCTL_OID(_net_inet6_ipsec6, IPSECCTL_STATS, stats, CTLFLAG_RD,
|
||||
0,0, compat_ipsecstats_sysctl, "S", "IPsec IPv6 statistics.");
|
||||
0, 0, compat_ipsecstats_sysctl, "S", "IPsec IPv6 statistics.");
|
||||
#endif /* COMPAT_KAME */
|
||||
SYSCTL_INT(_net_inet6_ipsec6, IPSECCTL_DEF_POLICY,
|
||||
def_policy, CTLFLAG_RW, &ip4_def_policy.policy, 0, "IPsec default policy.");
|
||||
@ -198,7 +202,8 @@ SYSCTL_INT(_net_inet6_ipsec6, IPSECCTL_ECN,
|
||||
ecn, CTLFLAG_RW, &ip6_ipsec_ecn, 0,
|
||||
"Explicit Congestion Notification handling.");
|
||||
SYSCTL_INT(_net_inet6_ipsec6, IPSECCTL_DEBUG,
|
||||
debug, CTLFLAG_RW, &ipsec_debug, 0, "Enable IPsec debugging output when set.");
|
||||
debug, CTLFLAG_RW, &ipsec_debug, 0,
|
||||
"Enable IPsec debugging output when set.");
|
||||
SYSCTL_STRUCT(_net_inet6_ipsec6, IPSECCTL_STATS,
|
||||
ipsecstats, CTLFLAG_RD, &ipsec6stat, ipsecstat, "IPsec IPv6 statistics.");
|
||||
#endif /* INET6 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user