Home
last modified time | relevance | path

Searched refs:tcpqe_tcp (Results 1 – 2 of 2) sorted by relevance

/openbsd/sys/netinet/
H A Dtcp_input.c241 if (SEQ_GT(q->tcpqe_tcp->th_seq, th->th_seq)) in tcp_reass()
250 struct tcphdr *phdr = p->tcpqe_tcp; in tcp_reass()
276 struct tcphdr *qhdr = q->tcpqe_tcp; in tcp_reass()
296 tiqe->tcpqe_tcp = th; in tcp_reass()
323 if (q == NULL || q->tcpqe_tcp->th_seq != tp->rcv_nxt) in tcp_flush_queue()
325 if (tp->t_state == TCPS_SYN_RECEIVED && q->tcpqe_tcp->th_reseqlen) in tcp_flush_queue()
328 tp->rcv_nxt += q->tcpqe_tcp->th_reseqlen; in tcp_flush_queue()
329 flags = q->tcpqe_tcp->th_flags & TH_FIN; in tcp_flush_queue()
343 } while (q != NULL && q->tcpqe_tcp->th_seq == tp->rcv_nxt); in tcp_flush_queue()
H A Dtcp_var.h63 struct tcphdr *tcpqe_tcp; member