Home
last modified time | relevance | path

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

/openthread-3.6.0/third_party/tcplp/bsdtcp/
Dtcp_input.c469 to.to_flags = 0; in tcp_input()
791 (to.to_flags & TOF_FASTOPEN)) { in tcp_input()
871 if (/*sc->sc_flags & SCF_WINSCALE*/to.to_flags & TOF_SCALE) { in tcp_input()
912 if (/*sc->sc_flags & SCF_TIMESTAMP*/to.to_flags & TOF_TS) { in tcp_input()
930 if (/*sc->sc_flags & SCF_SACK*/ to.to_flags & TOF_SACKPERM) in tcp_input()
940 tcp_mss(tp, /*sc->sc_peer_mss*/(to.to_flags & TOF_MSS) ? to.to_mss : 0); in tcp_input()
1118 if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { in tcp_do_segment()
1127 if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS)) { in tcp_do_segment()
1132 if (!(tp->t_flags & TF_RCVD_TSTMP) && (to.to_flags & TOF_TS)) { in tcp_do_segment()
1146 if ((to.to_flags & TOF_SCALE) && 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.c729 to.to_flags = 0; in tcp_output()
735 to.to_flags |= TOF_MSS; in tcp_output()
750 to.to_flags |= TOF_FASTOPEN; in tcp_output()
757 to.to_flags |= TOF_FASTOPEN; in tcp_output()
773 to.to_flags |= TOF_SCALE; in tcp_output()
780 to.to_flags |= TOF_TS; in tcp_output()
791 to.to_flags |= TOF_SACKPERM; in tcp_output()
795 to.to_flags |= TOF_SACK; in tcp_output()
813 !(to.to_flags & TOF_FASTOPEN)) in tcp_output()
1439 if ((to->to_flags & mask) != mask) in tcp_addoptions()
[all …]
Dtcp_var.h493 u_int64_t to_flags; /* which options are present */ member
Dtcp_sack.c349 if (to->to_flags & TOF_SACK) { in tcp_sack_doack()