previous | start | next

TCP Operation

In order to provide reliable, connection oriented service, TCP breaks the incoming application byte stream into segments. The maximum size of a segment is called the MSS.
 
A segment consists of a header, and some data. The last data byte in each segment is identified with a 32-bit byte count field in the segment header.
 

 
[2] The TCP timeout algorithm uses observed round trip times, and measures of their variability, to calculate a continuously updated best estimate of when to resend. See the tutorial for a discussion on this.

previous | start | next