Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 549 Bytes

File metadata and controls

14 lines (12 loc) · 549 Bytes

File-Transfer-using-TCP-Socket-in-C

A simple TCP client-server program written in C. In this program the client read a file and send its data to server. The server then receives the data and write it in a text file.

Blog post: https://idiotdeveloper.com/file-transfer-using-tcp-socket-in-c/

Use the Makefile to compile the code.

  • make server - to compile the server.
  • make client- to compile the client.
  • make all - to compile both the server and client.