| 81 | iovector_view((struct iovec*)iov, iovcnt).sum()); |
| 82 | } |
| 83 | ssize_t recv(void* buf, size_t count, int flags = 0) override { |
| 84 | FORWARD_SOCK_ACT(less_equal, recv(buf, count, flags), count); |
| 85 | } |
| 86 | ssize_t recv(const struct iovec* iov, int iovcnt, int flags = 0) override { |
| 87 | FORWARD_SOCK_ACT(less_equal, recv(iov, iovcnt, flags), |
| 88 | iovector_view((struct iovec*)iov, iovcnt).sum()); |
nothing calls this directly
no test coverage detected