xref: /minix3/minix/net/uds/unix.8 (revision 27852ebe53d5bf221cf5058cb7e858fa8fa8895e)
UNIX 8
NAME
unix - Unix Domain Sockets (PF_UNIX) / Local Sockets (PF_LOCAL)
SYNOPSIS
#include <sys/socket.h>

#include <sys/un.h> int socket(int domain, int type, int protocol);

int socketpair(int domain, int type, int protocol, int sv[2]);

DESCRIPTION
Local sockets, more commonly known as Unix Domain Sockets, provide a means of interprocess communication using the socket API.
SEE ALSO
socket(2) , socketpair(2) , getpeereid(3)
HISTORY
This Unix Domain Sockets first appeared in MINIX 3.1.8.