Searched refs:unacked_len (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/subsys/net/ip/ |
D | tcp.c | 466 conn->ca.ssthresh = MAX(conn_mss(conn) * 2, conn->unacked_len / 2); in tcp_new_reno_fast_retransmit() 469 conn->ca.pending_fast_retransmit_bytes = conn->unacked_len; in tcp_new_reno_fast_retransmit() 476 conn->ca.ssthresh = MAX(conn_mss(conn) * 2, conn->unacked_len / 2); in tcp_new_reno_timeout() 1713 if (conn->unacked_len > conn->send_data_total) { in tcp_unsent_len() 1715 conn->send_data_total, conn->unacked_len); in tcp_unsent_len() 1720 unsent_len = conn->send_data_total - conn->unacked_len; in tcp_unsent_len() 1721 if (conn->unacked_len >= conn->send_win) { in tcp_unsent_len() 1724 unsent_len = MIN(unsent_len, conn->send_win - conn->unacked_len); in tcp_unsent_len() 1727 if (conn->unacked_len >= conn->ca.cwnd) { in tcp_unsent_len() 1730 unsent_len = MIN(unsent_len, conn->ca.cwnd - conn->unacked_len); in tcp_unsent_len() [all …]
|
D | tcp_private.h | 151 _conn->unacked_len, _conn->send_win, \ 305 int unacked_len; member
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | conn.c | 152 conn->send_win, conn->send_data_total, conn->unacked_len, in tcp_sent_list_cb()
|
/Zephyr-latest/doc/releases/ |
D | release-notes-2.7.rst | 706 * Fixed a bug, where ``unacked_len`` could be set to a negative value. 1630 * :github:`36390` - net: ip: Negative TCP unacked_len value
|