Searched refs:unacked (Results 1 – 7 of 7) sorted by relevance
| /lib/liblwip/src/core/ |
| D | tcp_out.c | 250 pcb->unacked != NULL))) { in tcp_pbuf_prealloc() 329 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write_checks() 332 pcb->unacked == NULL && pcb->unsent == NULL); in tcp_write_checks() 684 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write() 704 LWIP_ASSERT("tcp_write: valid queue length", pcb->unacked != NULL || in tcp_write() 815 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_enqueue_flags() 935 useg = pcb->unacked; in tcp_output() 1002 if (pcb->unacked == NULL) { in tcp_output() 1003 pcb->unacked = seg; in tcp_output() 1012 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output() [all …]
|
| D | tcp_in.c | 630 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno))); in tcp_process() 633 && ackno == ntohl(pcb->unacked->tcphdr->seqno) + 1) { 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() 1002 ntohl(pcb->unacked->tcphdr->seqno): 0, in tcp_receive() 1003 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() [all …]
|
| D | tcp.c | 382 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()
|
| /lib/liblwip/test/unit/tcp/ |
| D | test_tcp.c | 169 EXPECT_RET(pcb->unacked == NULL); in START_TEST() 360 EXPECT(pcb->unacked == NULL); in START_TEST() 366 check_seqnos(pcb->unacked, 2, seqnos); in START_TEST() 376 check_seqnos(pcb->unacked, 2, &seqnos[1]); in START_TEST() 396 check_seqnos(pcb->unacked, 5, &seqnos[1]); in START_TEST() 459 EXPECT(pcb->unacked == NULL); in START_TEST() 465 check_seqnos(pcb->unacked, 2, seqnos); in START_TEST() 476 check_seqnos(pcb->unacked, 1, seqnos); in START_TEST() 486 check_seqnos(pcb->unacked, 6, seqnos); in START_TEST()
|
| /lib/liblwip/src/include/lwip/ |
| D | tcp.h | 243 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */ member
|
| D | tcp_impl.h | 84 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \
|
| /lib/liblwip/ |
| D | CHANGELOG | 209 byte value when pcb->unacked != NULL 1092 which are not consecutive when retransmitting unacked segments 1302 Fixed by sorting the unsent and unacked queues (segments are inserted at the
|