unixipc(6f)
_________________________________________________________________
unixipc Neworking Facility
piping communications within a host in DG/UX
_________________________________________________________________
SYNTAX
#include <sys/types.h>
#include sys/un.h
DESCRIPTION
The unix_ipc protocol is used for interprocess communications
within a single host. It supports stream and datagram
interfaces.
Addressing
Endpoints can be named by entries in the file system:
struct sockaddr_n {
short sun_family; /* AF_UNIX */
char sun_path[109]; /* pathname */
};
SEE ALSO
pipe(2), bind(2)
CAVEAT
This implementation uses names in the file system; this is
subject to change. See NOTES in bind (2).
DG/UX 4.00 Page 1
Licensed material--property of copyright holder(s)