Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dtcp_out.c1012 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output() local
1013 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() local
1289 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 …]