Alireza 23ff5915aa Fix race condition after hio_detach (#755) 4 months ago
..
kcp 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) 4 months ago
wepoll 29a40d7e76 Add wepoll 2 years ago
README.md 57e0211c57 New feature: rudp WITH_KCP 4 years ago
epoll.c 7cdb4ec45e optimize #477: rm compile warnings 2 years ago
evport.c e4090c146e use prefix hv 3 years ago
hevent.c 3cb7c1654b optimize some log level and msg desc (#721) 8 months ago
hevent.h 23ff5915aa Fix race condition after hio_detach (#755) 4 months ago
hloop.c 23ff5915aa Fix race condition after hio_detach (#755) 4 months ago
hloop.h 3d0233dd0e fix: add hio_sendto to replace hio_set_peeraddr,hio_write (#707) 8 months ago
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 years ago
iowatcher.h 7f6016d8c6 WITH_WEPOLL on windows (#389) 2 years ago
kqueue.c e4090c146e use prefix hv 3 years ago
nio.c 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) 4 months ago
nlog.c 4aa4f58960 list_del O(1) 5 years ago
nlog.h a774a4fa49 Test logger_set_format 4 years ago
noevent.c 5ec98bae66 HV_EXPORT 5 years ago
overlapio.c 5001c07f80 feat: support nonblocking sendto multiple peeraddr (#707) 8 months ago
overlapio.h c6ae3cbcf2 update libhv 6 years ago
poll.c b5ef532c28 optimize 4 years ago
rudp.c 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) 4 months ago
rudp.h 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) 4 months ago
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 years ago
unpack.c 41429808f4 Avoid unset length_field_coding 10 months ago
unpack.h f2370eabba hio_unpack 4 years ago

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