diff --git "a/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/3_TCP\344\270\255\347\232\204\346\213\245\345\241\236\346\216\247\345\210\266\345\222\214\346\265\201\351\207\217\346\216\247\345\210\266/README.md" "b/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/3_TCP\344\270\255\347\232\204\346\213\245\345\241\236\346\216\247\345\210\266\345\222\214\346\265\201\351\207\217\346\216\247\345\210\266/README.md" index 7ae98fde..98407c30 100644 --- "a/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/3_TCP\344\270\255\347\232\204\346\213\245\345\241\236\346\216\247\345\210\266\345\222\214\346\265\201\351\207\217\346\216\247\345\210\266/README.md" +++ "b/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/3_TCP\344\270\255\347\232\204\346\213\245\345\241\236\346\216\247\345\210\266\345\222\214\346\265\201\351\207\217\346\216\247\345\210\266/README.md" @@ -44,7 +44,7 @@ 为了防止cwnd增长过大引起网络拥塞,还需设置一个慢开始门限ssthresh状态变量,ssthresh的用法如下: -- 当 cwnd > ssthresh时:使用慢开始算法 +- 当 cwnd < ssthresh时:使用慢开始算法 - 当cwnd = ssthresh时:采用 慢开始或拥塞避免中的任意一种 - 当 cwnd > ssthresh时:采用拥塞避免算法