| 2897 | } |
| 2898 | |
| 2899 | static void |
| 2900 | start_timer(ClientData client_data __attribute__((unused)), struct timeval *nowP __attribute__((unused))) |
| 2901 | { |
| 2902 | start_connection(nowP); |
| 2903 | if (do_jitter) |
| 2904 | (void)tmr_create(nowP, start_timer, JunkClientData, (long)(random() % range_interval) + low_interval, 0); |
| 2905 | } |
| 2906 | |
| 2907 | static void |
| 2908 | end_timer(ClientData client_data __attribute__((unused)), struct timeval *nowP __attribute__((unused))) |
nothing calls this directly
no test coverage detected