]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
7c6da73
[redis.git] / src / redis.h
index 54b9fc11308a91cc4f544eac8c14f58b5163ce80..dda0f6c9bee4edbdf8fb5864ca0708ae406cf46b 100644 (file)
@@ -57,6 +57,9 @@
 #define REDIS_SLOWLOG_MAX_LEN 64
 #define REDIS_MAX_CLIENTS 10000
 
+#define REDIS_REPL_TIMEOUT 60
+#define REDIS_REPL_PING_SLAVE_PERIOD 10
+
 /* Hash table parameters */
 #define REDIS_HT_MINFILL        10      /* Minimal hash table fill 10% */
 
@@ -591,6 +594,8 @@ struct redisServer {
     char *masterauth;
     char *masterhost;
     int masterport;
+       int repl_ping_slave_period;
+       int repl_timeout;
     redisClient *master;    /* client that is master for this slave */
     int repl_syncio_timeout; /* timeout for synchronous I/O calls */
     int replstate;          /* replication status if the instance is a slave */