mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
32 lines
560 B
C
32 lines
560 B
C
#include "wut_socket.h"
|
|
|
|
int
|
|
accept(int sockfd,
|
|
struct sockaddr *address,
|
|
socklen_t *addrlen)
|
|
{
|
|
int rc, fd, dev;
|
|
|
|
fd = __wut_get_nsysnet_fd(sockfd);
|
|
if (fd == -1) {
|
|
return -1;
|
|
}
|
|
|
|
dev = __get_handle(sockfd)->device;
|
|
sockfd = fd;
|
|
|
|
fd = __alloc_handle(dev);
|
|
if (fd == -1) {
|
|
return -1;
|
|
}
|
|
|
|
rc = RPLWRAP(accept)(sockfd, address, addrlen);
|
|
if (rc == -1) {
|
|
__release_handle(fd);
|
|
return __wut_get_nsysnet_result(NULL, rc);
|
|
}
|
|
|
|
*(int *)__get_handle(fd)->fileStruct = rc;
|
|
return fd;
|
|
}
|