diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2019-08-29 22:08:54 +0300 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2019-08-29 22:09:37 +0300 |
commit | 8715ba5c82af165f783ef8bc90b4d8d5a8072175 (patch) | |
tree | f036a6ddb78001fb46b7487988fed5516e371fb1 /async.h | |
parent | 1ac8fca35de6d9ecc1b6b94cbd17aa7499cb8821 (diff) |
wip: SSL code reorganization, see #705.
Diffstat (limited to 'async.h')
-rw-r--r-- | async.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -125,6 +125,8 @@ void redisAsyncFree(redisAsyncContext *ac); void redisAsyncHandleRead(redisAsyncContext *ac); void redisAsyncHandleWrite(redisAsyncContext *ac); void redisAsyncHandleTimeout(redisAsyncContext *ac); +void redisAsyncRead(redisAsyncContext *ac); +void redisAsyncWrite(redisAsyncContext *ac); /* Command functions for an async context. Write the command to the * output buffer and register the provided callback. */ |