From 2c17d2e22163437a6d4ee1ab41f401115468bbad Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Wed, 22 Dec 2010 18:01:50 +0100 Subject: [PATCH] Missing declaration. --- async.h | 1 + 1 file changed, 1 insertion(+) diff --git a/async.h b/async.h index 2ef0e21..3ebea4e 100644 --- a/async.h +++ b/async.h @@ -90,6 +90,7 @@ typedef struct redisAsyncContext { /* Functions that proxy to hiredis */ redisAsyncContext *redisAsyncConnect(const char *ip, int port); +redisAsyncContext *redisAsyncConnectUnix(const char *path); int redisAsyncSetReplyObjectFunctions(redisAsyncContext *ac, redisReplyObjectFunctions *fn); int redisAsyncSetConnectCallback(redisAsyncContext *ac, redisConnectCallback *fn); int redisAsyncSetDisconnectCallback(redisAsyncContext *ac, redisDisconnectCallback *fn);