diff options
Diffstat (limited to 'examples/redis-unstable/tests/modules/moduleconfigstwo.c')
| -rw-r--r-- | examples/redis-unstable/tests/modules/moduleconfigstwo.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/redis-unstable/tests/modules/moduleconfigstwo.c b/examples/redis-unstable/tests/modules/moduleconfigstwo.c deleted file mode 100644 index c0e8f91..0000000 --- a/examples/redis-unstable/tests/modules/moduleconfigstwo.c +++ /dev/null @@ -1,39 +0,0 @@ -#include "redismodule.h" -#include <strings.h> - -/* Second module configs module, for testing. - * Need to make sure that multiple modules with configs don't interfere with each other */ -int bool_config; - -int getBoolConfigCommand(const char *name, void *privdata) { - REDISMODULE_NOT_USED(privdata); - if (!strcasecmp(name, "test")) { - return bool_config; - } - return 0; -} - -int setBoolConfigCommand(const char *name, int new, void *privdata, RedisModuleString **err) { - REDISMODULE_NOT_USED(privdata); - REDISMODULE_NOT_USED(err); - if (!strcasecmp(name, "test")) { - bool_config = new; - return REDISMODULE_OK; - } - return REDISMODULE_ERR; -} - -/* No arguments are expected */ -int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { - REDISMODULE_NOT_USED(argv); - REDISMODULE_NOT_USED(argc); - if (RedisModule_Init(ctx, "configs", 1, REDISMODULE_APIVER_1) == REDISMODULE_ERR) return REDISMODULE_ERR; - - if (RedisModule_RegisterBoolConfig(ctx, "test", 1, REDISMODULE_CONFIG_DEFAULT, getBoolConfigCommand, setBoolConfigCommand, NULL, &argc) == REDISMODULE_ERR) { - return REDISMODULE_ERR; - } - if (RedisModule_LoadConfigs(ctx) == REDISMODULE_ERR) { - return REDISMODULE_ERR; - } - return REDISMODULE_OK; -}
\ No newline at end of file |
