| 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 | } |