- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sliding Window Protocol
Sliding window protocols are data link layer protocols for reliable and sequential delivery of data frames. The sliding window is also used in Transmission Control Protocol.
In this protocol, multiple frames can be sent by a sender at a time before receiving an acknowledgment from the receiver. The term sliding window refers to the imaginary boxes to hold frames. Sliding window method is also known as windowing.
Working Principle
In these protocols, the sender has a buffer called the sending window and the receiver has buffer called the receiving window.
The size of the sending window determines the sequence number of the outbound frames. If the sequence number of the frames is an n-bit field, then the range of sequence numbers that can be assigned is 0 to 2𝑛−1. Consequently, the size of the sending window is 2𝑛−1. Thus in order to accommodate a sending window size of 2𝑛−1, a n-bit sequence number is chosen.
The sequence numbers are numbered as modulo-n. For example, if the sending window size is 4, then the sequence numbers will be 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, and so on. The number of bits in the sequence number is 2 to generate the binary sequence 00, 01, 10, 11.
The size of the receiving window is the maximum number of frames that the receiver can accept at a time. It determines the maximum number of frames that the sender can send before receiving acknowledgment.
Example
Suppose that we have sender window and receiver window each of size 4. So the sequence numbering of both the windows will be 0,1,2,3,0,1,2 and so on. The following diagram shows the positions of the windows after sending the frames and receiving acknowledgments.
Types of Sliding Window Protocols
The Sliding Window ARQ (Automatic Repeat reQuest) protocols are of two categories −
Go – Back – N ARQ
Go – Back – N ARQ provides for sending multiple frames before receiving the acknowledgment for the first frame. It uses the concept of sliding window, and so is also called sliding window protocol. The frames are sequentially numbered and a finite number of frames are sent. If the acknowledgment of a frame is not received within the time period, all frames starting from that frame are retransmitted.
Selective Repeat ARQ
This protocol also provides for sending multiple frames before receiving the acknowledgment for the first frame. However, here only the erroneous or lost frames are retransmitted, while the good frames are received and buffered.
- Related Articles
- Sliding Window Protocol (Selective Repeat)
- A One-Bit Sliding Window Protocol
- What is three-bit sliding window protocol?
- Difference between Stop and Wait protocol and Sliding Window protocol
- What is a Sliding Window Protocol in Computer Network?
- Sliding Window Maximum in C++
- Sliding Window Median in C++
- Calculating average of a sliding window in JavaScript
- Find all subarrays with sum equal to number? JavaScript (Sliding Window Algorithm)
- Sliding Friction
- Protocol and Protocol Hierarchies
- Sliding Puzzle in C++
- Four children were asked to arrange forces due to rolling, static and sliding frictions in a decreasing order. The correct arrangement is:(a) Rolling, Static, Sliding(b) Rolling, Sliding, Static (c) Static, Sliding, Rolling(d) Sliding, Static, Rolling
- Four children were asked to arrange forces due to rolling, static and sliding frictions in a decreasing order. Their arrangements are given below. Choose the correct arrangement.$(a)$. rolling, static, sliding$(b)$. rolling, sliding, static$(c)$. static, sliding, rolling$(d)$. sliding, static, rolling
- Bundle Protocol
