Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dtcp.c175 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND)) { in tcp_close_shutdown()
326 if (pcb->refused_data != NULL) { in tcp_shutdown()
327 pbuf_free(pcb->refused_data); in tcp_shutdown()
328 pcb->refused_data = NULL; in tcp_shutdown()
1070 if (pcb->refused_data != NULL) { in tcp_fasttmr()
1088 u8_t refused_flags = pcb->refused_data->flags; in tcp_process_refused_data()
1091 struct pbuf *refused_data = pcb->refused_data; in tcp_process_refused_data() local
1092 pcb->refused_data = NULL; in tcp_process_refused_data()
1095 TCP_EVENT_RECV(pcb, refused_data, ERR_OK, err); in tcp_process_refused_data()
1117 pcb->refused_data = refused_data; in tcp_process_refused_data()
[all …]
Dtcp_in.c293 if (pcb->refused_data != NULL) { in tcp_input()
295 ((pcb->refused_data != NULL) && (tcplen > 0))) { in tcp_input()
340 LWIP_ASSERT("pcb->refused_data == NULL", pcb->refused_data == NULL); in tcp_input()
357 pcb->refused_data = recv_data; in tcp_input()
365 if (pcb->refused_data != NULL) { in tcp_input()
367 pcb->refused_data->flags |= PBUF_FLAG_TCP_FIN; in tcp_input()
/lib/liblwip/src/include/lwip/
Dtcp.h248 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member
/lib/liblwip/
DCHANGELOG614 refusing 'refused_data' again.