summaryrefslogtreecommitdiff
path: root/net.c
diff options
context:
space:
mode:
authorJustin Brewer <jzb0012@auburn.edu>2018-04-13 14:40:34 -0500
committerJustin Brewer <jzb0012@auburn.edu>2018-04-28 16:35:40 -0500
commit49bbaacc79dc73ed797450aa94463106b18d2a5d (patch)
treea6850a1e0c1d145b0ca5131dabc7a65a0c00944e /net.c
parentbbeab80090556ef115b6e11c9bbab534b9ea7717 (diff)
Strip down fmacros.h
strerror_r and addrinfo require _POSIX_C_SOURCE >= 200112L, which is implied by _XOPEN_SOURCE >= 600. With the removal of AF_LOCAL usage, the only non-standard features being used are the TCP_KEEP* socket flags. _DARWIN_C_SOURCE is required to expose TCP_KEEPALIVE. Fall back to using _XOPEN_SOURCE 600 for all platforms, and additionally define _DARWIN_C_SOURCE for Darwin. Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
Diffstat (limited to 'net.c')
-rw-r--r--net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c
index 99f647d..44f2575 100644
--- a/net.c
+++ b/net.c
@@ -136,7 +136,7 @@ int redisKeepAlive(redisContext *c, int interval) {
val = interval;
-#ifdef _OSX
+#if defined(__APPLE__) && defined(__MACH__)
if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &val, sizeof(val)) < 0) {
__redisSetError(c,REDIS_ERR_OTHER,strerror(errno));
return REDIS_ERR;