ithewei 70d228f247 Impl WebSocketServer il y a 4 ans
..
README.md 43583cd644 Add TREE.md il y a 5 ans
epoll.c e13e3d02f7 update il y a 5 ans
evport.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
hevent.c 30042e6889 More flexible hio_set_keepalive_timeout, hio_set_heartbeat il y a 4 ans
hevent.h 7272667d2e evpp: c++ classes of event il y a 4 ans
hloop.c 009458a632 fix #42 il y a 4 ans
hloop.h 70d228f247 Impl WebSocketServer il y a 4 ans
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
iowatcher.h 6d0aac5203 Add evport support. il y a 5 ans
kqueue.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
nio.c 30042e6889 More flexible hio_set_keepalive_timeout, hio_set_heartbeat il y a 4 ans
nlog.c 4aa4f58960 list_del O(1) il y a 5 ans
nlog.h ca982ca961 update il y a 5 ans
nmap.cpp efc75784c8 code review il y a 5 ans
nmap.h 5ec98bae66 HV_EXPORT il y a 5 ans
noevent.c 5ec98bae66 HV_EXPORT il y a 5 ans
overlapio.c f0b67f6be3 Revert "hio_t add connected flag to avoid SIGPIPE by hio_write" il y a 5 ans
overlapio.h c6ae3cbcf2 update libhv il y a 6 ans
poll.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE il y a 5 ans

README.md

目录结构

.
├── hloop.h     事件循环模块对外头文件
├── hevent.h    事件结构体定义
├── nlog.h      网络日志
├── nmap.h      主机发现 (nmap实现)
├── 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