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

/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dtcp.c268 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND_MAX(pcb))) {
434 if (pcb->refused_data != NULL) {
435 pbuf_free(pcb->refused_data);
436 pcb->refused_data = NULL;
1276 if (pcb->refused_data != NULL) {
1304 /** Pass pcb->refused_data to the recv callback */
1310 while (pcb->refused_data != NULL)
1314 u8_t refused_flags = pcb->refused_data->flags;
1315 /* set pcb->refused_data to NULL in case the callback frees it and then
1317 struct pbuf *refused_data local
[all...]
H A Dtcp_in.c354 if (pcb->refused_data != NULL) {
356 ((pcb->refused_data != NULL) && (tcplen > 0))) {
428 LWIP_ASSERT("pcb->refused_data == NULL", pcb->refused_data == NULL);
460 pcb->refused_data = recv_data;
474 if (pcb->refused_data != NULL) {
476 pcb->refused_data->flags |= PBUF_FLAG_TCP_FIN;
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dtcp.c795 if (pcb->refused_data != NULL) {
801 TCP_EVENT_RECV(pcb, pcb->refused_data, ERR_OK, err);
803 pcb->refused_data = NULL;
1181 if (pcb->refused_data != NULL) {
1183 ("tcp_pcb_purge: data left on ->refused_data\n"));
1184 pbuf_free(pcb->refused_data);
1185 pcb->refused_data = NULL;
H A Dtcp_in.c295 if (pcb->refused_data != NULL) {
298 TCP_EVENT_RECV(pcb, pcb->refused_data, ERR_OK, err);
300 pcb->refused_data = NULL;
350 pcb->refused_data = recv_data;
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dtcp.h287 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member in struct:tcp_pcb
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dtcp.h360 struct pbuf *refused_data; /* Data previously received but not yet taken by upper layer */ member in struct:tcp_pcb

Completed in 110 milliseconds