aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrent Cook <bcook@rapid7.com>2017-01-15 04:30:41 -0600
committerBrent Cook <busterb@gmail.com>2017-01-15 16:00:16 -0600
commitdfb6b11e5a5ba21c6658d87b4df83c2a05d2deab (patch)
tree8ecf72c600ad63d8eba282b0c64cb0169451620d /include
parentfa20dae3297fd547341021c7bda9b7a567f6a881 (diff)
downloadportable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.gz
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.bz2
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.zip
include pipe2/socketpair compat for macOS
Diffstat (limited to 'include')
-rw-r--r--include/compat/sys/socket.h7
-rw-r--r--include/compat/unistd.h4
2 files changed, 11 insertions, 0 deletions
diff --git a/include/compat/sys/socket.h b/include/compat/sys/socket.h
index 17e84f1..10eb05f 100644
--- a/include/compat/sys/socket.h
+++ b/include/compat/sys/socket.h
@@ -8,3 +8,10 @@
8#else 8#else
9#include <win32netcompat.h> 9#include <win32netcompat.h>
10#endif 10#endif
11
12#if !defined(SOCK_NONBLOCK) || !defined(SOCK_CLOEXEC)
13#define SOCK_CLOEXEC 0x8000 /* set FD_CLOEXEC */
14#define SOCK_NONBLOCK 0x4000 /* set O_NONBLOCK */
15int bsd_socketpair(int domain, int type, int protocol, int socket_vector[2]);
16#define socketpair(d,t,p,sv) bsd_socketpair(d,t,p,sv)
17#endif
diff --git a/include/compat/unistd.h b/include/compat/unistd.h
index 52255bb..14825eb 100644
--- a/include/compat/unistd.h
+++ b/include/compat/unistd.h
@@ -40,4 +40,8 @@ int getentropy(void *buf, size_t buflen);
40 40
41#define pledge(request, paths) 0 41#define pledge(request, paths) 0
42 42
43#ifndef HAVE_PIPE2
44int pipe2(int fildes[2], int flags);
45#endif
46
43#endif 47#endif