mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 18:19:24 +01:00
16 lines
259 B
C
16 lines
259 B
C
|
#include "wut_socket.h"
|
||
|
|
||
|
int
|
||
|
listen(int sockfd,
|
||
|
int backlog)
|
||
|
{
|
||
|
int rc;
|
||
|
sockfd = __wut_get_nsysnet_fd(sockfd);
|
||
|
if (sockfd == -1) {
|
||
|
return -1;
|
||
|
}
|
||
|
rc = RPLWRAP(listen)(sockfd, backlog);
|
||
|
return __wut_get_nsysnet_result(NULL, rc);
|
||
|
}
|
||
|
|