Unix ___domain socket: Difference between revisions

Content deleted Content added
No edit summary
Undid revision 505467325 by 149.254.180.86 (talk)
Line 4:
Unix ___domain sockets use the file system as address [[Namespace (computer science)|name space]]. They are referenced by processes as [[inodes]] in the file system. This allows two processes to open the same socket in order to communicate. However, communication occurs entirely within the operating system kernel.
 
In addition to sending data, processes may send [[file descriptor]] or [[NETBIOS]]s across a Unix ___domain socket connection using the <code>sendmsg()</code> and <code>recvmsg()</code> system calls.
 
==See also==