Home
last modified time | relevance | path

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

/external/lib/lwip/core/
A Dtcp_out.c250 pcb->unacked != NULL))) { in tcp_pbuf_prealloc()
935 useg = pcb->unacked; in tcp_output()
1002 if (pcb->unacked == NULL) { in tcp_output()
1003 pcb->unacked = seg; in tcp_output()
1243 if (pcb->unacked == NULL) { in tcp_rexmit_rto()
1252 pcb->unsent = pcb->unacked; in tcp_rexmit_rto()
1254 pcb->unacked = NULL; in tcp_rexmit_rto()
1280 if (pcb->unacked == NULL) { in tcp_rexmit()
1286 seg = pcb->unacked; in tcp_rexmit()
1287 pcb->unacked = seg->next; in tcp_rexmit()
[all …]
A Dtcp_in.c638 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno)));
663 rseg = pcb->unacked;
664 pcb->unacked = rseg->next;
669 if(pcb->unacked == NULL)
1009 pcb->unacked != NULL?
1012 … ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked): 0));
1016 while (pcb->unacked != NULL &&
1024 next = pcb->unacked;
1025 pcb->unacked = pcb->unacked->next;
1046 if(pcb->unacked == NULL)
[all …]
A Dtcp.c382 if (pcb->unacked != NULL) { in tcp_abandon()
383 tcp_segs_free(pcb->unacked); in tcp_abandon()
848 if (pcb->unacked != NULL && pcb->rtime >= pcb->rto) { in tcp_slowtmr()
1507 if (pcb->unacked != NULL) { in tcp_pcb_purge()
1523 tcp_segs_free(pcb->unacked); in tcp_pcb_purge()
1524 pcb->unacked = pcb->unsent = NULL; in tcp_pcb_purge()
1554 LWIP_ASSERT("unacked segments leaking", pcb->unacked == NULL); in tcp_pcb_remove()
/external/lib/lwip/include/lwip/
A Dtcp.h243 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */ member
A Dtcp_impl.h84 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \

Completed in 13 milliseconds