| 252 | } |
| 253 | |
| 254 | static void |
| 255 | client_omit_timer_proc(TimerClientData client_data, struct iperf_time *nowP) |
| 256 | { |
| 257 | struct iperf_test *test = client_data.p; |
| 258 | |
| 259 | test->omit_timer = NULL; |
| 260 | test->omitting = 0; |
| 261 | iperf_reset_stats(test); |
| 262 | if (test->verbose && !test->json_output && test->reporter_interval == 0) |
| 263 | iperf_printf(test, "%s", report_omit_done); |
| 264 | |
| 265 | /* Reset the timers. */ |
| 266 | if (test->stats_timer != NULL) |
| 267 | tmr_reset(nowP, test->stats_timer); |
| 268 | if (test->reporter_timer != NULL) |
| 269 | tmr_reset(nowP, test->reporter_timer); |
| 270 | } |
| 271 | |
| 272 | static int |
| 273 | create_client_omit_timer(struct iperf_test * test) |
nothing calls this directly
no test coverage detected
searching dependent graphs…