/Socket-Chatapp

A basic chat app writtern purely in c

Primary LanguageC

Socket ChatApp

A simple multi client chat app made in C

Usage :

  • 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] or telnet 127.0.0.1 [port]