From: Schanzenbach, Martin Date: Mon, 30 Dec 2019 15:14:27 +0000 (+0900) Subject: more accurate calculation X-Git-Tag: v0.12.2~44 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b82fedab2505eccef3161d225473a5c75dd012cd;p=oweals%2Fgnunet.git more accurate calculation --- diff --git a/src/transport/test_communicator_basic.c b/src/transport/test_communicator_basic.c index e11fb09eb..0d6df751a 100644 --- a/src/transport/test_communicator_basic.c +++ b/src/transport/test_communicator_basic.c @@ -366,12 +366,8 @@ incoming_message_cb (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "Short size packet test done.\n"); char *goodput = GNUNET_STRINGS_byte_size_fancy ((SHORT_MESSAGE_SIZE - * num_received) - / (GNUNET_MAX (1, - duration. - rel_value_us - / (1000 - * 1000)))); + * num_received * 1000 * 1000) + / duration.rel_value_us); GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu us\n", (unsigned long) num_received, @@ -406,12 +402,8 @@ incoming_message_cb (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "Long size packet test done.\n"); char *goodput = GNUNET_STRINGS_byte_size_fancy ((LONG_MESSAGE_SIZE - * num_received) - / (GNUNET_MAX (1, - duration. - rel_value_us - / (1000 - * 1000)))); + * num_received * 1000 * 1000) + / duration.rel_value_us); GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu us\n",