Searched refs:acked (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | tcp_input.c | 300 int todrop, acked, ourfinisacked, needoutput = 0; local 607 * free the data acked & wake any higher level process 656 acked = ti->ti_ack - tp->snd_una; 658 tcpstat.tcps_rcvackbyte += acked; 659 sbdrop(&so->so_snd, acked); 664 * If all outstanding data are acked, stop 877 * if SYN has been acked change to ESTABLISHED else SYN_RCVD state 878 * arrange for segment to be acked (eventually) 1334 acked = ti->ti_ack - tp->snd_una; 1336 tcpstat.tcps_rcvackbyte += acked; [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp_in.c | 395 if (pcb->acked > 0) { 396 TCP_EVENT_SENT(pcb, pcb->acked, err); 978 if (pcb->acked != 0) { 979 pcb->acked--; 1193 pcb->acked = 0; 1243 pcb->acked = (u16_t)(ackno - pcb->lastack); 1245 pcb->snd_buf += pcb->acked; 1290 if ((pcb->acked != 0) && ((TCPH_FLAGS(next->tcphdr) & TCP_FIN) != 0)) { 1291 pcb->acked--; 1321 pcb->acked [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | tcp_in.c | 288 if (pcb->acked > 0) { 289 TCP_EVENT_SENT(pcb, pcb->acked, err); 661 pcb->acked = 0; 717 pcb->acked = ackno - pcb->lastack; 719 pcb->snd_buf += pcb->acked; 776 strange since an "unsent" segment shouldn't be acked. The
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | tcp.h | 236 u16_t acked; member in struct:tcp_pcb
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | pxtcp.c | 194 * a pxtcp immediately if not all inbound data has been acked by 196 * inbuf::buf. We defer delete until all data are acked to 2020 * transition that lwip decrements pcb->acked so that that ACK 2203 * Check that all forwarded inbound data is sent and acked, and that 2204 * inbound close is scheduled (we aren't called back when it's acked). 2310 && unacked == pxtcp->inbuf.unsent) /* ... and is acked */ 2408 " pcb->acked %d;" 2411 pcb->acked, 2419 if (pcb->acked > 0) { 2420 pxtcp_pcb_sent(pxtcp, pcb, pcb->acked); [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | tcp.h | 275 u16_t acked; member in struct:tcp_pcb
|
Completed in 1714 milliseconds