├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── example ├── echo.c └── timer.c ├── package.json └── src ├── ae.c ├── ae.h ├── ae_epoll.c ├── ae_evport.c ├── ae_kqueue.c ├── ae_select.c ├── anet.c ├── anet.h ├── config.h ├── fmacros.h └── zmalloc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/README.md -------------------------------------------------------------------------------- /example/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/example/echo.c -------------------------------------------------------------------------------- /example/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/example/timer.c -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/package.json -------------------------------------------------------------------------------- /src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae.c -------------------------------------------------------------------------------- /src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae.h -------------------------------------------------------------------------------- /src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae_epoll.c -------------------------------------------------------------------------------- /src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae_evport.c -------------------------------------------------------------------------------- /src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/ae_select.c -------------------------------------------------------------------------------- /src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/anet.c -------------------------------------------------------------------------------- /src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/anet.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/config.h -------------------------------------------------------------------------------- /src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/fmacros.h -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aisk/libae/HEAD/src/zmalloc.h --------------------------------------------------------------------------------