Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-02 | increase read depth by one, would allow ruby redis client to read from slowlog | mrb | |
2011-11-28 | Merge pull request #67 from jzwinck/master | Pieter Noordhuis | |
A small fix for outdated/typo'd comments in hiredis.c | |||
2011-11-28 | Fix minor inconsistencies in comment. | John Zwinck | |
2011-07-20 | Merge pull request #47 from geoffgarside/addrinfo | Pieter Noordhuis | |
Use getaddrinfo | |||
2011-07-11 | Merge pull request #54 from rtyler/pu | Pieter Noordhuis | |
Include stdlib.h in async.c for free(3), realloc(3) and strtol(3) support | |||
2011-07-10 | Include stdlib.h in async.c for free(3), realloc(3) and strtol(3) support | R. Tyler Croy | |
2011-07-10 | Put back missing socket error check after select(2) | Pieter Noordhuis | |
2011-07-10 | Colorize test outcome | Pieter Noordhuis | |
2011-07-10 | Merge branch 'printf-width' | Pieter Noordhuis | |
2011-07-10 | Test all supported types for printf-like formatting | Pieter Noordhuis | |
2011-07-09 | Abort on invalid format | Pieter Noordhuis | |
There is no way we can guess the width of the argument when we cannot infer its type from the format specifier. | |||
2011-07-09 | Use correct type when calling va_arg in formatter | Pieter Noordhuis | |
2011-07-09 | Update printf-formatting tests to fail | Pieter Noordhuis | |
2011-07-04 | Merge pull request #51 from rtyler/master | Pieter Noordhuis | |
Minor fixes to the libev.h and other async adapters | |||
2011-06-27 | Update examples | Pieter Noordhuis | |
2011-06-27 | Change prototype of connect callback | Pieter Noordhuis | |
This commit adds a status argument to the connect callback. It will be called in the event of an unsuccessful connection as well, where the status argument is set to REDIS_ERR. It is set to REDIS_OK otherwise. | |||
2011-06-27 | Extract function to check a socket for errors | Pieter Noordhuis | |
2011-06-27 | Use macro's for event loop hooks | Pieter Noordhuis | |
2011-06-27 | Convert the rest of the async adapters contain static functions for easier ↵ | R. Tyler Croy | |
linking | |||
2011-06-27 | Make libev adapter functions static to fix linking | R. Tyler Croy | |
This will allow two different compilation units to include libev.h and link together | |||
2011-06-27 | Add implied include of stdlib.h | R. Tyler Croy | |
2011-06-19 | Bump patch version | Pieter Noordhuis | |
2011-06-19 | Add changelog | Pieter Noordhuis | |
2011-06-19 | Revert "Add function to retrieve formatted reply" | Pieter Noordhuis | |
This reverts commit 77540aa31694aa1e14d41f60a0452e49a2fed86a. The change in buffer strategy is too large to put in a minor release. It is put in a separate branch in the meantime, so it can be refined and released together with a minor version bump. | |||
2011-06-19 | Fix gprof target | Pieter Noordhuis | |
2011-06-19 | Coverage report | Pieter Noordhuis | |
2011-06-19 | Use CFLAGS and LDFLAGS instead of custom variables | Pieter Noordhuis | |
2011-06-19 | Append to REAL_LDFLAGS so LDFLAGS can be overridden by the user | Pieter Noordhuis | |
2011-06-19 | Pass LDFLAGS to linker when creating dynamic library | Pieter Noordhuis | |
2011-06-19 | Remove unnecessary overrides | Pieter Noordhuis | |
2011-06-19 | Don't pass CFLAGS when linking | Pieter Noordhuis | |
2011-06-18 | Add phony target | Pieter Noordhuis | |
2011-06-18 | Remove unused variables | Pieter Noordhuis | |
The variable OBJARCH was used to compile objects for both 32-bit and 64-bit architectures. It can be removed because this is only relevant for the Ruby wrapper for hiredis. This wrapper should put these flags in CFLAGS to get the same effect. | |||
2011-06-18 | Swap arguments | Pieter Noordhuis | |
2011-06-18 | Merge DEBUG in REAL_CFLAGS | Pieter Noordhuis | |
2011-06-18 | Allow *extra* CFLAGS/LDFLAGS via arguments | Pieter Noordhuis | |
2011-06-18 | Merge branch 'makefile' | Pieter Noordhuis | |
2011-06-18 | Move redirection around | Pieter Noordhuis | |
2011-06-18 | Disallow overriding CFLAGS and LDFLAGS | Pieter Noordhuis | |
2011-06-18 | Move path variables closer to install target | Pieter Noordhuis | |
2011-06-18 | Move defaults outside if block | Pieter Noordhuis | |
2011-06-18 | Library variables may not be overridden | Pieter Noordhuis | |
2011-06-18 | Merge CCLINK with LDFLAGS | Pieter Noordhuis | |
2011-06-18 | Remove private feature macros for Solaris from compiler flags | Pieter Noordhuis | |
2011-06-18 | Add myself to Makefile license | Pieter Noordhuis | |
2011-06-18 | Remove unused libraries from link flags | Pieter Noordhuis | |
2011-06-18 | Fallback to gcc when $CC is not in $PATH | Pieter Noordhuis | |
2011-06-18 | Fix incorrect "no route to host" errors. | Geoff Garside | |
If getaddrinfo(3) includes an AF_INET6 address before an AF_INET address on a host with only IPv4 network connectivity then the redisContextConnectTcp call would fail with "no route to host". This commit fixes this issue by specifically handling the errno EHOSTUNREACH error and entering another iteration of the addrinfo loop. This will allow following AF_INET addresses to be attempted. | |||
2011-06-18 | 7th revision is not necessary | Pieter Noordhuis | |
2011-06-18 | Define _POSIX_C_SOURCE for Solaris | Pieter Noordhuis | |