Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp.c353 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND_MAX(pcb))) { in tcp_close_shutdown()
532 if (pcb->refused_data != NULL) { in tcp_shutdown()
533 pbuf_free(pcb->refused_data); in tcp_shutdown()
534 pcb->refused_data = NULL; in tcp_shutdown()
1510 if (pcb->refused_data != NULL) { in tcp_fasttmr()
1549 while (pcb->refused_data != NULL) in tcp_process_refused_data()
1553 u8_t refused_flags = pcb->refused_data->flags; in tcp_process_refused_data()
1556 struct pbuf *refused_data = pcb->refused_data; in tcp_process_refused_data() local
1558 pbuf_split_64k(refused_data, &rest); in tcp_process_refused_data()
1559 pcb->refused_data = rest; in tcp_process_refused_data()
[all …]
Dtcp_in.c422 if (pcb->refused_data != NULL) {
424 ((pcb->refused_data != NULL) && (tcplen > 0))) {
486 LWIP_ASSERT("pcb->refused_data == NULL", pcb->refused_data == NULL);
518 pcb->refused_data = recv_data;
532 if (pcb->refused_data != NULL) {
534 pcb->refused_data->flags |= PBUF_FLAG_TCP_FIN;
/third_party/lwip/src/include/lwip/
Dtcp.h344 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member
/third_party/lwip/
DCHANGELOG1813 refusing 'refused_data' again.