Home
last modified time | relevance | path

Searched refs:to_tsecr (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_input.c1118 if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { in tcp_do_segment()
1119 to.to_tsecr -= tp->ts_offset; in tcp_do_segment()
1120 if (TSTMP_GT(to.to_tsecr, tcp_ts_getticks())) in tcp_do_segment()
1121 to.to_tsecr = 0; in tcp_do_segment()
1261 to.to_tsecr) { in tcp_do_segment()
1264 t = tcp_ts_getticks() - to.to_tsecr; in tcp_do_segment()
2327 if ((to.to_flags & TOF_TS) != 0 && to.to_tsecr) { in tcp_do_segment()
2330 t = tcp_ts_getticks() - to.to_tsecr; in tcp_do_segment()
2820 (char *)&to->to_tsecr, sizeof(to->to_tsecr)); in tcp_dooptions()
2821 to->to_tsecr = ntohl(to->to_tsecr); in tcp_dooptions()
Dtcp_output.c779 to.to_tsecr = tp->ts_recent; in tcp_output()
1492 to->to_tsecr = htonl(to->to_tsecr); in tcp_addoptions()
1495 bcopy((uint8_t *)&to->to_tsecr, optp, sizeof(to->to_tsecr)); in tcp_addoptions()
1496 optp += sizeof(to->to_tsecr); in tcp_addoptions()
Dtcp_timewait.c137 to.to_tsecr = tp->ts_recent; in tcp_twrespond()
Dtcp_var.h503 u_int32_t to_tsecr; /* reflected timestamp */ member