Tcp – Should one include the RTT measurements from retransmits in running average for RTT

tcp

I have seen that in a TCP uses previous measurements of round trip time to estimate a round trip time and this estimate is used to compute a timeout time. I was wondering, should the round trip times for retransmitted packets be included in the estimate?

Thanks in advance.

Best Answer

Yes. A retransmitted segment has got its own timer and doesn't re-use that of the presumed lost segment. There's no reason to not use the RTT measured by it.

Related Topic