hunting/external/libhv/libhv-1.3.2/event
2024-06-15 08:30:24 +08:00
..
kcp Add external. 2024-06-15 08:30:24 +08:00
wepoll Add external. 2024-06-15 08:30:24 +08:00
epoll.c Add external. 2024-06-15 08:30:24 +08:00
evport.c Add external. 2024-06-15 08:30:24 +08:00
hevent.c Add external. 2024-06-15 08:30:24 +08:00
hevent.h Add external. 2024-06-15 08:30:24 +08:00
hloop.c Add external. 2024-06-15 08:30:24 +08:00
hloop.h Add external. 2024-06-15 08:30:24 +08:00
iocp.c Add external. 2024-06-15 08:30:24 +08:00
iowatcher.h Add external. 2024-06-15 08:30:24 +08:00
kqueue.c Add external. 2024-06-15 08:30:24 +08:00
nio.c Add external. 2024-06-15 08:30:24 +08:00
nlog.c Add external. 2024-06-15 08:30:24 +08:00
nlog.h Add external. 2024-06-15 08:30:24 +08:00
noevent.c Add external. 2024-06-15 08:30:24 +08:00
overlapio.c Add external. 2024-06-15 08:30:24 +08:00
overlapio.h Add external. 2024-06-15 08:30:24 +08:00
poll.c Add external. 2024-06-15 08:30:24 +08:00
README.md Add external. 2024-06-15 08:30:24 +08:00
rudp.c Add external. 2024-06-15 08:30:24 +08:00
rudp.h Add external. 2024-06-15 08:30:24 +08:00
select.c Add external. 2024-06-15 08:30:24 +08:00
unpack.c Add external. 2024-06-15 08:30:24 +08:00
unpack.h Add external. 2024-06-15 08:30:24 +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