Home
last modified time | relevance | path

Searched refs:to_flags (Results 1 – 5 of 5) sorted by relevance

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_input.c464 to.to_flags = 0; in tcp_input()
817 if (/*sc->sc_flags & SCF_WINSCALE*/to.to_flags & TOF_SCALE) { in tcp_input()
858 if (/*sc->sc_flags & SCF_TIMESTAMP*/to.to_flags & TOF_TS) { in tcp_input()
876 if (/*sc->sc_flags & SCF_SACK*/ to.to_flags & TOF_SACKPERM) in tcp_input()
886 tcp_mss(tp, /*sc->sc_peer_mss*/(to.to_flags & TOF_MSS) ? to.to_mss : 0); in tcp_input()
1043 if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { in tcp_do_segment()
1052 if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS)) { in tcp_do_segment()
1057 if (!(tp->t_flags & TF_RCVD_TSTMP) && (to.to_flags & TOF_TS)) { in tcp_do_segment()
1071 if ((to.to_flags & TOF_SCALE) && in tcp_do_segment()
1081 if (to.to_flags & TOF_TS) { in tcp_do_segment()
[all …]
Dtcp_timewait.c128 to.to_flags = 0; in tcp_twrespond()
135 to.to_flags |= TOF_TS; in tcp_twrespond()
344 if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent && in tcp_twcheck()
Dtcp_output.c682 to.to_flags = 0; in tcp_output()
687 to.to_flags |= TOF_MSS; in tcp_output()
692 to.to_flags |= TOF_SCALE; in tcp_output()
699 to.to_flags |= TOF_TS; in tcp_output()
710 to.to_flags |= TOF_SACKPERM; in tcp_output()
714 to.to_flags |= TOF_SACK; in tcp_output()
1349 if ((to->to_flags & mask) != mask) in tcp_addoptions()
1353 switch (to->to_flags & mask) { in tcp_addoptions()
Dtcp_var.h476 u_int64_t to_flags; /* which options are present */ member
Dtcp_sack.c349 if (to->to_flags & TOF_SACK) { in tcp_sack_doack()