ithewei 6ad0d72530 support signal event for (#423)(#458) il y a 1 an
..
kcp 767c401cb8 Add LICENSE for kcp il y a 2 ans
wepoll 29a40d7e76 Add wepoll il y a 2 ans
README.md 57e0211c57 New feature: rudp WITH_KCP il y a 4 ans
epoll.c 7cdb4ec45e optimize #477: rm compile warnings il y a 2 ans
evport.c e4090c146e use prefix hv il y a 3 ans
hevent.c a4e51af3ca Increase the robustness of hloop_free and hio_free il y a 1 an
hevent.h 6ad0d72530 support signal event for (#423)(#458) il y a 1 an
hloop.c 6ad0d72530 support signal event for (#423)(#458) il y a 1 an
hloop.h 6ad0d72530 support signal event for (#423)(#458) il y a 1 an
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
iowatcher.h 7f6016d8c6 WITH_WEPOLL on windows (#389) il y a 2 ans
kqueue.c e4090c146e use prefix hv il y a 3 ans
nio.c 3564a4f7ab support pipe il y a 1 an
nlog.c 4aa4f58960 list_del O(1) il y a 5 ans
nlog.h a774a4fa49 Test logger_set_format il y a 4 ans
noevent.c 5ec98bae66 HV_EXPORT il y a 5 ans
overlapio.c f2370eabba hio_unpack il y a 4 ans
overlapio.h c6ae3cbcf2 update libhv il y a 6 ans
poll.c b5ef532c28 optimize il y a 4 ans
rudp.c eefc043fd4 optimize code for rudp, kcp il y a 4 ans
rudp.h eefc043fd4 optimize code for rudp, kcp il y a 4 ans
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
unpack.c c6acc7e0a4 hio_readline, hio_readstring, hio_readbytes il y a 4 ans
unpack.h f2370eabba hio_unpack il y a 4 ans

README.md

目录结构

.
├── hloop.h     事件循环模块对外头文件
├── hevent.h    事件结构体定义
├── nlog.h      网络日志
├── unpack.h    拆包
├── rudp.h      可靠UDP
├── iowatcher.h IO多路复用统一抽象接口
├── select.c    EVENT_SELECT实现
├── poll.c      EVENT_POLL实现
├── epoll.c     EVENT_EPOLL实现 (for OS_LINUX)
├── iocp.c      EVENT_IOCP实现  (for OS_WIN)
├── kqueue.c    EVENT_KQUEUE实现(for OS_BSD/OS_MAC)
├── evport.c    EVENT_PORT实现  (for OS_SOLARIS)
├── nio.c       非阻塞IO
└── overlapio.c 重叠IO