Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp.c392 (pcb->refused_data != NULL) in tcp_fast_tmr_tick()
511 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND_MAX(pcb))) { in tcp_close_shutdown()
690 if (pcb->refused_data != NULL) { in tcp_shutdown()
691 pbuf_free(pcb->refused_data); in tcp_shutdown()
692 pcb->refused_data = NULL; in tcp_shutdown()
1687 if (pcb->refused_data != NULL) {
1726 while (pcb->refused_data != NULL)
1730 u8_t refused_flags = pcb->refused_data->flags;
1733 struct pbuf *refused_data = pcb->refused_data; local
1735 pbuf_split_64k(refused_data, &rest);
[all …]
Dtcp_in.c439 if (pcb->refused_data != NULL) {
441 ((pcb->refused_data != NULL) && (tcplen > 0))) {
503 LWIP_ASSERT("pcb->refused_data == NULL", pcb->refused_data == NULL);
535 pcb->refused_data = recv_data;
549 if (pcb->refused_data != NULL) {
551 pcb->refused_data->flags |= PBUF_FLAG_TCP_FIN;
/third_party/lwip/
D0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch99 if (pcb->refused_data != NULL) {
DCHANGELOG1813 refusing 'refused_data' again.
/third_party/lwip/src/include/lwip/
Dtcp.h344 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member