| 88 | iovector_view((struct iovec*)iov, iovcnt).sum()); |
| 89 | } |
| 90 | ssize_t send(const void* buf, size_t count, int flags = 0) override { |
| 91 | FORWARD_SOCK_ACT(less, send(buf, count, flags), count); |
| 92 | } |
| 93 | ssize_t send(const struct iovec* iov, int iovcnt, int flags = 0) override { |
| 94 | FORWARD_SOCK_ACT(less, send(iov, iovcnt, flags), |
| 95 | iovector_view((struct iovec*)iov, iovcnt).sum()); |
nothing calls this directly
no test coverage detected