From: Christian Grothoff Date: Sun, 18 Oct 2015 19:35:14 +0000 (+0000) Subject: -log ACK delay vs. last frag transmit X-Git-Tag: initial-import-from-subversion-38251~1232 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6ef954d076ce02e91eac5e898ca867e59e8c9e15;p=oweals%2Fgnunet.git -log ACK delay vs. last frag transmit --- diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c index 814064e48..0bcfcb46b 100644 --- a/src/transport/plugin_transport_udp.c +++ b/src/transport/plugin_transport_udp.c @@ -1694,16 +1694,18 @@ fragmented_message_done (struct UDP_FragmentationContext *frag_ctx, if (delay.rel_value_us > GNUNET_CONSTANTS_LATENCY_WARN.rel_value_us) { LOG (GNUNET_ERROR_TYPE_WARNING, - "Fragmented message acknowledged after %s\n", + "Fragmented message acknowledged after %s (expected at %s)\n", GNUNET_STRINGS_relative_time_to_string (delay, - GNUNET_YES)); + GNUNET_YES), + GNUNET_STRINGS_absolute_time_to_string (frag_ctx->next_frag_time)); } else { LOG (GNUNET_ERROR_TYPE_DEBUG, - "Fragmented message acknowledged after %s\n", + "Fragmented message acknowledged after %s (expected at %s)\n", GNUNET_STRINGS_relative_time_to_string (delay, - GNUNET_YES)); + GNUNET_YES), + GNUNET_STRINGS_absolute_time_to_string (frag_ctx->next_frag_time)); } if (NULL != frag_ctx->cont)