| 586 | } |
| 587 | |
| 588 | int mt_recvfrom(int fd, void *buf, int len, int flags, struct sockaddr *from, socklen_t *fromlen, int timeout) |
| 589 | { |
| 590 | return MtFrame::recvfrom(fd, buf, len, flags, from, fromlen, timeout); |
| 591 | } |
| 592 | |
| 593 | int mt_sendto(int fd, const void *msg, int len, int flags, const struct sockaddr *to, int tolen, int timeout) |
| 594 | { |
nothing calls this directly
no test coverage detected