Searched refs:td_maxend (Results 1 – 2 of 2) sorted by relevance
460 sender->td_maxend = end; in tcp_init_sender()530 sender->td_maxend = end + sender->td_maxwin; in tcp_in_window()537 receiver->td_end = receiver->td_maxend = sack; in tcp_in_window()591 if (before(seq, sender->td_maxend + 1) && in tcp_in_window()622 if (receiver->td_maxwin != 0 && after(end, sender->td_maxend)) in tcp_in_window()623 receiver->td_maxwin += end - sender->td_maxend; in tcp_in_window()624 if (after(sack + win, receiver->td_maxend - 1)) { in tcp_in_window()625 receiver->td_maxend = sack + win; in tcp_in_window()627 receiver->td_maxend++; in tcp_in_window()658 bool seq_ok = before(seq, sender->td_maxend + 1); in tcp_in_window()[all …]
10 u_int32_t td_maxend; /* max of ack + max(win, 1) */ member