Unixdomain
Unixdomain, commonly referred to as Unix domain sockets or local sockets, is an interprocess communication mechanism provided by Unix and Unix-like systems. It enables processes on the same host to exchange data with lower latency and overhead than network sockets by avoiding the network protocol stack. A Unixdomain socket is addressed using a local identifier, typically a pathname such as /tmp/server.sock; some implementations also support an abstract namespace not represented in the filesystem.
Unix domain sockets support two communication styles: stream-oriented (SOCK_STREAM), which provides a reliable, message-oriented byte stream,
Security and access control are managed through filesystem permissions on the socket node and through system
Compared with network sockets, Unix domain sockets are limited to communication within a single host, but they
Technical notes: the socket family is usually identified in APIs as AF_UNIX or AF_LOCAL, and the exact