Searched refs:todrop (Results 1 – 2 of 2) sorted by relevance
487 int64_t todrop; in mptcp_input() local521 todrop = (mb_dsn + mb_datalen) - (mp_tp->mpt_rcvnxt + mp_tp->mpt_rcvwnd); in mptcp_input()522 if (todrop > 0) { in mptcp_input()528 mp_tp->mpt_rcvwnd, todrop); in mptcp_input()530 if (todrop >= mb_datalen) { in mptcp_input()547 VERIFY(todrop <= INT_MAX); in mptcp_input()548 m_adj(m, (int)-todrop); in mptcp_input()549 mb_datalen -= todrop; in mptcp_input()550 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 …]