Previously, INET and INET6 support was determined by fetching the kernel
configuration (kern.conftxt) and grep'ing through it. This approach fails
if the kernel was compiled without an embedded conftxt.
Use the kern.features.inet and kern.features.inet6 sysctls instead to
determine INET and INET6 support. These knobs return non-zero if the
feature is supported.
This lets us call one less command (since grep is no longer needed) and
works on systems without conftxt.