source:
trunk/minix/include/sys/un.h@
16
| Last change on this file since 16 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 345 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* |
| 2 | sys/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> */ | |
| 10 | typedef uint8_t sa_family_t; | |
| 11 | #endif /* _SA_FAMILY_T */ | |
| 12 | ||
| 13 | struct 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.