UNIXDomainSocketDateien
UNIX domain sockets are an inter-process communication mechanism that enables processes on the same host to communicate using the operating system’s IPC facilities. They use the AF_UNIX (or AF_LOCAL) address family and support stream, datagram, and, on some systems, sequenced-packet semantics. Unlike Internet domain sockets, they do not use IP addressing or routing; data stays on the local machine and typically incurs lower overhead.
Addressing can be filesystem-based or, on Linux, in an abstract namespace. In pathname-based sockets, the socket
The common use pattern is: server creates a socket, binds to an address, listens, and accepts connections;
Security considerations include restricting access with filesystem permissions and carefully managing the lifecycle of path-based sockets