Home
last modified time | relevance | path

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

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_input.c1043 if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { in tcp_do_segment()
1044 to.to_tsecr -= tp->ts_offset; in tcp_do_segment()
1045 if (TSTMP_GT(to.to_tsecr, tcp_ts_getticks())) in tcp_do_segment()
1046 to.to_tsecr = 0; in tcp_do_segment()
1163 to.to_tsecr) { in tcp_do_segment()
1166 t = tcp_ts_getticks() - to.to_tsecr; in tcp_do_segment()
2162 if ((to.to_flags & TOF_TS) != 0 && to.to_tsecr) { in tcp_do_segment()
2165 t = tcp_ts_getticks() - to.to_tsecr; in tcp_do_segment()
2652 (char *)&to->to_tsecr, sizeof(to->to_tsecr)); in tcp_dooptions()
2653 to->to_tsecr = ntohl(to->to_tsecr); in tcp_dooptions()
Dtcp_output.c698 to.to_tsecr = tp->ts_recent; in tcp_output()
1402 to->to_tsecr = htonl(to->to_tsecr); in tcp_addoptions()
1405 bcopy((uint8_t *)&to->to_tsecr, optp, sizeof(to->to_tsecr)); in tcp_addoptions()
1406 optp += sizeof(to->to_tsecr); in tcp_addoptions()
Dtcp_timewait.c137 to.to_tsecr = tp->ts_recent; in tcp_twrespond()
Dtcp_var.h485 u_int32_t to_tsecr; /* reflected timestamp */ member