HomeSort by: relevance | last modified time | path
    Searched defs:ts_rtt (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/netinet/
tcp_input.c 1210 uint32_t ts_rtt; local in function:tcp_input
1772 * RTT calculation. Since ts_rtt is unsigned, we can test both
1775 * Note that ts_rtt is in units of slow ticks (500
1782 * ts_rtt is increased by 1 to denote a valid sample,
1784 * extra 1 must be removed when ts_rtt is used, or
1787 ts_rtt = TCP_TIMESTAMP(tp) - opti.ts_ecr + 1;
1788 if (ts_rtt > TCP_PAWS_IDLE)
1789 ts_rtt = 0;
1791 ts_rtt = 0;
1845 if (ts_rtt)
    [all...]

Completed in 13 milliseconds