Lines Matching refs:cur_seg
30 - struct tcp_seg **cur_seg = &(pcb->unacked);
31 - while (*cur_seg &&
32 - TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
33 - cur_seg = &((*cur_seg)->next );
35 - seg->next = (*cur_seg);
36 - (*cur_seg) = seg;
273 + struct tcp_seg **cur_seg = &(pcb->unacked);
274 + while (*cur_seg &&
275 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(tmp_seg->…
276 + cur_seg = &((*cur_seg)->next );
278 + tmp_seg->next = (*cur_seg);
279 + (*cur_seg) = tmp_seg;