We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8046a commit cab7f8eCopy full SHA for cab7f8e
common.h
@@ -1,6 +1,9 @@
1
#include "php.h"
2
#include "php_ini.h"
3
4
+#ifndef REDIS_COMMON_H
5
+#define REDIS_COMMON_H
6
+
7
#define redis_sock_name "Redis Socket Buffer"
8
#define REDIS_SOCK_STATUS_FAILED 0
9
#define REDIS_SOCK_STATUS_DISCONNECTED 1
@@ -145,3 +148,5 @@ typedef struct {
145
148
146
149
void
147
150
free_reply_callbacks(zval *z_this, RedisSock *redis_sock);
151
152
+#endif
php_redis.h
@@ -18,6 +18,8 @@
18
+----------------------------------------------------------------------+
19
*/
20
21
+#include "common.h"
22
23
#ifndef PHP_REDIS_H
24
#define PHP_REDIS_H
25
0 commit comments