Home
last modified time | relevance | path

Searched refs:send_data_total (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dtcp.c1696 bool window_full = (conn->send_data_total >= conn->send_win); in tcp_window_full()
1699 window_full = window_full || (conn->send_data_total >= conn->ca.cwnd); in tcp_window_full()
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()
1825 if (conn->send_data_total) { in tcp_send_queued_data()
1891 if (conn->in_close && conn->send_data_total == 0) { in tcp_resend_data()
3141 if (conn->send_data_total > 0) { in tcp_in()
3175 NET_ASSERT((conn->send_data_total == 0) || in tcp_in()
3185 if ((conn->send_data_total < len_acked) || in tcp_in()
[all …]
Dtcp_private.h303 size_t send_data_total; member
/Zephyr-latest/subsys/net/lib/shell/
Dconn.c152 conn->send_win, conn->send_data_total, conn->unacked_len, in tcp_sent_list_cb()