C++ Network Library inspired by Netty.
  • C++ 98.7%
  • CMake 1.3%
Find a file
2023-08-03 08:12:33 +03:00
ShipNet Fix EventLoop scheduler: multimap->list; std::time -> ShipUtils::GetCurrentMillis 2023-08-03 08:12:33 +03:00
.clang-format Isolate ShipNet from Ship 2023-07-09 17:35:20 +03:00
.gitignore Isolate ShipNet from Ship 2023-07-09 17:35:20 +03:00
CMakeLists.txt It's now truly a library 2023-07-14 18:10:08 +03:00
LICENSE Isolate ShipNet from Ship 2023-07-09 17:35:20 +03:00
README.md Isolate ShipNet from Ship 2023-07-09 17:35:20 +03:00

Elytrium

ShipNet

Join our Discord

C++ Network Library inspired by Netty.

Why ShipNet?

  • Zero sub-dependencies. This library uses OS sockets (e.g. epoll on Linux, kqueue on Mac/BSD) directly.
  • Highly customizable. It's easy to add your own network stack support.
  • Packet/Handler based. Just write your own packets and packet handlers. There's nothing else to be done.
  • EventLoop based. Best multithreading strategy for networking. Use any count of threads you need.