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:
authormichael-grunder <michael.grunder@gmail.com>2013-03-27 21:21:18 +0400
committermichael-grunder <michael.grunder@gmail.com>2013-03-27 21:21:18 +0400
commitef792320e7a5acbb7361ab4dfcb9624c115b7e39 (patch)
tree481464ba1e55555ecde7f616b60526f184fba102 /common.h
parentb2ffb7ac753f5fa94d808dbf684a64e9f0e6f8c5 (diff)
Introspection methods
This commit adds methods to get information about the state of our phpredis object, such as what host/port we are connected to, our timeout, etc... The following methods have been added: getHost() getPort() getDBNum() getTimeout() getReadTimeout() isConnected() getPersistentID() getAuth() In addition, there is a small memory leak fix when a persistent id was specifically passed to connect() (it wasn't beeing freed). Addresses issue #320
Diffstat (limited to 'common.h')
-rw-r--r--common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.h b/common.h
index 1b9e97f5..33d60ce6 100644
--- a/common.h
+++ b/common.h
@@ -157,6 +157,7 @@ typedef struct {
php_stream *stream;
char *host;
short port;
+ char *auth;
double timeout;
double read_timeout;
int failed;