This document describes the sliding window protocol. It discusses key concepts like both the sender and receiver maintaining buffers to hold packets, acknowledgements being sent for every received packet, and the sender being able to send a window of packets before receiving an acknowledgement. It then explains the sender side process of numbering packets and maintaining a sending window. The receiver side maintains a window size of 1 and acknowledges by sending the next expected sequence number. A one bit sliding window protocol acts like stop and wait. Merits include multiple packets being sent without waiting for acknowledgements while demerits include potential bandwidth waste in some situations.