2005-07-11 15:00:43 +02:00
|
|
|
/*
|
|
|
|
sys/un.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Open Group Base Specifications Issue 6 */
|
|
|
|
|
2005-07-27 13:42:54 +02:00
|
|
|
#ifndef _SA_FAMILY_T
|
|
|
|
#define _SA_FAMILY_T
|
2005-07-11 15:00:43 +02:00
|
|
|
/* Should match corresponding typedef in <sys/socket.h> */
|
|
|
|
typedef uint8_t sa_family_t;
|
2005-07-27 13:42:54 +02:00
|
|
|
#endif /* _SA_FAMILY_T */
|
2005-07-11 15:00:43 +02:00
|
|
|
|
|
|
|
struct sockaddr_un
|
|
|
|
{
|
|
|
|
sa_family_t sun_family;
|
|
|
|
char sun_path[127];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Note: UNIX domain sockets are not implemented! */
|