diff options
-rw-r--r-- | net.c | 2 | ||||
-rw-r--r-- | net.h | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -44,7 +44,7 @@ #include <stdarg.h> #include <stdio.h> -#include "hiredis.h" +#include "net.h" #include "sds.h" /* Forward declaration */ @@ -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); |