mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
18 lines
305 B
C
18 lines
305 B
C
#include "wut_socket.h"
|
|
|
|
ssize_t
|
|
recv(int sockfd,
|
|
void *buf,
|
|
size_t len,
|
|
int flags)
|
|
{
|
|
int rc;
|
|
sockfd = __wut_get_nsysnet_fd(sockfd);
|
|
if (sockfd == -1) {
|
|
return -1;
|
|
}
|
|
rc = RPLWRAP(recv)(sockfd, buf, len, flags);
|
|
return (ssize_t)__wut_get_nsysnet_result(NULL, rc);
|
|
}
|
|
|