| 62 | FORWARD_SOCK_ACT(less_equal, read(buf, count), count); |
| 63 | } |
| 64 | ssize_t write(const void* buf, size_t count) override { |
| 65 | FORWARD_SOCK_ACT(less, write(buf, count), count); |
| 66 | } |
| 67 | ssize_t readv(const struct iovec* iov, int iovcnt) override { |
| 68 | FORWARD_SOCK_ACT(less_equal, readv(iov, iovcnt), |
| 69 | iovector_view((struct iovec*)iov, iovcnt).sum()); |