Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 days 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 (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-31T06:27:03.000Z (about 2 months ago)
- Last Synced: 2024-12-06T13:39:01.209Z (19 days 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
```