zoukankan      html  css  js  c++  java
  • TCP: sliding window of flow control

    TCP: sliding window of flow control

    1Content table

    • Sliding window example

    • Sliding window, TX sequence number, RX acknowledge number, RX window size

    2Sliding window example



    There are numerous points that we can summarize using this figure as an example.

    1. The sender does not have to transmit a full window's worth of data.

    2. One segment from the receiver acknowledges data and slides the window to the right. This is because the window size is relative to the acknowledged sequence number.

    3. The size of the window can decrease, as shown by the change from segment 7 to segment 8, but the right edge of the window must not move leftward.

    4. The receiver does not have to wait for the window to fill before sending an ACK. We saw earlier that many implementations send an ACK for every two segments that are received.

     

    3Sliding window, TX sequence number, RX acknowledge number, RX window size


    4Reference

    1. chapter 20, Vol 1, TCP/IP Illustrated ed1

  • 相关阅读:
    c# 一段生成6位不重复的随机数字码存8万个
    element ui 踩坑记
    Vue node.js 踩坑记
    javascript 异步回调链式调用 promise
    css 盒模型
    vue node.js 引入 linq
    Vue VsCode 项目 launch.json 文件
    node.js 基本语法识记
    Vue 2.0 入门示例识记
    在Windows系统中建立一个隐藏的帐户(在不登录界面显示)
  • 原文地址:https://www.cnblogs.com/wordchao/p/11132943.html
Copyright © 2011-2022 走看看