add constant for the delay after which we log warnings
authorChristian Grothoff <christian@grothoff.org>
Thu, 8 Oct 2015 16:20:42 +0000 (16:20 +0000)
committerChristian Grothoff <christian@grothoff.org>
Thu, 8 Oct 2015 16:20:42 +0000 (16:20 +0000)
src/include/gnunet_constants.h
src/transport/transport_api.c

index 073130e6d97221a14907e21628132dd2d3c24d1d..b0a72c53a6d85135546f103984d459637efaa757 100644 (file)
@@ -71,6 +71,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>
index e3477f57c48eb6cd3261842b28cf2c13bff7db9b..47bdef88ed89208a4995964b20ef5a08a8b8569d 100644 (file)
@@ -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__,