https://github.com/nikhilroxtomar/file-transfer-using-udp-socket-in-c
A simple C program for file transfer between the client and the server using the UDP Socket.
https://github.com/nikhilroxtomar/file-transfer-using-udp-socket-in-c
udp udp-client udp-file-transfer udp-server
Last synced: over 1 year ago
JSON representation
A simple C program for file transfer between the client and the server using the UDP Socket.
- Host: GitHub
- URL: https://github.com/nikhilroxtomar/file-transfer-using-udp-socket-in-c
- Owner: nikhilroxtomar
- Created: 2021-02-24T08:05:16.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-22T05:58:55.000Z (over 5 years ago)
- Last Synced: 2025-03-28T08:11:29.781Z (over 1 year ago)
- Topics: udp, udp-client, udp-file-transfer, udp-server
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# File Transfer using UDP Socket in C
A simple C program for file transfer between the client and the server using the UDP Socket.
The process is as follows:
- Server is started.
- Client read the text file and send data to the server.
- Server creates a text file.
- Server received the data from the client and write it into the text file.
- Client send the END to close the data transfer.
- Client disconnected from the server.
- Server is closed.