https://github.com/bitbynik/udp_reliable_cc
COL672 Assignment-4
https://github.com/bitbynik/udp_reliable_cc
computer-networks congestion-control iitd reliability udp
Last synced: about 1 month ago
JSON representation
COL672 Assignment-4
- Host: GitHub
- URL: https://github.com/bitbynik/udp_reliable_cc
- Owner: BitByNIK
- Created: 2024-10-31T06:05:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-31T06:27:03.000Z (7 months ago)
- Last Synced: 2025-02-14T22:31:47.387Z (3 months ago)
- Topics: computer-networks, congestion-control, iitd, reliability, udp
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple File Transfer protocol using UDP sockets
Add a dummy text file named "send_file.txt" in the same folder
## P1 Files (implements reliability)
Running server:
```bash
python3 p1_server.py
```
Running client:
```bash
python3 p1_client.py
```## P2 Files (implements reliability and congestion control)
Running server:
```bash
python3 p2_server.py
```
Running client:
```bash
python3 p2_client.py
```