00001 /* 00002 sys/un.h 00003 */ 00004 00005 /* Open Group Base Specifications Issue 6 */ 00006 00007 #ifndef _SA_FAMILY_T 00008 #define _SA_FAMILY_T 00009 /* Should match corresponding typedef in <sys/socket.h> */ 00010 typedef uint8_t sa_family_t; 00011 #endif /* _SA_FAMILY_T */ 00012 00013 struct sockaddr_un 00014 { 00015 sa_family_t sun_family; 00016 char sun_path[127]; 00017 }; 00018 00019 /* Note: UNIX domain sockets are not implemented! */
1.4.6