Searched refs:snd_queuelen (Results 1 – 5 of 5) sorted by relevance
/external/syslinux/core/lwip/src/core/ |
D | tcp_out.c | 312 LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_write: queuelen: %"U16_F"\n", (u16_t)pcb->snd_queuelen)); in tcp_write_checks() 317 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write_checks() 319 pcb->snd_queuelen, TCP_SND_QUEUELEN)); in tcp_write_checks() 324 if (pcb->snd_queuelen != 0) { in tcp_write_checks() 384 queuelen = pcb->snd_queuelen; in tcp_write() 671 pcb->snd_queuelen = queuelen; in tcp_write() 674 pcb->snd_queuelen)); in tcp_write() 675 if (pcb->snd_queuelen != 0) { in tcp_write() 696 if (pcb->snd_queuelen != 0) { in tcp_write() 700 …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 | 648 LWIP_ASSERT("pcb->snd_queuelen > 0", (pcb->snd_queuelen > 0)); in tcp_process() 649 --pcb->snd_queuelen; in tcp_process() 650 …_DEBUGF(TCP_QLEN_DEBUG, ("tcp_process: SYN-SENT --queuelen %"U16_F"\n", (u16_t)pcb->snd_queuelen)); in tcp_process() 997 … LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_receive: queuelen %"U16_F" ... ", (u16_t)pcb->snd_queuelen)); in tcp_receive() 998 … LWIP_ASSERT("pcb->snd_queuelen >= pbuf_clen(next->p)", (pcb->snd_queuelen >= pbuf_clen(next->p))); in tcp_receive() 1004 pcb->snd_queuelen -= pbuf_clen(next->p); in tcp_receive() 1007 … LWIP_DEBUGF(TCP_QLEN_DEBUG, ("%"U16_F" (after freeing unacked)\n", (u16_t)pcb->snd_queuelen)); in tcp_receive() 1008 if (pcb->snd_queuelen != 0) { in tcp_receive() 1042 … LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_receive: queuelen %"U16_F" ... ", (u16_t)pcb->snd_queuelen)); in tcp_receive() 1043 … LWIP_ASSERT("pcb->snd_queuelen >= pbuf_clen(next->p)", (pcb->snd_queuelen >= pbuf_clen(next->p))); in tcp_receive() [all …]
|
D | tcp.c | 1212 pcb->snd_queuelen = 0; in tcp_alloc()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | tcp.h | 232 u16_t snd_queuelen; /* Available buffer space for sending (in tcp_segs). */ member 325 #define tcp_sndqueuelen(pcb) ((pcb)->snd_queuelen)
|
/external/syslinux/core/lwip/ |
D | CHANGELOG | 1983 * tcp_out.c: tcp_enqueue: pcb->snd_queuelen didn't work for chaine PBUF_RAMs: 1984 changed snd_queuelen++ to snd_queuelen += pbuf_clen(p). 2029 * tcp_out.c: Added check to prevent tcp_pcb->snd_queuelen from overflowing.
|