Home
last modified time | relevance | path

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

/lk-master/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.c630 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno))); in tcp_process()
655 rseg = pcb->unacked; in tcp_process()
656 pcb->unacked = rseg->next; in tcp_process()
661 if(pcb->unacked == NULL) in tcp_process()
1001 pcb->unacked != NULL? in tcp_receive()
1004 … ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked): 0)); in tcp_receive()
1008 while (pcb->unacked != NULL && in tcp_receive()
1016 next = pcb->unacked; in tcp_receive()
1017 pcb->unacked = pcb->unacked->next; in tcp_receive()
1038 if(pcb->unacked == NULL) in tcp_receive()
[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()
/lk-master/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 12 milliseconds