Content deleted Content added
The actual UNIX socket communication does not use files for data exchange; files are only used to create global references for sockets. |
|||
Line 1:
A '''Unix ___domain socket (UDS)''' or '''IPC socket''' (inter-process communication socket) is a virtual socket, similar to an [[internet socket]] that is used in [[POSIX]] [[operating system]]s for [[inter-process communication]]. The correct standard POSIX term is '''POSIX Local IPC Sockets'''.
These connections appear as [[byte stream]]s, much like network connections, but all data remains within the local computer. UNIX ___domain sockets use the file system as
In addition to sending data, processes can send [[file descriptor]]s across a Unix ___domain socket connection using the sendmsg() and recvmsg() system calls.
|