Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-01 | Update CMakelists for hiredis/hiredis_ssl builds. | Yossi Gottlieb | |
Also rename the SSL option from `HIREDIS_SSL` to `ENABLE_SSL` to conform with CMake convnetions. | |||
2019-09-01 | Separate hiredis and hiredis_ssl library build. | Yossi Gottlieb | |
2019-09-01 | Use a const funcs in redisContext. | Yossi Gottlieb | |
2019-08-29 | Update CMakeLists with sslio.c rename. | Yossi Gottlieb | |
2019-08-29 | Rename sslio. | Yossi Gottlieb | |
2019-08-29 | wip: SSL code reorganization, see #705. | Yossi Gottlieb | |
2019-08-29 | Merge pull request #706 from yossigo/fix/msvc | Mark Nunberg | |
Fix MSVC build. | |||
2019-08-28 | Fix MSVC build. | Yossi Gottlieb | |
2019-08-27 | Merge pull request #702 from yossigo/report-connect-errors | Mark Nunberg | |
SSL: Properly report SSL_connect() errors. | |||
2019-08-27 | Merge pull request #697 from yossigo/resp3 | Mark Nunberg | |
Port RESP3 support from Redis. | |||
2019-08-27 | Merge pull request #699 from yossigo/silent-ssl-trace | Mark Nunberg | |
Silent SSL trace to stdout by default. | |||
2019-08-25 | Fix typo. | Yossi Gottlieb | |
2019-08-22 | SSL: Properly report SSL_connect() errors. | Yossi Gottlieb | |
2019-08-13 | Merge pull request #670 from jman-krafton/master | Mark Nunberg | |
fix timeout code in windows | |||
2019-08-13 | Silent SSL trace to stdout by default. | Yossi Gottlieb | |
2019-08-12 | add recv error code for clarifying timeout | Sangmoon Yi | |
2019-08-12 | fix timeout code in windows | Sangmoon Yi | |
2019-08-09 | Merge pull request #663 from mbitsnbites/mingw-support-2 | Mark Nunberg | |
Windows: MinGW fixes and Windows Travis builders | |||
2019-08-09 | Travis: Add a Windows MSVC 2017 compilation test | Marcus Geelnard | |
2019-08-09 | Travis: Add a MinGW cross compilation test | Marcus Geelnard | |
2019-08-09 | MSVC: Fix some compiler warnings in sds.h | Marcus Geelnard | |
2019-08-09 | MinGW fix: Use _MSC_VER instead of _WIN32 where appropriate | Marcus Geelnard | |
Use _MSC_VER (instead of _WIN32) for things that are specific for Visual Studio. Also remove #include <winsock2.h> from hiredis.h, as it leaks too many symbols and defines into the global namespace, which is undesirable for a public interface header. Anyone who uses the the affected parts of the hiredis API needs to include the appropriate headers anyway in order to declare struct timeval variables. | |||
2019-08-09 | Merge pull request #597 from justinbrewer/createArray-size_t | Mark Nunberg | |
Update createArray to take size_t | |||
2019-08-09 | Merge branch 'master' into createArray-size_t | Mark Nunberg | |
2019-08-09 | Merge pull request #621 from Crunsher/master | Mark Nunberg | |
Update README.md | |||
2019-08-09 | Merge pull request #662 from dragonation/master | Mark Nunberg | |
The setsockopt and getsockopt API diffs from BSD socket and WSA one | |||
2019-08-09 | Merge pull request #665 from ghost/musl-test-compat | Mark Nunberg | |
test: fix errstr matching for musl libc | |||
2019-08-09 | Merge pull request #671 from movebean/master | Mark Nunberg | |
redisReaderGetReply leak memory | |||
2019-08-09 | Merge pull request #684 from qlyoung/remove-unnecessary-nullcheck | Mark Nunberg | |
Remove unnecessary null check before free | |||
2019-08-09 | Merge pull request #688 from kevin1018/patch-1 | Mark Nunberg | |
Add install adapters header files | |||
2019-08-09 | Merge pull request #691 from Miniwoffer/master | Mark Nunberg | |
Removed whitespace before newline | |||
2019-08-04 | RESP3 support changes from Redis. | Yossi Gottlieb | |
This corresponds to commits d5c54f0b..bea09a7f in the redis repository. | |||
2019-08-04 | Initial RESP3 support [d5c54f0b]. | Yossi Gottlieb | |
2019-07-22 | Removed whitespace before newline | Odin Hultgren Van Der Horst | |
- Removed whitespace before newline - Removed win style newline | |||
2019-07-17 | Add install adapters header files | kevin1018 | |
2019-07-03 | Remove unnecessary null check before free | Quentin Young | |
2019-05-30 | redisReaderGetReply leak memory | qi.yang | |
2019-05-14 | test: fix errstr matching for musl libc | Eivind Uggedal | |
This makes the tests pass on musl[1] based distros like Alpine Linux. [1]: https://www.musl-libc.org/ | |||
2019-05-13 | remove useless type casting | Minun Dragonation | |
2019-05-05 | fix bugs on socket timeout tv usec calculation | Minun Dragonation | |
2019-05-05 | fix bugs for optlen output on size not big enough for timeout events | Minun Dragonation | |
2019-05-05 | fix bugs on ref address incorrect on sockcompact with getsockopt | Minun Dragonation | |
2019-05-05 | fix bugs of setsockopt diff in win compact implementation | Minun Dragonation | |
2019-04-13 | Merge pull request #658 from jinjiazhang/master | Mark Nunberg | |
Fix Compile Error On Windows (Visual Studio) | |||
2019-04-13 | Fix Compile Error On Windows (Visual Studio) | jinjiazhang | |
2019-04-11 | fix blocking timeouts on SSL reads/writes | Mark Nunberg | |
2019-04-10 | build ssl example if ssl is enabled | Mark Nunberg | |
2019-04-10 | ensure that blocking timeout is set | Mark Nunberg | |
2019-04-02 | Merge pull request #652 from mbitsnbites/mingw-support | Mark Nunberg | |
Add MinGW support | |||
2019-04-01 | CMake: Minor modernization | m | |
Rely more on transitive dependencies, as provided by TARGET_LINK_LIBRARIES. Avoid using ADD_DEFINITIONS and INCLUDE_DIRECTORIES. This avoids leakage/pollution of defines and includes. |