diff options
author | laodc <github@laodc.com> | 2023-08-21 15:45:58 +0700 |
---|---|---|
committer | laodc <github@laodc.com> | 2023-08-21 15:45:58 +0700 |
commit | 75fdc829bacbdc767b20d3f0e40b91215fce14fe (patch) | |
tree | 209d8d53e71cd5a92deb69fcb740bb2649bb66ee /src/libserver/redis_pool.h | |
parent | 1931487b17059d6c63adf2245c9632384657f89e (diff) | |
download | rspamd-75fdc829bacbdc767b20d3f0e40b91215fce14fe.tar.gz rspamd-75fdc829bacbdc767b20d3f0e40b91215fce14fe.zip |
Added support for Redis 6 ACL (username/password)
Diffstat (limited to 'src/libserver/redis_pool.h')
-rw-r--r-- | src/libserver/redis_pool.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libserver/redis_pool.h b/src/libserver/redis_pool.h index 339bf5f53..ecdaa0f85 100644 --- a/src/libserver/redis_pool.h +++ b/src/libserver/redis_pool.h @@ -45,6 +45,7 @@ void rspamd_redis_pool_config(void *pool, * Create or reuse the specific redis connection * @param pool * @param db + * @param username * @param password * @param ip * @param port @@ -52,7 +53,7 @@ void rspamd_redis_pool_config(void *pool, */ struct redisAsyncContext *rspamd_redis_pool_connect( void *pool, - const gchar *db, const gchar *password, + const gchar *db, const gchar *username, const gchar *password, const char *ip, int port); enum rspamd_redis_pool_release_type { |