Udp,
Bgpd,
Lo,
Bridge,
Mrouted,
Ifmedia,
Arp,
Unix,
Inet,
Ip6,
Mpe,
Ripd,
Netstart,
Intro,
Ifconfig,
Ioctl,
Socket,
Hosts,
Ip,
Route,
Config,
Ospfd,
Netstat,
Tcp,
Pf,
Netintro NETINTRO(4) - Device Drivers Manual # NETINTRO(4) - Device Drivers Manual
NAME # netintro - introduction to networking facilities
SYNOPSIS # #include <sys/socket.h>
#include <net/route.h>
#include <net/if.h>
DESCRIPTION # This section is a general introduction to the networking facilities available in the system. Documentation in this part of section 4 is broken up into three areas: protocol families (domains), protocols, and network interfaces.
All network protocols are associated with a specific protocol family.
...
UNIX(4) - Device Drivers Manual # UNIX(4) - Device Drivers Manual
NAME # unix - UNIX-domain protocol family
SYNOPSIS # #include <sys/types.h>
#include <sys/un.h>
DESCRIPTION # The UNIX-domain protocol family is a collection of protocols that provides local (on-machine) interprocess communication through the normal socket(2) mechanisms. The UNIX-domain family supports the SOCK_STREAM, SOCK_SEQPACKET, and SOCK_DGRAM socket types and uses filesystem pathnames for addressing.
ADDRESSING # UNIX-domain addresses are variable-length filesystem pathnames of at most 104 characters.
...