hewei.it 2f604a815f let idle event take effect when there is timer timeout=1s пре 4 година
..
README.md fd52ad0e13 move cpp to cpputil, let base event pure c пре 4 година
epoll.c e13e3d02f7 update пре 5 година
evport.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE пре 5 година
hevent.c 30042e6889 More flexible hio_set_keepalive_timeout, hio_set_heartbeat пре 4 година
hevent.h e0b92e7d3d fix PR #52: don't change export function param type to prevent incompatibility пре 4 година
hloop.c 2f604a815f let idle event take effect when there is timer timeout=1s пре 4 година
hloop.h 33217c18cb add hio_create_ssl_server hio_create_ssl_client пре 4 година
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE пре 5 година
iowatcher.h 6d0aac5203 Add evport support. пре 5 година
kqueue.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE пре 5 година
nio.c 33217c18cb add hio_create_ssl_server hio_create_ssl_client пре 4 година
nlog.c 4aa4f58960 list_del O(1) пре 5 година
nlog.h ca982ca961 update пре 5 година
noevent.c 5ec98bae66 HV_EXPORT пре 5 година
overlapio.c f0b67f6be3 Revert "hio_t add connected flag to avoid SIGPIPE by hio_write" пре 5 година
overlapio.h c6ae3cbcf2 update libhv пре 6 година
poll.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE пре 5 година
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE пре 5 година

README.md

目录结构

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