Home
last modified time | relevance | path

Searched refs:snd_queuelen (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/core/
Dtcp_out.c328 …BUGF(TCP_QLEN_DEBUG, ("tcp_write: queuelen: %"TCPWNDSIZE_F"\n", (tcpwnd_size_t)pcb->snd_queuelen)); in tcp_write_checks()
333 if (pcb->snd_queuelen >= LWIP_MIN(TCP_SND_QUEUELEN, (TCP_SNDQUEUELEN_OVERFLOW + 1))) { in tcp_write_checks()
335 pcb->snd_queuelen, (u16_t)TCP_SND_QUEUELEN)); in tcp_write_checks()
340 if (pcb->snd_queuelen != 0) { in tcp_write_checks()
436 queuelen = pcb->snd_queuelen; in tcp_write()
781 pcb->snd_queuelen = queuelen; in tcp_write()
784 pcb->snd_queuelen)); in tcp_write()
785 if (pcb->snd_queuelen != 0) { in tcp_write()
806 if (pcb->snd_queuelen != 0) { in tcp_write()
810 …BUGF(TCP_QLEN_DEBUG | LWIP_DBG_STATE, ("tcp_write: %"S16_F" (with mem err)\n", pcb->snd_queuelen)); in tcp_write()
[all …]
Dtcp_in.c877 LWIP_ASSERT("pcb->snd_queuelen > 0", (pcb->snd_queuelen > 0));
878 --pcb->snd_queuelen;
879 …N_DEBUG, ("tcp_process: SYN-SENT --queuelen %"TCPWNDSIZE_F"\n", (tcpwnd_size_t)pcb->snd_queuelen));
1111 (tcpwnd_size_t)pcb->snd_queuelen));
1112 LWIP_ASSERT("pcb->snd_queuelen >= pbuf_clen(next->p)", (pcb->snd_queuelen >= clen));
1114 pcb->snd_queuelen = (u16_t)(pcb->snd_queuelen - clen);
1119 (tcpwnd_size_t)pcb->snd_queuelen,
1121 if (pcb->snd_queuelen != 0) {
/third_party/lwip/src/include/lwip/
Dtcp.h328 u16_t snd_queuelen; /* Number of pbufs currently in the send buffer. */ member
436 #define tcp_sndqueuelen(pcb) ((pcb)->snd_queuelen)
/third_party/lwip/
DCHANGELOG1430 * tcp_impl.h: fixed bug #34355: nagle does not take snd_buf/snd_queuelen into
3481 * tcp_out.c: tcp_enqueue: pcb->snd_queuelen didn't work for chaine PBUF_RAMs:
3482 changed snd_queuelen++ to snd_queuelen += pbuf_clen(p).
3527 * tcp_out.c: Added check to prevent tcp_pcb->snd_queuelen from overflowing.