HomeSort by: relevance | last modified time | path
    Searched refs:ts_recent (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/netinet/
tcp_input.c 1817 (!opti.ts_present || TSTMP_GEQ(opti.ts_val, tp->ts_recent)) &&
1829 * TSTMP_GEQ(opti.ts_val, tp->ts_recent)
1833 tp->ts_recent = opti.ts_val;
2180 * it's less than ts_recent, drop it.
2182 if (opti.ts_present && (tiflags & TH_RST) == 0 && tp->ts_recent &&
2183 TSTMP_LT(opti.ts_val, tp->ts_recent)) {
2184 /* Check to see if ts_recent is over 24 days old. */
2187 * Invalidate ts_recent. If this segment updates
2188 * ts_recent, the age will be reset later and ts_recent
    [all...]
tcp_var.h 335 u_int32_t ts_recent; /* timestamp echo data */ member in struct:tcpcb
tcp_syncache.c 938 sc->sc_timestamp = tb.ts_recent;
998 sc->sc_timestamp = tb.ts_recent;
tcp_output.c 1122 *lp = htonl(tp->ts_recent);
  /src/usr.bin/netstat/
inet.c 1119 printf("ts_recent %u, ts_regent_age %d, last_ack_sent %u\n",
1120 tcpcb.ts_recent, tcpcb.ts_recent_age, tcpcb.last_ack_sent);
inet6.c 1578 printf("ts_recent %u, ts_regent_age %d, last_ack_sent %u\n",
1579 mypcb.ts_recent, mypcb.ts_recent_age, mypcb.last_ack_sent);

Completed in 20 milliseconds