- 29 Jan, 2020 1 commit
-
-
akichan authored
alloc.h added in # 754 But not added to INSTALL_INCLUDE_PATH
-
- 28 Jan, 2020 1 commit
-
-
Michael Grunder authored
Create allocation wrappers with a configurable OOM handler (defaults to abort()). See #752, #747
-
- 01 Jan, 2020 2 commits
-
-
Michael Grunder authored
fix spelling mistakes
-
ShooterIT authored
-
- 18 Dec, 2019 1 commit
-
-
Michael Grunder authored
Free the reply in redisGetReply when passed NULL
-
- 12 Dec, 2019 1 commit
-
-
michael-grunder authored
We currently perform a NULL check in redisGetReply and don't push the reply back to the caller, but we don't free any reply meaning that this will leak memory: redisGetReply(context, NULL); This change simply frees the reply if we were passed NULL. Addresses #740
-
- 06 Dec, 2019 1 commit
-
-
Michael Grunder authored
Adding an option to DISABLE_TESTS
-
- 26 Nov, 2019 1 commit
-
-
Michael Grunder authored
Fix dead code in sslLogCallback relating to should_log variable.
-
- 25 Nov, 2019 1 commit
-
-
Nathan Scott authored
Coverity scans found that the should_log logic in sslLogCallback is not working as expected because the variable is not correctly initialised (the conditional code before logging always sets the value to 1, which it already is).
-
- 19 Nov, 2019 2 commits
-
-
Michael Grunder authored
Fix typo in dict.c.
-
Kevin authored
-
- 04 Nov, 2019 1 commit
-
-
Paul Botros authored
Useful when hiredis is used as a CMake dependency in other projects and added via add_subdirectory(). With DISABLE_TESTS on, `make test` in the parent project won't run hiredis tests.
-
- 10 Oct, 2019 2 commits
-
-
michael-grunder authored
-
Michael Grunder authored
Update README with SSL support.
-
- 08 Oct, 2019 1 commit
-
-
Michael Grunder authored
Fixes leaks in unit tests
-
- 07 Oct, 2019 1 commit
-
-
Yossi Gottlieb authored
-
- 25 Sep, 2019 1 commit
-
-
michael-grunder authored
redisFormatSdsCommandArgv takes an sds* and calls sdsempty() for us. Addresses #714
-
- 16 Sep, 2019 5 commits
-
-
Mark Nunberg authored
SSL Tests
-
Yossi Gottlieb authored
This repeats all existing tests in SSL mode, but does not yet provide SSL-specific tests.
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
We should not attempt to keep the context and re-establish the TLS connection for several reasons: 1. Maintain symmetry between redisConnect() and redisReconnect(), so in both cases an extra step is required to initiate SSL. 2. The caller may also wish to reconfigure the SSL session and needs a chance to do that. 3. It is not a practical thing to do on an async non-blocking connection context.
-
Mark Nunberg authored
SSL Reorganization
-
- 01 Sep, 2019 3 commits
-
-
Yossi Gottlieb authored
Also rename the SSL option from `HIREDIS_SSL` to `ENABLE_SSL` to conform with CMake convnetions.
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
- 29 Aug, 2019 4 commits
-
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
Mark Nunberg authored
Fix MSVC build.
-
- 28 Aug, 2019 1 commit
-
-
Yossi Gottlieb authored
-
- 27 Aug, 2019 3 commits
-
-
Mark Nunberg authored
SSL: Properly report SSL_connect() errors.
-
Mark Nunberg authored
Port RESP3 support from Redis.
-
Mark Nunberg authored
Silent SSL trace to stdout by default.
-
- 25 Aug, 2019 1 commit
-
-
Yossi Gottlieb authored
-
- 22 Aug, 2019 1 commit
-
-
Yossi Gottlieb authored
-
- 13 Aug, 2019 2 commits
-
-
Mark Nunberg authored
fix timeout code in windows
-
Yossi Gottlieb authored
-
- 12 Aug, 2019 2 commits
-
-
Sangmoon Yi authored
-
Sangmoon Yi authored
-
- 09 Aug, 2019 1 commit
-
-
Mark Nunberg authored
Windows: MinGW fixes and Windows Travis builders
-