| 673 | } |
| 674 | |
| 675 | ssize_t do_sendmsg(int sockfd, const struct msghdr* message, int flags, Timeout timeout) override { |
| 676 | return fstack_sendmsg(sockfd, message, flags, timeout); |
| 677 | } |
| 678 | |
| 679 | ssize_t do_recv(int sockfd, void* buf, size_t count, int flags, Timeout timeout) override { |
| 680 | return fstack_recv(sockfd, buf, count, flags, timeout); |
nothing calls this directly
no test coverage detected