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

  • 相关阅读:
    [golang]text/template模板
    [golang]Go内嵌静态资源go-bindata的安装及使用
    GoCN每日新闻(2019-09-23)
    spring mvc中获取请求URL
    HBuilder搭配逍遥Android模拟器进行开发
    python 数据结构
    JDK8+Tomcat8配置https【转】
    JFinal的使用
    RESTful API 设计指南【转】
    jQuery验证控件jquery.validate.js的使用介绍
  • 原文地址:https://www.cnblogs.com/wordchao/p/11132943.html
Copyright © 2011-2022 走看看