| 344 | } |
| 345 | |
| 346 | static void redisAeCleanup(void *privdata) { |
| 347 | redisAeEvents *e = (redisAeEvents*)privdata; |
| 348 | redisAeDelRead(privdata); |
| 349 | redisAeDelWrite(privdata); |
| 350 | zfree(e); |
| 351 | } |
| 352 | |
| 353 | static int redisAeAttach(aeEventLoop *loop, redisAsyncContext *ac) { |
| 354 | redisContext *c = &(ac->c); |
nothing calls this directly
no test coverage detected