Lines Matching refs:th_seq

1793 	    th->th_seq == tp->rcv_nxt &&  in tcp_do_segment()
1808 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { in tcp_do_segment()
1944 tp->snd_wl1 = th->th_seq; in tcp_do_segment()
2060 tp->irs = th->th_seq; in tcp_do_segment()
2143 th->th_seq++; in tcp_do_segment()
2152 tp->snd_wl1 = th->th_seq - 1; in tcp_do_segment()
2153 tp->rcv_up = th->th_seq; in tcp_do_segment()
2204 if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_do_segment()
2205 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || in tcp_do_segment()
2206 (tp->rcv_wnd == 0 && tp->last_ack_sent == th->th_seq)) { in tcp_do_segment()
2212 tp->last_ack_sent == th->th_seq) { in tcp_do_segment()
2251 SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_do_segment()
2252 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) { in tcp_do_segment()
2302 if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) { in tcp_do_segment()
2307 todrop = tp->rcv_nxt - th->th_seq; in tcp_do_segment()
2311 th->th_seq++; in tcp_do_segment()
2346 tcp_update_sack_list(tp, th->th_seq, in tcp_do_segment()
2347 th->th_seq + todrop); in tcp_do_segment()
2355 th->th_seq += todrop; in tcp_do_segment()
2388 todrop = (th->th_seq + tlen) - (tp->rcv_nxt + tp->rcv_wnd); in tcp_do_segment()
2400 if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) { in tcp_do_segment()
2431 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && in tcp_do_segment()
2432 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + in tcp_do_segment()
2521 tp->snd_wl1 = th->th_seq - 1; in tcp_do_segment()
3062 (SEQ_LT(tp->snd_wl1, th->th_seq) || in tcp_do_segment()
3063 (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) || in tcp_do_segment()
3070 tp->snd_wl1 = th->th_seq; in tcp_do_segment()
3109 if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) { in tcp_do_segment()
3110 tp->rcv_up = th->th_seq + th->th_urp; in tcp_do_segment()
3154 tcp_seq save_start = th->th_seq; in tcp_do_segment()
3170 if (th->th_seq == tp->rcv_nxt && in tcp_do_segment()
3451 tcp_respond(tp, mtod(m, void *), th, m, th->th_seq+tlen, in tcp_dropwithreset()