minix/include/sys/un.h
Philip Homburg 920c462e8c Added {h,n}to{l,s} prototypes. Added IPPROTO_TCP. SA_FAMILY_T -> _SA_FAMILY_T
Added SOCK_RAW, SOCK_RDM, SOCK_SEQPACKET, SO_DEBUG, SO_ERROR.
2005-07-27 11:42:54 +00:00

20 lines
345 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! */