allow nc to build on linux and os x
This commit is contained in:
17
apps/nc/compat/accept4.c
Normal file
17
apps/nc/compat/accept4.c
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <sys/socket.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
int
|
||||
accept4(int s, struct sockaddr *addr, socklen_t *addrlen, int flags)
|
||||
{
|
||||
int rets = accept(s, addr, addrlen);
|
||||
if (rets == -1)
|
||||
return s;
|
||||
|
||||
if (flags & SOCK_CLOEXEC) {
|
||||
flags = fcntl(s, F_GETFD);
|
||||
fcntl(rets, F_SETFD, flags | FD_CLOEXEC);
|
||||
}
|
||||
|
||||
return rets;
|
||||
}
|
Reference in New Issue
Block a user