Searched refs:refused_data (Results 1 - 3 of 3) sorted by relevance

/seL4-camkes-master/projects/lwip/src/core/
H A Dtcp.c353 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND_MAX(pcb))) {
532 if (pcb->refused_data != NULL) {
533 pbuf_free(pcb->refused_data);
534 pcb->refused_data = NULL;
1509 if (pcb->refused_data != NULL) {
1537 /** Pass pcb->refused_data to the recv callback */
1548 while (pcb->refused_data != NULL)
1552 u8_t refused_flags = pcb->refused_data->flags;
1553 /* set pcb->refused_data to NULL in case the callback frees it and then
1555 struct pbuf *refused_data local
[all...]
H A 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;
/seL4-camkes-master/projects/lwip/src/include/lwip/
H A Dtcp.h344 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member in struct:tcp_pcb

Completed in 68 milliseconds