https://github.com/esrrhs/liblu
c++ net framwork
https://github.com/esrrhs/liblu
Last synced: 2 days ago
JSON representation
c++ net framwork
- Host: GitHub
- URL: https://github.com/esrrhs/liblu
- Owner: esrrhs
- Created: 2016-05-13T03:39:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-09T07:46:45.000Z (about 6 years ago)
- Last Synced: 2025-04-03T20:51:14.423Z (about 1 month ago)
- Language: C++
- Size: 42 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# liblu
liblu是用于游戏的C风格网络库,简单高效,同时提供加密压缩校验等功能。
使用示例:
```
luconfig cfg;
cfg.cco = on_conn_open;
cfg.ccrp = on_conn_recv_packet;
cfg.ccc = on_conn_close;
lu * l = newlu(&cfg);
while (1)
ticklu(l);
dellu(l);
```