Home
last modified time | relevance | path

Searched refs:snd_buf (Results 1 – 5 of 5) sorted by relevance

/lib/liblwip/src/include/lwip/
Dtcp.h232 u16_t snd_buf; /* Available buffer space for sending (in bytes). */ member
326 #define tcp_sndbuf(pcb) ((pcb)->snd_buf)
/lib/liblwip/src/core/
Dtcp_out.c308 if (len > pcb->snd_buf) { in tcp_write_checks()
310 len, pcb->snd_buf)); in tcp_write_checks()
677 pcb->snd_buf -= len; in tcp_write()
757 if (pcb->snd_buf == 0) { in tcp_enqueue_flags()
804 pcb->snd_buf--; in tcp_enqueue_flags()
Dtcp_in.c634 pcb->snd_buf++; in tcp_process()
977 pcb->snd_buf += pcb->acked; in tcp_receive()
Dtcp.c1309 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc()
/lib/liblwip/
DCHANGELOG231 * tcp_impl.h: fixed bug #34355: nagle does not take snd_buf/snd_queuelen into
2855 * tcp.c: Increment pcb->snd_buf when ACK is received in SYN_SENT state.