Searched refs:snd_queuelen (Results 1 – 4 of 4) sorted by relevance
/third_party/lwip/src/core/ |
D | tcp_out.c | 340 …BUGF(TCP_QLEN_DEBUG, ("tcp_write: queuelen: %"TCPWNDSIZE_F"\n", (tcpwnd_size_t)pcb->snd_queuelen)); in tcp_write_checks() 345 if (pcb->snd_queuelen >= LWIP_MIN(TCP_SND_QUEUELEN, (TCP_SNDQUEUELEN_OVERFLOW + 1))) { in tcp_write_checks() 347 pcb->snd_queuelen, (u16_t)TCP_SND_QUEUELEN)); in tcp_write_checks() 352 if (pcb->snd_queuelen != 0) { in tcp_write_checks() 448 queuelen = pcb->snd_queuelen; in tcp_write() 793 pcb->snd_queuelen = queuelen; in tcp_write() 796 pcb->snd_queuelen)); in tcp_write() 797 if (pcb->snd_queuelen != 0) { in tcp_write() 818 if (pcb->snd_queuelen != 0) { in tcp_write() 822 …BUGF(TCP_QLEN_DEBUG | LWIP_DBG_STATE, ("tcp_write: %"S16_F" (with mem err)\n", pcb->snd_queuelen)); in tcp_write() [all …]
|
D | tcp_in.c | 911 LWIP_ASSERT("pcb->snd_queuelen > 0", (pcb->snd_queuelen > 0)); 912 --pcb->snd_queuelen; 913 …N_DEBUG, ("tcp_process: SYN-SENT --queuelen %"TCPWNDSIZE_F"\n", (tcpwnd_size_t)pcb->snd_queuelen)); 1145 (tcpwnd_size_t)pcb->snd_queuelen)); 1146 LWIP_ASSERT("pcb->snd_queuelen >= pbuf_clen(next->p)", (pcb->snd_queuelen >= clen)); 1148 pcb->snd_queuelen = (u16_t)(pcb->snd_queuelen - clen); 1153 (tcpwnd_size_t)pcb->snd_queuelen, 1155 if (pcb->snd_queuelen != 0) {
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 328 u16_t snd_queuelen; /* Number of pbufs currently in the send buffer. */ member 445 #define tcp_sndqueuelen(pcb) ((pcb)->snd_queuelen)
|
/third_party/lwip/ |
D | CHANGELOG | 1430 * 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.
|