Searched refs:unacked (Results 1 – 7 of 7) sorted by relevance
247 pcb->unacked != NULL))) { in tcp_pbuf_prealloc()326 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write_checks()329 pcb->unacked == NULL && pcb->unsent == NULL); in tcp_write_checks()677 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write()697 LWIP_ASSERT("tcp_write: valid queue length", pcb->unacked != NULL || in tcp_write()808 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_enqueue_flags()925 useg = pcb->unacked; in tcp_output()992 if (pcb->unacked == NULL) { in tcp_output()993 pcb->unacked = seg; in tcp_output()1002 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output()[all …]
627 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno))); in tcp_process()630 && ackno == ntohl(pcb->unacked->tcphdr->seqno) + 1) { in tcp_process()651 rseg = pcb->unacked; in tcp_process()652 pcb->unacked = rseg->next; in tcp_process()656 if(pcb->unacked == NULL) in tcp_process()979 pcb->unacked != NULL? in tcp_receive()980 ntohl(pcb->unacked->tcphdr->seqno): 0, in tcp_receive()981 pcb->unacked != NULL? in tcp_receive()982 … ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked): 0)); in tcp_receive()986 while (pcb->unacked != NULL && in tcp_receive()[all …]
349 if (pcb->unacked != NULL) { in tcp_abandon()350 tcp_segs_free(pcb->unacked); in tcp_abandon()801 if (pcb->unacked != NULL && pcb->rtime >= pcb->rto) { in tcp_slowtmr()1400 if (pcb->unacked != NULL) { in tcp_pcb_purge()1416 tcp_segs_free(pcb->unacked); in tcp_pcb_purge()1417 pcb->unacked = pcb->unsent = NULL; in tcp_pcb_purge()1447 LWIP_ASSERT("unacked segments leaking", pcb->unacked == NULL); in tcp_pcb_remove()
241 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */ member
84 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \
775 unsigned int unacked; member1771 if (s->unacked) in tcp_stats_print()1772 printf(" unacked:%u", s->unacked); in tcp_stats_print()1986 s.unacked = info->tcpi_unacked; in tcp_show_info()
793 which are not consecutive when retransmitting unacked segments1003 Fixed by sorting the unsent and unacked queues (segments are inserted at the