Algorithms Learned During Computer Network Course
-
Updated
Jun 10, 2022 - C++
Algorithms Learned During Computer Network Course
We aimed to implement our own socket layer and reliable transport layer. So we implemented a reliable transfer service on the top of UDP/IP protocol. In other words, you need to implement a service that guarantees the arrival of datagrams in the correct order on top of the UDP/IP protocol, along with congestion control.
Algorithms in Computer Networks
Reliable Transport Protocols (RDT3.0) alternating-bit-protocol (abp) and go-back-n (gbn) c++ implementation
A Reliable application layer built over the unreliable UDP, using two different algorithms: Stop And Wait (rdt 3.0) and Go Back N.
Codes for computer networks course
A set of tasks for "Computer Networks" university course
Implements three reliable data transport protocols: Alternating-Bit (ABT), Go-Back-N (GBN), and Selective-Repeat (SR)
implemented Selective-Repeat and GBN RDT protocols
Data link layer protocols between two nodes that are connected with a noisy channel, where the transmission is not error-free, packets may get corrupted, duplicated, delayed, or lost, and the buffers are of limited sizes.
🎓💻Computer Networks Course Computer Assignment 3 - Fall 2022
Add a description, image, and links to the go-back-n topic page so that developers can more easily learn about it.
To associate your repository with the go-back-n topic, visit your repo's landing page and select "manage topics."