| 931 | } |
| 932 | |
| 933 | ssize_t do_recvmsg(int sockfd, struct msghdr* message, int flags, Timeout timeout) override { |
| 934 | return etdoio(LAMBDA(::recvmsg(sockfd, message, flags)), |
| 935 | LAMBDA_TIMEOUT(wait_for_readable(timeout))); |
| 936 | } |
| 937 | |
| 938 | ssize_t do_sendfile(int in_fd, off_t offset, size_t count) { |
| 939 | auto timeout = m_timeout; |
nothing calls this directly
no test coverage detected