Home
last modified time | relevance | path

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

/third_party/lwip/test/unit/tcp/
Dtest_tcp.c486 EXPECT_RET(pcb->unacked == NULL); in START_TEST()
665 EXPECT(pcb->unacked == NULL); in START_TEST()
671 check_seqnos(pcb->unacked, 2, seqnos); in START_TEST()
683 check_seqnos(pcb->unacked, 2, &seqnos[1]); in START_TEST()
703 check_seqnos(pcb->unacked, 5, &seqnos[1]); in START_TEST()
753 EXPECT(pcb->unacked == NULL); in START_TEST()
759 check_seqnos(pcb->unacked, 2, seqnos); in START_TEST()
770 check_seqnos(pcb->unacked, 1, seqnos); in START_TEST()
780 check_seqnos(pcb->unacked, 6, seqnos); in START_TEST()
990 EXPECT_RET(pcb->unacked == NULL); in START_TEST()
[all …]
/third_party/lwip/src/core/
Dtcp_out.c258 pcb->unacked != NULL))) { in tcp_pbuf_prealloc()
342 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write_checks()
345 pcb->unacked == NULL && pcb->unsent == NULL); in tcp_write_checks()
787 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write()
807 LWIP_ASSERT("tcp_write: valid queue length", pcb->unacked != NULL || in tcp_write()
1127 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_enqueue_flags()
1313 if (wnd == pcb->snd_wnd && pcb->unacked == NULL && pcb->persist_backoff == 0) { in tcp_output()
1328 useg = pcb->unacked; in tcp_output()
1382 if (pcb->unacked == NULL) { in tcp_output()
1383 pcb->unacked = seg; in tcp_output()
[all …]
Dtcp_in.c856 ackno, pcb->snd_nxt, pcb->unacked ? "" : " empty:",
857 pcb->unacked ? lwip_ntohl(pcb->unacked->tcphdr->seqno) : 0));
880 rseg = pcb->unacked;
888 pcb->unacked = rseg->next;
894 if (pcb->unacked == NULL) {
1278 pcb->unacked != NULL ?
1279 lwip_ntohl(pcb->unacked->tcphdr->seqno) : 0,
1280 pcb->unacked != NULL ?
1281 … lwip_ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked) : 0));
1285 pcb->unacked = tcp_free_acked_segments(pcb, pcb->unacked, "unacked", pcb->unsent);
[all …]
Dtcp.c604 if (pcb->unacked != NULL) { in tcp_abandon()
605 tcp_segs_free(pcb->unacked); in tcp_abandon()
1237 LWIP_ASSERT("tcp_slowtimr: persist ticking with in-flight data", pcb->unacked == NULL); in tcp_slowtmr()
1284 …if ((tcp_rexmit_rto_prepare(pcb) == ERR_OK) || ((pcb->unacked == NULL) && (pcb->unsent != NULL))) { in tcp_slowtmr()
2151 if (pcb->unacked != NULL) { in tcp_pcb_purge()
2166 tcp_segs_free(pcb->unacked); in tcp_pcb_purge()
2167 pcb->unacked = pcb->unsent = NULL; in tcp_pcb_purge()
2200 LWIP_ASSERT("unacked segments leaking", pcb->unacked == NULL); in tcp_pcb_remove()
/third_party/lwip/src/include/lwip/
Dtcp.h339 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */ member
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h100 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \
/third_party/lwip/src/api/
Dapi_msg.c984 if ((conn->linger >= 0) && (conn->pcb.tcp->unsent || conn->pcb.tcp->unacked)) {
/third_party/lwip/
DCHANGELOG224 * tcp_in.c: fix bug #51937 (leaking tcp_pcbs on passive close with unacked data)
265 * tcp_in.c: fix bug #51937 (leaking tcp_pcbs on passive close with unacked data)
1408 byte value when pcb->unacked != NULL
2291 which are not consecutive when retransmitting unacked segments
2501 Fixed by sorting the unsent and unacked queues (segments are inserted at the
/third_party/chromium/patch/
D0004-3.2-Beta5.patch35386 // have no outstanding unacked messages. If null, no callback has been set and