2010-03-26 3 views

답변

17

TSV는 Timestamp Value 필드입니다. 시퀀스 번호와 함께 사용되어 세그먼트를 고유하게 식별합니다 (시퀀스 번호는 줄 바꿈 될 수 있기 때문에).

TSER은 Timestamp Echo Reply 필드입니다. 이것은 ACK 메시지에서 사용됩니다. 받은 마지막 TSV 값의 사본을 보유합니다. 왕복 시간 추정에 사용할 수 있습니다 (RTT = 현재 시간 - TSER).

필드는 공식적 RFC 1323 (TCP Extensions for High Performance)에 설명되어 있습니다

TCP Timestamps Option (TSopt): 

    Kind: 8 

    Length: 10 bytes 

     +-------+-------+---------------------+---------------------+ 
     |Kind=8 | 10 | TS Value (TSval) |TS Echo Reply (TSecr)| 
     +-------+-------+---------------------+---------------------+ 
      1  1    4      4 

    The Timestamps option carries two four-byte timestamp fields. 
    The Timestamp Value field (TSval) contains the current value of 
    the timestamp clock of the TCP sending the option. 

    The Timestamp Echo Reply field (TSecr) is only valid if the ACK 
    bit is set in the TCP header; if it is valid, it echos a times- 
    tamp value that was sent by the remote TCP in the TSval field 
    of a Timestamps option. When TSecr is not valid, its value 
    must be zero. The TSecr value will generally be from the most 
    recent Timestamp option that was received; however, there are 
    exceptions that are explained below. 
관련 문제