Remove building with NOCRYPTO option
[minix3.git] / minix / net / uds / unix.8
blobffde8edc968c1fa32bfa783aa0a9f4ac6a84ae1a
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 .br
14 .ti -5
15 int socketpair(int \fIdomain\fP, int \fItype\fP, int \fIprotocol\fP, int \fIsv[2]\fP);
16 .br
17 .ft P
18 .SH DESCRIPTION
19 Local sockets, more commonly known as Unix Domain Sockets, provide a 
20 means of interprocess communication using the socket API.
21 .SH SEE ALSO
22 .BR socket(2) ,
23 .BR socketpair(2) ,
24 .BR getpeereid(3)
25 .SH HISTORY
26 This Unix Domain Sockets first appeared in MINIX 3.1.8.