From 48da60d88330e806469010423b6aab038e56b52b Mon Sep 17 00:00:00 2001 From: tiptorrent development team Date: Wed, 29 Sep 2021 17:46:11 +0200 Subject: display progress message every 30 seconds to avoid bloating the logs --- src/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8e8819f..fef2447 100644 --- a/src/main.c +++ b/src/main.c @@ -100,13 +100,16 @@ static void tip_client_error(struct tip_client *cli) tip_client_close(cli); } +/* display progress message every 30 seconds. */ +#define TIP_CLIENT_PROGRESS 30 + static void tip_client_progress(struct tip_client *cli, bool now) { struct timeval tv_cur, tv; gettimeofday(&tv_cur, NULL); timersub(&tv_cur, &cli->tv_last, &tv); - if (now || tv.tv_sec >= 1) { + if (now || tv.tv_sec >= TIP_CLIENT_PROGRESS) { timersub(&tv_cur, &cli->tv_start, &tv); printf("%3lu%% (%lu Mbytes/second) %s from %s:9999\n", cli->content_len > 0 ? 100 * cli->data_len / cli->content_len : 0, -- cgit v1.2.3-18-g5258