| 681 | } |
| 682 | |
| 683 | ssize_t do_recvmsg(int sockfd, struct msghdr* message, int flags, Timeout timeout) override { |
| 684 | return fstack_recvmsg(sockfd, message, flags, timeout); |
| 685 | } |
| 686 | |
| 687 | int setsockopt(int level, int option_name, const void* option_value, socklen_t option_len) override { |
| 688 | return fstack_setsockopt(fd, level, option_name, option_value, option_len); |
nothing calls this directly
no test coverage detected