From 24f629178d937d341de156313fa468ba6fce14bc Mon Sep 17 00:00:00 2001 From: tiptorrent development team Date: Sat, 18 Sep 2021 21:54:56 +0200 Subject: display download rate in Mbytes/seconds --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 793dfb6..c334049 100644 --- a/src/main.c +++ b/src/main.c @@ -439,9 +439,10 @@ int main(int argc, char *argv[]) if (_cli.state == TIP_CLIENT_DONE) { gettimeofday(&tv_stop, NULL); timersub(&tv_stop, &tv_start, &tv); - printf("Done in %lus.%lums. " + printf("Done in %lu.%06lu seconds (%lu Mbytes/second). " "Direct from server: %u Redirected: %u\n", tv.tv_sec, tv.tv_usec, + _cli.data_len / 1024000 / tv.tv_sec, tip_client_stats.direct_from_server, tip_client_stats.redirects); return EXIT_SUCCESS; -- cgit v1.2.3-18-g5258