This repository contains the starter code for the lab project of COMP461205: Computer Networks. The project involves building a chat room application using TCP sockets and multithreading. Students are expected to implement key parts of the system.
- Clone the repository:
git clone https://github.com/king-siong/chat-room.git- Build the project:
cd chat-room
cmake -S . -B build
cd build
make- Test your implementation:
make all-stage- Run the server:
./server- Run the client:
./client