15 lines
247 B
C
15 lines
247 B
C
|
#ifndef MSGHDR_H_
|
||
|
# define MSGHDR_H_
|
||
|
|
||
|
/* For definitions of struct msghdr and struct mmsghdr. */
|
||
|
# include <sys/socket.h>
|
||
|
|
||
|
# ifndef HAVE_STRUCT_MMSGHDR
|
||
|
struct mmsghdr {
|
||
|
struct msghdr msg_hdr;
|
||
|
unsigned msg_len;
|
||
|
};
|
||
|
# endif
|
||
|
|
||
|
#endif /* MSGHDR_H_ */
|