diff options
Diffstat (limited to 'src/redis.h')
-rw-r--r-- | src/redis.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/redis.h b/src/redis.h index 3a0e9df00..015d82c4d 100644 --- a/src/redis.h +++ b/src/redis.h @@ -1144,6 +1144,8 @@ sds keyspaceEventsFlagsToString(int flags); void loadServerConfig(char *filename, char *options); void appendServerSaveParams(time_t seconds, int changes); void resetServerSaveParams(); +struct rewriteConfigState; /* Forward declaration to export API. */ +void rewriteConfigRewriteLine(struct rewriteConfigState *state, char *option, sds line, int force); /* db.c -- Keyspace access API */ int removeExpire(redisDb *db, robj *key); |