Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dtcp.c143 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND)) { in tcp_close_shutdown()
285 if (pcb->refused_data != NULL) { in tcp_shutdown()
286 pbuf_free(pcb->refused_data); in tcp_shutdown()
287 pcb->refused_data = NULL; in tcp_shutdown()
1000 if (pcb->refused_data != NULL) { in tcp_fasttmr()
1004 TCP_EVENT_RECV(pcb, pcb->refused_data, ERR_OK, err); in tcp_fasttmr()
1006 pcb->refused_data = NULL; in tcp_fasttmr()
1392 if (pcb->refused_data != NULL) { in tcp_pcb_purge()
1394 pbuf_free(pcb->refused_data); in tcp_pcb_purge()
1395 pcb->refused_data = NULL; in tcp_pcb_purge()
Dtcp_in.c301 if (pcb->refused_data != NULL) { in tcp_input()
304 TCP_EVENT_RECV(pcb, pcb->refused_data, ERR_OK, err); in tcp_input()
306 pcb->refused_data = NULL; in tcp_input()
349 LWIP_ASSERT("pcb->refused_data == NULL", pcb->refused_data == NULL); in tcp_input()
369 pcb->refused_data = recv_data; in tcp_input()
/external/syslinux/core/lwip/src/include/lwip/
Dtcp.h246 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member
/external/syslinux/core/lwip/
DCHANGELOG315 refusing 'refused_data' again.