Tcp 以太转储中TSV和TSER字段的含义是什么?

Tcp 以太转储中TSV和TSER字段的含义是什么?,tcp,field,Tcp,Field,以太转储中TSV和TSER字段的含义是什么?我试着用谷歌搜索,但找不到答案。TSV是时间戳值字段。它与序列号一起用于唯一标识段(因为序列号可能会换行) TSER是时间戳回显回复字段。这在ACK消息中使用。它保存最后收到的TSV值的副本。它可用于往返时间估计(RTT=当前时间-TSER) 这些字段的正式描述见: TCP Timestamps Option (TSopt): Kind: 8 Length: 10 bytes +-------+-------+

以太转储中TSV和TSER字段的含义是什么?我试着用谷歌搜索,但找不到答案。

TSV是
时间戳值
字段。它与序列号一起用于唯一标识段(因为序列号可能会换行)

TSER是
时间戳回显回复
字段。这在ACK消息中使用。它保存最后收到的TSV值的副本。它可用于往返时间估计(RTT=当前时间-TSER)

这些字段的正式描述见:

  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.