Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 483 Bytes

File metadata and controls

14 lines (12 loc) · 483 Bytes

Chat

This is just a simple TCP chat application that uses socket.h.

Building

  • To build everything: make
  • To build just the binaries: make sockets
  • To build just the client binary: make client
  • To build just the server binary: make server
  • To build the client: make -f build.mk EXEC=client
  • To build the server: make -f build.mk EXEC=server

Syntax

  • To run the server: ./server.out <port>
  • To run the client: ./client.out <ip> <port>