musl/arch/s390x/bits/socket.h
Szabolcs Nagy 4523505114 s390x: drop SO_ definitions from bits/socket.h
the s390x definitions matched the generic ones in sys/socket.h.
2019-07-01 14:12:25 -04:00

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;
};