2022-06-26 01:17:31 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SOCK_STRUCT_MSGHDR_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SOCK_STRUCT_MSGHDR_H_
|
|
|
|
#include "libc/calls/struct/iovec.h"
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
|
|
|
struct msghdr { /* Linux+NT ABI */
|
|
|
|
void *msg_name; /* optional address */
|
|
|
|
uint32_t msg_namelen; /* size of msg_name */
|
|
|
|
struct iovec *msg_iov; /* scatter/gather array */
|
2022-10-12 04:06:27 +00:00
|
|
|
int msg_iovlen; /* # elements in msg_iov */
|
|
|
|
void *msg_control; /* ancillary data c. cmsghdr */
|
|
|
|
uint32_t msg_controllen; /* ancillary data buffer len */
|
2022-10-11 00:52:41 +00:00
|
|
|
uint32_t __pad0; /* reconcile abi */
|
|
|
|
int msg_flags; /* MSG_XXX */
|
2022-06-26 01:17:31 +00:00
|
|
|
};
|
|
|
|
|
2022-08-06 10:51:50 +00:00
|
|
|
ssize_t recvmsg(int, struct msghdr *, int);
|
|
|
|
ssize_t sendmsg(int, const struct msghdr *, int);
|
|
|
|
|
2022-06-26 01:17:31 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SOCK_STRUCT_MSGHDR_H_ */
|