Tcp – In TCP Congestion Avoidance Phase, are cwnd and CongWin the same thing

congestiontcp

I'm trying to understand TCP Congestion Avoidance Phase.

According to pages 82-83 of the slide below, cwnd equals CongWin.

According to pages 84-85, they are different. The writer did not bother to define those terms.

Any idea what's going on?

http://cs.bilkent.edu.tr/~morhan/cs421/lectures/Chapter3_spring15.pdf

Best Answer

Yes, they are the same thing.

The writer did not bother to define those terms.

If you feel that way you should try to find the answer yourself. The first result you get when Googling "tcp cwnd" is this Wikipedia page which states:

Slow-start begins initially with a congestion window Size (cwnd) of 1, 2 or 10.

As I have highlighted in bold, conwind and cwnd both mean Congestion Window.

If you'd like to learn more about TCP/IP, I can't recommend TCP/IP Guide enough. It is an excellent book, and free too. If you do get good use out of it though I suggest you purchase a copy of it too as a "thank you" to the author.

Related Topic