Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-21 | SSL: build in travis | Mark Nunberg | |
2019-02-21 | cmake: ssl disabled by default | Mark Nunberg | |
2019-02-21 | Allow option for async connections to not automatically free | Mark Nunberg | |
2019-02-21 | Fix ifeq condition (thanks @regae) | Mark Nunberg | |
2019-02-20 | Disable SSL by default | Mark Nunberg | |
2019-02-20 | gitignore: dSYM | Mark Nunberg | |
2019-02-20 | Remove redundant line after rebase | Mark Nunberg | |
2019-02-20 | fix redisLibeventEvents init | valentino | |
2019-02-20 | fix pkg config | valentino | |
2019-02-20 | fixed wrong memset args | Mark Nunberg | |
2019-02-20 | libevent: call destroy from cleanup | Mark Nunberg | |
also, indentation fix | |||
2019-02-20 | scrub redisContext before freeing | Mark Nunberg | |
This helps us detect use-after-free | |||
2019-02-20 | Add EV_PERSIST flag to read events | Mark Nunberg | |
This will avoid the need to constantly reschedule the event | |||
2019-02-20 | libevent: fix invalid mem access on delete within callback enter | Mark Nunberg | |
2019-02-20 | fix potential uninitialized read | Mark Nunberg | |
If callback was set before scheduleTimer was set (i..e before one of the attach()) calls. | |||
2019-02-20 | CMake: update for SSL | Mark Nunberg | |
2019-02-20 | Fix memory leaks | valentino | |
2019-02-20 | Support SNI | valentino | |
2019-02-20 | Fix compilation on Ubuntu | valentino | |
2019-02-20 | Unix: set addrlen so async reconnect uses proper size | Mark Nunberg | |
2019-02-20 | Don't warn on missing field initializers | Mark Nunberg | |
2019-02-20 | minor fixes: initialize options struct with 0 always | Mark Nunberg | |
also, clean up redisContextInit -- we're just zeoring the struct | |||
2019-02-20 | libevent-example: Use timeout | Mark Nunberg | |
2019-02-20 | Fix bug in options macro | Mark Nunberg | |
2019-02-20 | Allow connectWithOptions for async as well | Mark Nunberg | |
2019-02-20 | read/write timeouts | Mark Nunberg | |
2019-02-20 | Provide option-struct initialization | Mark Nunberg | |
This reduces the boilerplate of all the redisConnectXXX functions, and allows us to provide more connection options in the future. | |||
2019-02-20 | Use SSL by default | Mark Nunberg | |
2019-02-20 | Don't add dead code for HIREDIS_NOSSL | Mark Nunberg | |
We changed this to `HIREDIS_SSL` | |||
2019-02-20 | Minor SSL-related fixes | Mark Nunberg | |
2019-02-20 | Disable SSL by default | Mark Nunberg | |
2019-02-20 | SSL for async I/O | Mark Nunberg | |
2019-02-20 | Add SSL example | Mark Nunberg | |
2019-02-20 | Remove extra printfs | Mark Nunberg | |
2019-02-20 | Initial SSL (sync) implementation | Mark Nunberg | |
2019-02-20 | Update appveyor.yml to cmake | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Update .travis-ci.yml to use cmake | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Obey HIREDIS_SONAME for shared library | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Call project() with parsed version string | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Enable make test | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Generate and install hiredis.pc | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Install async.h | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Add ENABLE_EXAMPLES option, off by default | Justin Brewer | |
Signed-off-by: Justin Brewer <jzb0012@auburn.edu> | |||
2019-02-20 | Add examples to CMakeLists | Mark Nunberg | |
2019-02-20 | Add CMake system. Initial commit | Mark Nunberg | |
This provides a target to build a DSO, as well as the ability to install it. | |||
2019-01-28 | Merge pull request #644 from codehz/codehz-patch-1 | Mark Nunberg | |
Fix Invalid argument after redisAsyncConnectUnix | |||
2019-01-28 | Fix Invalid argument after redisAsyncConnectUnix | Code Hz | |
2018-12-05 | Merge pull request #632 from Mic92/patch-1 | Mark Nunberg | |
Makefile: use predefined AR | |||
2018-12-05 | Fix regression when connecting with Unix sockets (#629) | Mark Nunberg | |
2018-12-05 | Allow connections to unix socket in example | Mark Nunberg | |
To minimize code changes, a simple `u` (or UNIX, Unix, unix, etc -- as long as the first character is u or U) is used as a marker for the 'port' argument. In this case, the hostname is interpreted to be the path to the unix socket. |