Searched refs:todrop (Results 1 – 2 of 2) sorted by relevance
484 int64_t todrop; in mptcp_input() local518 todrop = (mb_dsn + mb_datalen) - (mp_tp->mpt_rcvnxt + mp_tp->mpt_rcvwnd); in mptcp_input()519 if (todrop > 0) { in mptcp_input()525 mp_tp->mpt_rcvwnd, todrop); in mptcp_input()527 if (todrop >= mb_datalen) { in mptcp_input()544 VERIFY(todrop <= INT_MAX); in mptcp_input()545 m_adj(m, (int)-todrop); in mptcp_input()546 mb_datalen -= todrop; in mptcp_input()547 m->m_pkthdr.mp_rlen -= todrop; in mptcp_input()
2027 int todrop, acked = 0, ourfinisacked, needoutput = 0; in tcp_input() local4045 todrop = tlen - tp->rcv_wnd; in tcp_input()4046 m_adj(m, -todrop); in tcp_input()4050 tcpstat.tcps_rcvbyteafterwin += todrop; in tcp_input()4315 todrop = tp->rcv_nxt - th->th_seq; in tcp_input()4316 if (todrop > 0) { in tcp_input()4328 todrop--; in tcp_input()4335 if (todrop > tlen in tcp_input()4336 || (todrop == tlen && (thflags & TH_FIN) == 0)) { in tcp_input()4360 if (todrop == 1) { in tcp_input()[all …]