Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
H A Dtcp_out.c405 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; in tcp_write() local
492 /* @todo: this could be sped up by keeping last_unsent in the pcb */ in tcp_write()
493 for (last_unsent = pcb->unsent; last_unsent->next != NULL; in tcp_write()
494 last_unsent = last_unsent->next); in tcp_write()
497 unsent_optlen = LWIP_TCP_OPT_LENGTH_SEGMENT(last_unsent->flags, pcb); in tcp_write()
498 LWIP_ASSERT("mss_local is too small", mss_local >= last_unsent->len + unsent_optlen); in tcp_write()
499 space = mss_local - (last_unsent->len + unsent_optlen); in tcp_write()
510 /* check that pcb->unsent_oversize matches last_unsent in tcp_write()
1020 struct tcp_seg *last_unsent; tcp_send_fin() local
[all...]

Completed in 2 milliseconds