A simple multi client chat app made in C
- Clone the repository
git clone https://github.com/fristonio/Socket-Chatapp.git
- Go to repository root
- Use command
make all
to get the executable - Start the server by running executable.
./server [port]
- Connect to the server using client binary.
./client [port]
- You can connect to sever using telnet or netcat also using
netcat 127.0.0.1 [port]
ortelnet 127.0.0.1 [port]