summaryrefslogtreecommitdiff
path: root/net.h
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-16 22:59:07 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-16 22:59:07 +0100
commit7e4ce5736750e438dc4a94e2651b434faf0c98b5 (patch)
treea9c3b68d1c80893f04068be2ec325ae204d9e401 /net.h
parenta1e2c6dfed9006764dacc78cd600c921a393d414 (diff)
Solaris doesn't know AF_LOCAL
Diffstat (limited to 'net.h')
-rw-r--r--net.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/net.h b/net.h
index 0e56000..b052d97 100644
--- a/net.h
+++ b/net.h
@@ -31,6 +31,12 @@
#ifndef __NET_H
#define __NET_H
+#include "hiredis.h"
+
+#if defined(__sun)
+#define AF_LOCAL AF_UNIX
+#endif
+
int redisContextConnectTcp(redisContext *c, const char *addr, int port);
int redisContextConnectUnix(redisContext *c, const char *path);