Searched refs:snd_queuelen (Results 1 – 9 of 9) 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/ |
D | 0075-adapt-read-write-for-rtc-mode.patch | 239 pcb->snd_queuelen = queuelen; 254 if (pcb->snd_queuelen != 0) { 281 + queuelen = pcb->snd_queuelen; 364 + pcb->snd_queuelen = queuelen; 367 + pcb->snd_queuelen)); 368 + if (pcb->snd_queuelen != 0) { 383 + if (pcb->snd_queuelen != 0) { 387 …BUGF(TCP_QLEN_DEBUG | LWIP_DBG_STATE, ("tcp_write: %"S16_F" (with mem err)\n", pcb->snd_queuelen));
|
D | 0011-remove-gazelle-tcp-conn-func.patch | 67 - tdp.s_next = pcb->snd_queuelen; 89 - tdp.s_next = pcb->snd_queuelen;
|
D | 0032-fix-free-pbuf-miss-data.patch | 62 if (pcb->snd_queuelen != 0) {
|
D | 0023-refactor-event-and-checksum-offload-support.patch | 339 pcb->snd_queuelen = queuelen;
|
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.
|
D | 0002-adapt-lstack.patch | 2617 + tdp.s_next = pcb->snd_queuelen; 2639 + tdp.s_next = pcb->snd_queuelen;
|
/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)
|