- 27 Aug, 2019 1 commit
-
-
Mark Nunberg authored
Silent SSL trace to stdout by default.
-
- 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 14 commits
-
-
Mark Nunberg authored
Windows: MinGW fixes and Windows Travis builders
-
Marcus Geelnard authored
-
Marcus Geelnard authored
-
Marcus Geelnard authored
-
Marcus Geelnard authored
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.
-
Mark Nunberg authored
Update createArray to take size_t
-
Mark Nunberg authored
-
Mark Nunberg authored
Update README.md
-
Mark Nunberg authored
The setsockopt and getsockopt API diffs from BSD socket and WSA one
-
Mark Nunberg authored
test: fix errstr matching for musl libc
-
Mark Nunberg authored
redisReaderGetReply leak memory
-
Mark Nunberg authored
Remove unnecessary null check before free
-
Mark Nunberg authored
Add install adapters header files
-
Mark Nunberg authored
Removed whitespace before newline
-
- 22 Jul, 2019 1 commit
-
-
Odin Hultgren Van Der Horst authored
- Removed whitespace before newline - Removed win style newline
-
- 17 Jul, 2019 1 commit
-
-
kevin1018 authored
-
- 03 Jul, 2019 1 commit
-
-
Quentin Young authored
-
- 30 May, 2019 1 commit
-
-
qi.yang authored
-
- 14 May, 2019 1 commit
-
-
Eivind Uggedal authored
This makes the tests pass on musl[1] based distros like Alpine Linux. [1]: https://www.musl-libc.org/
-
- 13 May, 2019 1 commit
-
-
Minun Dragonation authored
-
- 05 May, 2019 4 commits
-
-
Minun Dragonation authored
-
Minun Dragonation authored
-
Minun Dragonation authored
-
Minun Dragonation authored
-
- 13 Apr, 2019 2 commits
-
-
Mark Nunberg authored
Fix Compile Error On Windows (Visual Studio)
-
jinjiazhang authored
-
- 11 Apr, 2019 1 commit
-
-
Mark Nunberg authored
-
- 10 Apr, 2019 2 commits
-
-
Mark Nunberg authored
-
Mark Nunberg authored
-
- 02 Apr, 2019 1 commit
-
-
Mark Nunberg authored
Add MinGW support
-
- 01 Apr, 2019 5 commits
-
-
m authored
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.
-
m authored
With this change, Hiredis builds with MinGW and runs on Windows.
-
m authored
The recv/send calls are more portable than read/write, since unlike the latter, the former work with Windows sockets. We also check for EWOULDBLOCK instead of EAGAIN. On most Unices, EAGAIN and EWOULDBLBOCK are the same thing. However, on Windows they are different, and send/recv are expected to give EWOULDBLOCK for non-blocking sockets.
-
m authored
The redisFD type should be equal to the system native socket file desciptor type (for POSIX, this is a plain int). We also introduce the REDIS_INVALID_FD value, which maps to -1 on POSIX systems.
-
m authored
This makes hiredis.c free from system calls related to socket I/O. This is also makes the treatment of raw socket connections more similar to the SSL backend.
-