Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2010-09-19 18:47:10 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2010-09-19 18:47:10 +0400
commitc6c002119a5e034ecab0b4ab809829f782612d0b (patch)
tree8d3de3e0762b3d045e66a3ef2394fc4ec1a3a745 /library.h
parent09728b84c3f8c64d937ae76803dfc6b77c4e7742 (diff)
Fixed INFO, TYPE for MULTI/EXEC context.
Diffstat (limited to 'library.h')
-rw-r--r--library.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/library.h b/library.h
index 5da8dbe2..481a121a 100644
--- a/library.h
+++ b/library.h
@@ -10,6 +10,8 @@ PHPAPI void redis_long_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_s
PHPAPI void redis_boolean_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab);
PHPAPI void redis_bulk_double_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab);
PHPAPI void redis_string_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab);
+PHPAPI void redis_info_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab);
+PHPAPI void redis_type_response(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab);
PHPAPI RedisSock* redis_sock_create(char *host, int host_len, unsigned short port, long timeout);
PHPAPI int redis_sock_connect(RedisSock *redis_sock TSRMLS_DC);
PHPAPI int redis_sock_server_open(RedisSock *redis_sock, int force_connect TSRMLS_DC);