/TraX

A real-time private group chat app in C

Primary LanguageCGNU General Public License v3.0GPL-3.0

Instructions

  1. Compile the Server: bash gcc TraX_Server.c -o TraX_Server -lpthread

  2. Run the Server:

      ./TraX_Server
  3. Compile the Client:

      gcc TraX.c -o TraX -lpthread
  4. Run the Client:

      ./TraX <server_ip>

    Replace <server_ip> with the IP address of the server, for example:

      ./TraX 127.0.0.1