Home
last modified time | relevance | path

Searched refs:ooseq (Results 1 – 7 of 7) sorted by relevance

/third_party/lwip/src/core/
Dtcp_in.c1491 if (pcb->ooseq != NULL) {
1498 while (pcb->ooseq != NULL) {
1499 struct tcp_seg *old_ooseq = pcb->ooseq;
1500 pcb->ooseq = pcb->ooseq->next;
1504 struct tcp_seg *next = pcb->ooseq;
1536 pcb->ooseq = next;
1573 while (pcb->ooseq != NULL &&
1574 pcb->ooseq->tcphdr->seqno == pcb->rcv_nxt) {
1576 struct tcp_seg *cseg = pcb->ooseq;
1577 seqno = pcb->ooseq->tcphdr->seqno;
[all …]
Dtcp.c611 if (pcb->ooseq != NULL) { in tcp_abandon()
612 tcp_segs_free(pcb->ooseq); in tcp_abandon()
1355 if (pcb->ooseq != NULL && in tcp_slowtmr()
2155 if (pcb->ooseq != NULL) { in tcp_pcb_purge()
2202 LWIP_ASSERT("ooseq segments leaking", pcb->ooseq == NULL); in tcp_pcb_remove()
2392 if (pcb->ooseq) { in tcp_free_ooseq()
2393 tcp_segs_free(pcb->ooseq); in tcp_free_ooseq()
2394 pcb->ooseq = NULL; in tcp_free_ooseq()
Dpbuf.c134 if (pcb->ooseq != NULL) { in pbuf_free_ooseq()
/third_party/lwip/test/unit/tcp/
Dtest_tcp_oos.c31 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_count()
44 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_pbuf_count()
63 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_seg_seqno()
87 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_seg_tcplen()
110 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_tcplen()
276 EXPECT(pcb->ooseq == NULL); in START_TEST()
413 EXPECT(pcb->ooseq == NULL); in START_TEST()
446 EXPECT(pcb->ooseq == NULL); in START_TEST()
535 EXPECT(pcb->ooseq == NULL); in START_TEST()
622 EXPECT(pcb->ooseq == NULL); in START_TEST()
[all …]
/third_party/lwip/src/include/lwip/
Dtcp.h341 struct tcp_seg *ooseq; /* Received out of sequence segments. */ member
/third_party/lwip/
DUPGRADING271 * Correctly handle remote side overrunning our rcv_wnd in ooseq case
DCHANGELOG1230 * opt.h, tcp.c, tcp_in.c: Implemented limiting data on ooseq queue (task #9989)
1485 * pbuf.c/.h, timers.c: freeing ooseq pbufs when the pbuf pool is empty implemented
1942 overrunning our rcv_wnd in ooseq case.
2151 * tcp_in.c: Another fix for bug #28241 (ooseq processing) and adapted
2211 queueing a call into tcpip_thread to free ooseq-bufs if the pool is empty
3334 * tcp.c, tcp_in.c: fix bug #21699 (segment leak in ooseq processing when last