An open API service indexing awesome lists of open source software.

https://github.com/nikhilroxtomar/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.
https://github.com/nikhilroxtomar/file-transfer-using-tcp-socket-in-c

c client-server socket-programming tcp-socket

Last synced: 4 months ago
JSON representation

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.

Awesome Lists containing this project

README

          

# 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.