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

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