Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 613 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 613 Bytes

NetWeave

A multithreaded C++ chat server with a worker pool and client

Demo

NetWeaveDemo.mp4

Requirements for now

  • g++, gdb, cmake, build-essentials, ninja-build

This C++ implementation of the server mainly focuses on managing active clients via a WorkerPool and Epoll for scalability.

For an implementation of the same I wrote using C and pthreads, checkout this.