Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp_out.c393 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; in tcp_write() local
481 for (last_unsent = pcb->unsent; last_unsent->next != NULL; in tcp_write()
482 last_unsent = last_unsent->next); in tcp_write()
485 unsent_optlen = LWIP_TCP_OPT_LENGTH_SEGMENT(last_unsent->flags, pcb); in tcp_write()
486 LWIP_ASSERT("mss_local is too small", mss_local >= last_unsent->len + unsent_optlen); in tcp_write()
487 space = mss_local - (last_unsent->len + unsent_optlen); in tcp_write()
500 pcb->unsent_oversize == last_unsent->oversize_left); in tcp_write()
505 seg = last_unsent; in tcp_write()
531 if ((pos < len) && (space > 0) && (last_unsent->len > 0)) { in tcp_write()
533 seg = last_unsent; in tcp_write()
[all …]
/third_party/lwip/
DCHANGELOG337 * tcp_out.c: Fixed bug #50090 (last_unsent->oversize_left can become wrong value