| 1255 | } |
| 1256 | |
| 1257 | IOURINGINLINE void *io_uring_recvmsg_payload(struct io_uring_recvmsg_out *o, |
| 1258 | struct msghdr *msgh) |
| 1259 | LIBURING_NOEXCEPT |
| 1260 | { |
| 1261 | return (void *)((unsigned char *)io_uring_recvmsg_name(o) + |
| 1262 | msgh->msg_namelen + msgh->msg_controllen); |
| 1263 | } |
| 1264 | |
| 1265 | IOURINGINLINE unsigned int |
| 1266 | io_uring_recvmsg_payload_length(struct io_uring_recvmsg_out *o, |
no test coverage detected