Searched refs:cur_seg (Results 1 – 1 of 1) sorted by relevance
1012 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output() local1013 while (*cur_seg && in tcp_output()1014 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_output()1015 cur_seg = &((*cur_seg)->next ); in tcp_output()1017 seg->next = (*cur_seg); in tcp_output()1018 (*cur_seg) = seg; in tcp_output()1278 struct tcp_seg **cur_seg; in tcp_rexmit() local1289 cur_seg = &(pcb->unsent); in tcp_rexmit()1290 while (*cur_seg && in tcp_rexmit()1291 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()[all …]