Unix Sockets : AF_LOCAL vs AF_INET Unix Sockets : AF_LOCAL vs AF_INET c c

Unix Sockets : AF_LOCAL vs AF_INET


AF_LOCAL uses UNIX domain sockets which are local to the filesystem and can be used for internal communications. AF_INET is an IP socket. AF_LOCAL will not incur some performance penalties related to sending data over IP. See this old but very nice discussion of the topic.