gitextract_bo48t_m0/ ├── .github/ │ ├── release-drafter-config.yml │ ├── spellcheck-settings.yml │ ├── wordlist.txt │ └── workflows/ │ ├── build.yml │ ├── release-drafter.yml │ ├── spellcheck.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING ├── Makefile ├── README.md ├── adapters/ │ ├── ae.h │ ├── glib.h │ ├── ivykis.h │ ├── libev.h │ ├── libevent.h │ ├── libhv.h │ ├── libsdevent.h │ ├── libuv.h │ ├── macosx.h │ ├── poll.h │ ├── qt.h │ └── redismoduleapi.h ├── alloc.c ├── alloc.h ├── appveyor.yml ├── async.c ├── async.h ├── async_private.h ├── dict.c ├── dict.h ├── examples/ │ ├── CMakeLists.txt │ ├── example-ae.c │ ├── example-glib.c │ ├── example-ivykis.c │ ├── example-libev.c │ ├── example-libevent-ssl.c │ ├── example-libevent.c │ ├── example-libhv.c │ ├── example-libsdevent.c │ ├── example-libuv.c │ ├── example-macosx.c │ ├── example-poll.c │ ├── example-push.c │ ├── example-qt.cpp │ ├── example-qt.h │ ├── example-redismoduleapi.c │ ├── example-ssl.c │ └── example.c ├── fmacros.h ├── hiredis-config.cmake.in ├── hiredis.c ├── hiredis.h ├── hiredis.pc.in ├── hiredis.targets ├── hiredis_ssl-config.cmake.in ├── hiredis_ssl.h ├── hiredis_ssl.pc.in ├── net.c ├── net.h ├── read.c ├── read.h ├── sds.c ├── sds.h ├── sdsalloc.h ├── sockcompat.c ├── sockcompat.h ├── ssl.c ├── test.c ├── test.sh └── win32.h