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

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.

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.