From ab3ecf6565e29c9822d3c5edb553e606f894a854 Mon Sep 17 00:00:00 2001 From: Andy Pan Date: Sun, 19 May 2024 10:21:54 +0800 Subject: [PATCH] unix: use the presence of SOCK_* instead of OS macros for socketpair --------- Signed-off-by: Andy Pan --- src/unix/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/tcp.c b/src/unix/tcp.c index f3bef304..e4a65498 100644 --- a/src/unix/tcp.c +++ b/src/unix/tcp.c @@ -610,7 +610,7 @@ void uv__tcp_close(uv_tcp_t* handle) { int uv_socketpair(int type, int protocol, uv_os_sock_t fds[2], int flags0, int flags1) { uv_os_sock_t temp[2]; int err; -#if defined(__FreeBSD__) || defined(__linux__) +#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC) int flags; flags = type | SOCK_CLOEXEC;