Searched defs:last_unsent (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp_out.c132 struct tcp_seg *last_unsent; local
133 for (last_unsent = pcb->unsent; last_unsent->next != NULL;
134 last_unsent = last_unsent->next);
136 if ((TCPH_FLAGS(last_unsent->tcphdr) & (TCP_SYN | TCP_FIN | TCP_RST)) == 0) {
138 TCPH_SET_FLAG(last_unsent->tcphdr, TCP_FIN);
360 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; local
429 /* @todo: this could be sped up by keeping last_unsent in the pcb */
430 for (last_unsent
[all...]

Completed in 45 milliseconds