MCPcopy Create free account
hub / github.com/apache/trafficserver / sendmsg

Method sendmsg

include/iocore/eventsystem/UnixSocket.h:242–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240}
241
242inline int
243UnixSocket::sendmsg(struct msghdr const *m, int flags) const
244{
245 int r;
246 do {
247 if (unlikely((r = ::sendmsg(this->fd, m, flags)) < 0)) {
248 r = -errno;
249 }
250 } while (r == -EINTR);
251 return r;
252}
253
254inline int
255UnixSocket::poll(struct pollfd *fds, unsigned long nfds, int timeout)

Callers 2

sendmsg_reMethod · 0.80
load_buffer_and_writeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected