blob: 878ab1172635e813cb460d9b6a065feb3016a339 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
struct msghdr
{
void *msg_name;
socklen_t msg_namelen;
struct iovec *msg_iov;
int msg_iovlen, __pad1;
void *msg_control;
socklen_t msg_controllen, __pad2;
int msg_flags;
};
|