mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-03 20:05:37 +03:00
4523505114
the s390x definitions matched the generic ones in sys/socket.h.
18 lines
273 B
C
18 lines
273 B
C
struct msghdr {
|
|
void *msg_name;
|
|
socklen_t msg_namelen;
|
|
struct iovec *msg_iov;
|
|
int __pad1, msg_iovlen;
|
|
void *msg_control;
|
|
int __pad2;
|
|
socklen_t msg_controllen;
|
|
int msg_flags;
|
|
};
|
|
|
|
struct cmsghdr {
|
|
int __pad1;
|
|
socklen_t cmsg_len;
|
|
int cmsg_level;
|
|
int cmsg_type;
|
|
};
|