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

Method do_sendmsg

net/kernel_socket.cpp:174–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172 return photon::net::send(sockfd, buf, count, flags, timeout);
173 }
174 virtual ssize_t do_sendmsg(int sockfd, const struct msghdr* message, int flags, Timeout timeout) {
175 return photon::net::sendmsg(sockfd, message, flags, timeout);
176 }
177 virtual ssize_t do_recv(int sockfd, void* buf, size_t count, int flags, Timeout timeout) {
178 return photon::net::recv(sockfd, buf, count, flags, timeout);
179 }

Callers

nothing calls this directly

Calls 1

sendmsgFunction · 0.85

Tested by

no test coverage detected