gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 7e0c1c4306fd99d56320767809d67192a59f8ab9
parent d824ab7d898f20ac7bd047fad1e5d49494a31f60
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu,  8 Oct 2015 16:20:42 +0000

add constant for the delay after which we log warnings

Diffstat:
Msrc/include/gnunet_constants.h | 5+++++
Msrc/transport/transport_api.c | 6+++---
2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/src/include/gnunet_constants.h b/src/include/gnunet_constants.h @@ -72,6 +72,11 @@ extern "C" #define GNUNET_CONSTANTS_MAX_CORK_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1) /** + * After what amount of latency for a message do we print a warning? + */ +#define GNUNET_CONSTANTS_LATENCY_WARN GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1) + +/** * Until which load do we consider the peer overly idle * (which means that we would like to use more resources).<p> * diff --git a/src/transport/transport_api.c b/src/transport/transport_api.c @@ -976,7 +976,7 @@ transport_notify_ready (void *cls, size, &cbuf[ret]); delay = GNUNET_TIME_absolute_get_duration (th->request_start); - if (delay.rel_value_us > 1000 * 1000) + if (delay.rel_value_us > GNUNET_CONSTANTS_LATENCY_WARN.rel_value_us) LOG (GNUNET_ERROR_TYPE_WARNING, "Added %u bytes of control message at %u after %s delay\n", nret, @@ -1055,7 +1055,7 @@ transport_notify_ready (void *cls, GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker, mret); delay = GNUNET_TIME_absolute_get_duration (th->request_start); - if (delay.rel_value_us > 1000 * 1000) + if (delay.rel_value_us > GNUNET_CONSTANTS_LATENCY_WARN.rel_value_us) LOG (GNUNET_ERROR_TYPE_WARNING, "Added %u bytes of payload message for %s after %s delay at %u b/s\n", mret, @@ -2058,7 +2058,7 @@ GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle *handle, n->traffic_overhead = 0; if (delay.rel_value_us > timeout.rel_value_us) delay.rel_value_us = 0; /* notify immediately (with failure) */ - if (delay.rel_value_us > GNUNET_TIME_UNIT_SECONDS.rel_value_us) + if (delay.rel_value_us > GNUNET_CONSTANTS_LATENCY_WARN.rel_value_us) LOG (GNUNET_ERROR_TYPE_WARNING, "At bandwidth %u byte/s next transmission to %s in %s\n", (unsigned int) n->out_tracker.available_bytes_per_s__,