aboutsummaryrefslogtreecommitdiff
path: root/include/compat/sys/socket.h
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/compat/sys/socket.h
parentfa20dae3297fd547341021c7bda9b7a567f6a881 (diff)
downloadportable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.gz
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.bz2
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.zip
include pipe2/socketpair compat for macOS
Diffstat (limited to 'include/compat/sys/socket.h')
-rw-r--r--include/compat/sys/socket.h7
1 files changed, 7 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