minix/include/sys/un.h
2005-07-11 13:00:43 +00:00

20 lines
342 B
C

/*
sys/un.h
*/
/* Open Group Base Specifications Issue 6 */
#ifndef SA_FAMILY_T
#define SA_FAMILY_T
/* Should match corresponding typedef in <sys/socket.h> */
typedef uint8_t sa_family_t;
#endif /* SA_FAMILY_T */
struct sockaddr_un
{
sa_family_t sun_family;
char sun_path[127];
};
/* Note: UNIX domain sockets are not implemented! */