/HTTP-Chat-Client-Server

A Simple Chat client-server pair that works completely in the HTTP protocol.Server gets a request from one client and send it to other.

Primary LanguageC

HTTP chat client-server pair in C

setup [Ubuntu]

First compile & Run the server

gcc multiserver.c -pthread
./a.out

Then Run multiple clients

gcc multiclient.c -pthread
./a.out <client name>

Happy Chatting !

chat