source: trunk/minix/include/sys/un.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 345 bytes
Line 
1/*
2sys/un.h
3*/
4
5/* Open Group Base Specifications Issue 6 */
6
7#ifndef _SA_FAMILY_T
8#define _SA_FAMILY_T
9/* Should match corresponding typedef in <sys/socket.h> */
10typedef uint8_t sa_family_t;
11#endif /* _SA_FAMILY_T */
12
13struct sockaddr_un
14{
15 sa_family_t sun_family;
16 char sun_path[127];
17};
18
19/* Note: UNIX domain sockets are not implemented! */
Note: See TracBrowser for help on using the repository browser.