Home
last modified time | relevance | path

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

/iperf/src/
H A Diperf_client_api.c524 int64_t rcv_timeout_us; in iperf_run_client() local
561rcv_timeout_us = (test->settings->rcv_timeout.secs * SEC_TO_US) + test->settings->rcv_timeout.usec… in iperf_run_client()
563 rcv_timeout_us = 0; in iperf_run_client()
573 if (test->state == TEST_RUNNING && rcv_timeout_us > 0) { in iperf_run_client()
580 if (timeout_us < 0 || timeout_us > rcv_timeout_us) { in iperf_run_client()
591 } else if (result == 0 && test->state == TEST_RUNNING && rcv_timeout_us > 0) { in iperf_run_client()
597 if (t_usecs > rcv_timeout_us) { in iperf_run_client()
606 if (rcv_timeout_us > 0) { in iperf_run_client()
H A Diperf_server_api.c446 int64_t rcv_timeout_us; in iperf_run_server() local
480rcv_timeout_us = (test->settings->rcv_timeout.secs * SEC_TO_US) + test->settings->rcv_timeout.usec… in iperf_run_server()
511 if (timeout_us < 0 || timeout_us > rcv_timeout_us) { in iperf_run_server()
548 else if (test->mode != SENDER && t_usecs > rcv_timeout_us) { in iperf_run_server()