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.
- Host: GitHub
- URL: https://github.com/nikhilroxtomar/file-transfer-using-tcp-socket-in-c
- Owner: nikhilroxtomar
- Created: 2020-05-01T06:36:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-01T17:08:01.000Z (over 5 years ago)
- Last Synced: 2025-03-28T08:11:30.060Z (9 months ago)
- Topics: c, client-server, socket-programming, tcp-socket
- Language: C
- Homepage: https://idiotdeveloper.com/file-transfer-using-tcp-socket-in-c/
- Size: 85 KB
- Stars: 38
- Watchers: 1
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.