MCPcopy Create free account
hub / github.com/alibaba/PhotonLibOS / sendv_n

Function sendv_n

net/basic_socket.cpp:200–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200ssize_t sendv_n(int fd, struct iovec *iov, int iovcnt, int flag, Timeout timeout) {
201 iovector_view v(iov, iovcnt);
202 return DOIO_LOOP(sendv(fd, v.iov, v.iovcnt, flag, timeout), BufStepV(v));
203}
204
205ssize_t write(int fd, const void *buf, size_t count, Timeout timeout) {
206 return send(fd, buf, count, MSG_NOSIGNAL, timeout);

Callers 1

writev_nFunction · 0.85

Calls 2

sendvFunction · 0.85
BufStepVClass · 0.70

Tested by

no test coverage detected