inet.4 tcp.4 udp.4: Replace *CTL_* OID macro names with sysctl names
authorMike Karels <karels@FreeBSD.org>
Wed, 13 Jul 2022 17:50:23 +0000 (12:50 -0500)
committerMike Karels <karels@FreeBSD.org>
Thu, 14 Jul 2022 13:50:13 +0000 (08:50 -0500)
commitb691e485bda51ac847ed9c41fb28e961e0fa4de8
treeb243998ac281ad9067cb5cba2b30bc9445f63f5f
parentf4ca0fdbe69db4ab8147406e753d869d77485c2c
inet.4 tcp.4 udp.4: Replace *CTL_* OID macro names with sysctl names

Older sysctls with constant OID macros were identified with those
in inet.4, tcp.4, and udp.4; newer sysctls with automatic numbering
were identified by sysctl names.  No one remembers the OID macros,
or knows what they are; sysctls are always done by name now, usually
via sysctl(8).

Replace the OID macro names with sysctl names so that there is one
uniform identifier type; sysctl names were previously in parens.
Make the formatting a little more consistent in this area.  In inet.4
and udp.4, move the "ip." or "udp." prefix from each entry into the
top-level name at the start of the section, as they are all the same.

Reviewed by: rpokala
Differential Revision: https://reviews.freebsd.org/D35806
share/man/man4/inet.4
share/man/man4/tcp.4
share/man/man4/udp.4