SmartAudio/prebuilt/gcc/linux-x86/arm/toolchain-sunxi-arm9-musl/toolchain/include/bits/socket.h

16 lines
239 B
C
Raw Normal View History

2018-07-13 01:31:50 +00:00
struct msghdr {
void *msg_name;
socklen_t msg_namelen;
struct iovec *msg_iov;
int msg_iovlen;
void *msg_control;
socklen_t msg_controllen;
int msg_flags;
};
struct cmsghdr {
socklen_t cmsg_len;
int cmsg_level;
int cmsg_type;
};