├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── yc_epoll.c ├── yc_kqueue.c ├── yc_poll.c ├── yc_select.c └── yc_uring.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/README.md -------------------------------------------------------------------------------- /yc_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/yc_epoll.c -------------------------------------------------------------------------------- /yc_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/yc_kqueue.c -------------------------------------------------------------------------------- /yc_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/yc_poll.c -------------------------------------------------------------------------------- /yc_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/yc_select.c -------------------------------------------------------------------------------- /yc_uring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robn/yoctochat/HEAD/yc_uring.c --------------------------------------------------------------------------------