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

https://github.com/rachhshruti/file-transfer-udp

File Transfer using unreliable User Datagram protocol (UDP)
https://github.com/rachhshruti/file-transfer-udp

client-server cpp networking udp

Last synced: 6 months ago
JSON representation

File Transfer using unreliable User Datagram protocol (UDP)

Awesome Lists containing this project

README

          

# Web server and client implementation using UDP

Developed a connectionless web server which accepts file request connections from web client using User Datagram Protocol (UDP).

# Running the code

## Creating and configuring virtual machines

vagrant up

This will boot both the server and client machines

## SSH into virtual machines

vagrant ssh server
vagrant ssh client

## Compile the code

make

## Run the web server

./Server port_number(any number between 1025 and 65535)

## Run the web client

./Client server_IP/hostname server_portNo filename

# Screenshots