iso9660fs: initialize buffer cache
[minix.git] / man / man8 / unix.8
blob8d1f91c3c3734b43ba0d8ede2f49cc5434281994
1 .TH UNIX 8
2 .SH NAME
3 unix \- Unix Domain Sockets (PF_UNIX) / Local Sockets (PF_LOCAL)
4 .SH SYNOPSIS
5 .ft B
6 #include <sys/socket.h>
7 .br
8 #include <sys/un.h>
10 .in +5
11 .ti -5
12 int socket(int \fIdomain\fP, int \fItype\fP, int \fIprotocol\fP);
13 .ti -5
14 int socketpair(int \fIdomain\fP, int \fItype\fP, int \fIprotocol\fP, int \fIsv[2]\fP);
15 .br
16 .ft P
17 .SH DESCRIPTION
18 Local sockets, more commonly known as Unix Domain Sockets, provide a 
19 means of interprocess communication using the socket API.
20 .SH SEE ALSO
21 .BR socket(2),
22 .BR socketpair(2),
23 .BR getpeereid(2),
24 .BR uds(4)
25 .SH HISTORY
26 This Unix Domain Sockets first appeared in Minix 3.1.8.