embedded-framework/external/libhv/libhv-1.3.2/event
2024-06-05 09:28:13 +08:00
..
kcp witout test tools. 2024-06-05 09:28:13 +08:00
wepoll witout test tools. 2024-06-05 09:28:13 +08:00
epoll.c witout test tools. 2024-06-05 09:28:13 +08:00
evport.c witout test tools. 2024-06-05 09:28:13 +08:00
hevent.c witout test tools. 2024-06-05 09:28:13 +08:00
hevent.h witout test tools. 2024-06-05 09:28:13 +08:00
hloop.c witout test tools. 2024-06-05 09:28:13 +08:00
hloop.h witout test tools. 2024-06-05 09:28:13 +08:00
iocp.c witout test tools. 2024-06-05 09:28:13 +08:00
iowatcher.h witout test tools. 2024-06-05 09:28:13 +08:00
kqueue.c witout test tools. 2024-06-05 09:28:13 +08:00
nio.c witout test tools. 2024-06-05 09:28:13 +08:00
nlog.c witout test tools. 2024-06-05 09:28:13 +08:00
nlog.h witout test tools. 2024-06-05 09:28:13 +08:00
noevent.c witout test tools. 2024-06-05 09:28:13 +08:00
overlapio.c witout test tools. 2024-06-05 09:28:13 +08:00
overlapio.h witout test tools. 2024-06-05 09:28:13 +08:00
poll.c witout test tools. 2024-06-05 09:28:13 +08:00
README.md witout test tools. 2024-06-05 09:28:13 +08:00
rudp.c witout test tools. 2024-06-05 09:28:13 +08:00
rudp.h witout test tools. 2024-06-05 09:28:13 +08:00
select.c witout test tools. 2024-06-05 09:28:13 +08:00
unpack.c witout test tools. 2024-06-05 09:28:13 +08:00
unpack.h witout test tools. 2024-06-05 09:28:13 +08:00

目录结构

.
├── 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