Client-Server-network

Problem statement

you can find the problem statement here

Description

This code is an implementation to a Client and Server socket programming using C++. HTTP is implemented on TCP to send and recieve files from client to server and vice versa.

Build Client

g++ -o Client Client.cpp

Run Client

./Client

Build Server

  • open new terminal
  • go to Server directory, then
g++ -o Server Server.cpp

Run Server

./Server

Contributors