1 #ifndef __wasilibc___struct_msghdr_h
2 #define __wasilibc___struct_msghdr_h
3 
4 #include <__typedef_socklen_t.h>
5 
6 struct msghdr {
7     void *msg_name;
8     socklen_t msg_namelen;
9     struct iovec *msg_iov;
10     int msg_iovlen;
11     void *msg_control;
12     socklen_t msg_controllen;
13     int msg_flags;
14 };
15 
16 #endif
17