Fix bug #64637 ("iperf -n 1000 -r" does not work)

This commit is contained in:
Simon Goldschmidt 2023-09-27 21:01:52 +02:00
parent 4e6dd9c576
commit 3792075baf

View File

@ -302,7 +302,7 @@ lwiperf_tcp_client_send_more(lwiperf_state_tcp_t *conn)
/* this session is byte-limited */
u32_t amount_bytes = lwip_htonl(conn->settings.amount);
/* @todo: this can send up to 1*MSS more than requested... */
if (amount_bytes >= conn->bytes_transferred) {
if (conn->bytes_transferred >= amount_bytes) {
/* all requested bytes transferred -> close the connection */
lwiperf_tcp_close(conn, LWIPERF_TCP_DONE_CLIENT);
return ERR_OK;