caocao 39cbeab12c add asn1 encode decode. (#785) hai 3 semanas
..
kcp 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) hai 4 meses
wepoll 29a40d7e76 Add wepoll %!s(int64=2) %!d(string=hai) anos
README.md 57e0211c57 New feature: rudp WITH_KCP %!s(int64=4) %!d(string=hai) anos
epoll.c 7cdb4ec45e optimize #477: rm compile warnings %!s(int64=2) %!d(string=hai) anos
evport.c e4090c146e use prefix hv %!s(int64=3) %!d(string=hai) anos
hevent.c 3cb7c1654b optimize some log level and msg desc (#721) hai 8 meses
hevent.h 23ff5915aa Fix race condition after hio_detach (#755) hai 4 meses
hloop.c ea6eb57ea5 optimize: rm redundant code hai 2 meses
hloop.h 39cbeab12c add asn1 encode decode. (#785) hai 3 semanas
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
iowatcher.h 7f6016d8c6 WITH_WEPOLL on windows (#389) %!s(int64=2) %!d(string=hai) anos
kqueue.c e4090c146e use prefix hv %!s(int64=3) %!d(string=hai) anos
nio.c 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) hai 4 meses
nlog.c 4aa4f58960 list_del O(1) %!s(int64=5) %!d(string=hai) anos
nlog.h a774a4fa49 Test logger_set_format %!s(int64=4) %!d(string=hai) anos
noevent.c 5ec98bae66 HV_EXPORT %!s(int64=5) %!d(string=hai) anos
overlapio.c 5001c07f80 feat: support nonblocking sendto multiple peeraddr (#707) hai 8 meses
overlapio.h c6ae3cbcf2 update libhv %!s(int64=6) %!d(string=hai) anos
poll.c b5ef532c28 optimize %!s(int64=4) %!d(string=hai) anos
rudp.c 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) hai 4 meses
rudp.h 1ef4424471 fix: udp server may fail to send data to client when kcp enabled. (#753) hai 4 meses
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
unpack.c 39cbeab12c add asn1 encode decode. (#785) hai 3 semanas
unpack.h f2370eabba hio_unpack %!s(int64=4) %!d(string=hai) anos

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