Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 348 Bytes

File metadata and controls

19 lines (14 loc) · 348 Bytes

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