Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-05 | Add support for SO_REUSEADDR | mike | |
[This introduces some new API functions.] * Adds new flag to the connection context indicating SO_REUSEADDR should be set. * Adds max number of retries constant for when connect() hits EADDRNOTAVAIL. * Adds new function, redisAsyncConnectBindWithReuse(), letting clients enable this functionality. [Removed trailing whitespace in new header lines.] Closes #264 | |||
2015-01-05 | Use stricter function argument types | Hang Su | |
'const' where we can. Closes #268 | |||
2014-04-09 | Fix const correctness | Pieter Noordhuis | |
2014-04-08 | Add ability to bind source address on connect | Matt Stancliff | |
Some environments require binding to specific source addresses instead of letting the system determine which IP a connection should originate from. Closes #233 | |||
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-04-21 | Update license | Pieter Noordhuis | |
2011-04-21 | Create protocol reader when creating context | Pieter Noordhuis | |
2011-01-14 | Make dictionary functions static and include the .c file | Pieter Noordhuis | |
2010-12-31 | Add fields for subscribed channel/pattern names | Pieter Noordhuis | |
2010-12-29 | License | Pieter Noordhuis | |
2010-12-29 | Scope event library related data and hooks to a struct | Pieter Noordhuis | |
2010-12-28 | Add function to explicitly free an async context | Pieter Noordhuis | |
2010-12-22 | Missing declaration. | Nicolas Favre-Felix | |
2010-12-07 | Fire onConnect callback on the first write event | Pieter Noordhuis | |
2010-12-01 | Use extra field for adapter-specific data | Pieter Noordhuis | |
This makes sure that the "data" field on the asynchronous context can be used for user-specific data. | |||
2010-11-21 | more extern "C" declarations for C++ compiles | Ryan Tecco | |
2010-11-15 | Explicitly initialize struct fields to NULL | Pieter Noordhuis | |
2010-11-02 | Change error reporting to have an explicit type | Pieter Noordhuis | |
When there is an I/O error, errno should be used to find out what is wrong. In other cases, errno cannot be used. So, use an explicit type in Hiredis to define the different error scenarios that can occur. | |||
2010-11-01 | Change prototype of async reply callback | Pieter Noordhuis | |
2010-11-01 | Make error ptr accessible from async context | Pieter Noordhuis | |
2010-11-01 | Add support to lazily disconnect an asynchronous connection | Pieter Noordhuis | |
2010-10-31 | Extracted code to support callbacks in an asynchronous context | Pieter Noordhuis | |