diff options
Diffstat (limited to 'include/sys')
| -rw-r--r-- | include/sys/socket.h | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/include/sys/socket.h b/include/sys/socket.h index d7527911..b911d6ee 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -26,6 +26,17 @@ struct ucred  	uid_t uid;  	gid_t gid;  }; + +struct mmsghdr +{ +	struct msghdr msg_hdr; +	unsigned int  msg_len; +}; + +struct timespec; + +int sendmmsg (int, struct mmsghdr *, unsigned int, unsigned int); +int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *);  #endif  struct linger  | 
