diff options
Diffstat (limited to 'socket.h')
-rw-r--r-- | socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,7 @@ typedef struct { int domain; int type; int protocol; + void *child; // UNIX socket char *path; @@ -53,6 +54,7 @@ struct sockaddr_in { sa_family_t sin_family; union { uint32_t s_addr; + uint8_t a[4]; } sin_addr; uint16_t sin_port; }; |