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

Method recvmsg

include/iocore/eventsystem/UnixSocket.h:178–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178inline int
179UnixSocket::recvmsg(struct msghdr *m, int flags) const
180{
181 int r;
182 do {
183 if (unlikely((r = ::recvmsg(this->fd, m, flags)) < 0)) {
184 r = -errno;
185 }
186 } while (r == -EINTR);
187 return r;
188}
189
190#ifdef HAVE_RECVMMSG
191inline int

Callers 2

net_read_ioMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected