Lines Matching refs:acked
1362 u_int32_t fsize, acked; in tcp_bad_rexmt_restore_state() local
1364 acked = BYTES_ACKED(th, tp); in tcp_bad_rexmt_restore_state()
1377 tp->snd_cwnd = fsize + min(acked, tp->snd_cwnd); in tcp_bad_rexmt_restore_state()
2027 int todrop, acked = 0, ourfinisacked, needoutput = 0; in tcp_input() local
3212 acked = BYTES_ACKED(th, tp); in tcp_input()
3214 tcpstat.tcps_rcvackbyte += acked; in tcp_input()
3221 uint32_t pkts_acked = tcp_packets_this_ack(tp, acked); in tcp_input()
3225 if (acked == 0 && (to.to_flags & TOF_TS) != 0 && to.to_tsecr != 0 && in tcp_input()
3229 if (acked > 0 || newly_acked_time) { in tcp_input()
3263 sbdrop(&so->so_snd, acked); in tcp_input()
4919 if (acked == 0 && (to.to_flags & TOF_TS) != 0 && to.to_tsecr != 0 && in tcp_input()
5297 acked = BYTES_ACKED(th, tp); in tcp_input()
5299 tcpstat.tcps_rcvackbyte += acked; in tcp_input()
5345 if (acked == 0) { in tcp_input()
5387 acked = 0; in tcp_input()
5389 uint32_t pkts_acked = tcp_packets_this_ack(tp, acked); in tcp_input()
5401 if (acked == 0 && sack_bytes_acked == 0 && in tcp_input()
5410 if (acked > 0 || sack_bytes_acked > 0 || newly_acked_time) { in tcp_input()
5455 if (acked > so->so_snd.sb_cc) { in tcp_input()
5460 sbdrop(&so->so_snd, acked); in tcp_input()
5462 tp->snd_wnd -= acked; in tcp_input()