• Stars
    star
    108
  • Rank 321,259 (Top 7 %)
  • Language
    C++
  • Created over 6 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

轻量级网络库, 基于C++11

C++11实现的轻量级网络框架

项目介绍

  • 参考了开源项目muduo和live555的设计,封装的一个简单的网络框架。

项目案例

目前情况

  • 支持Windows和Linux平台, 在Windows下使用select, Linux下使用 epoll。
  • 实现了定时器,触发事件,日志,环形缓冲区, 内存池。

编译环境

  • gcc4.7
  • vs2015

整体框架

image

后续计划

  • 增加对象池。
  • 其他优化。

其他