gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r13696 - gnunet/src/core


From: gnunet
Subject: [GNUnet-SVN] r13696 - gnunet/src/core
Date: Tue, 16 Nov 2010 16:35:05 +0100

Author: wachs
Date: 2010-11-16 16:35:05 +0100 (Tue, 16 Nov 2010)
New Revision: 13696

Modified:
   gnunet/src/core/test_core_quota_compliance.c
Log:


Modified: gnunet/src/core/test_core_quota_compliance.c
===================================================================
--- gnunet/src/core/test_core_quota_compliance.c        2010-11-16 15:21:20 UTC 
(rev 13695)
+++ gnunet/src/core/test_core_quota_compliance.c        2010-11-16 15:35:05 UTC 
(rev 13696)
@@ -36,6 +36,7 @@
 #include "gnunet_transport_service.h"
 
 #define VERBOSE GNUNET_YES
+#define DEBUG_TRANSMISSION GNUNET_NO
 
 #define START_ARM GNUNET_YES
 
@@ -122,7 +123,6 @@
   p1.th = NULL;
   GNUNET_TRANSPORT_disconnect (p2.th);
   p2.th = NULL;
-  ok = 0;
 }
 
 
@@ -157,7 +157,6 @@
 
   measure_task = GNUNET_SCHEDULER_NO_TASK;
   fprintf(stdout,"\n");
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "FINIIISH!\n");
   running = GNUNET_NO;
 
   delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value;
@@ -176,12 +175,18 @@
   else
          quota_delta = max_quota_out / 10;
 
-  if ((throughput < max_quota_out)&& (throughput < max_quota_in))
+  if ((throughput < (max_quota_out/1024)) && (throughput < 
(max_quota_in/1024)))
   {
-         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Throughput: %llu 
kb/s\n",throughput);
-         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. inbound quota allowed: %llu 
kb/s\n",max_quota_in/1024);
-         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. outbound quota allowed: 
%llu kb/s\n",max_quota_out/1024);
+         ok = 0;
   }
+  else
+  {
+         ok = 1;
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Throughput: %llu kb/s\n",throughput);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. inbound quota allowed: %llu 
kb/s\n",max_quota_in/1024);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. outbound quota allowed: %llu 
kb/s\n",max_quota_out/1024);
+
   GNUNET_SCHEDULER_cancel (err_task);
   GNUNET_SCHEDULER_add_now (&terminate_task, NULL);
 
@@ -216,7 +221,7 @@
   cbuf = buf;
   do
     {
-#if VERBOSE
+#if DEBUG_TRANSMISSION
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Sending message %u of size %u at offset %u\n",
                  tr_n,
@@ -241,9 +246,6 @@
                                  &terminate_task_error,
                                  NULL);
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Returning total message block of size %u\n",
-             ret);
   total_bytes += ret;
   return ret;
 }
@@ -261,12 +263,14 @@
   pc->connect_status = 1;
   if (pc == &p1)
     {
+#if DEBUG_TRANSMISSION
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Encrypted connection established to peer `%4s'\n",
                  GNUNET_i2s (peer));
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   "Asking core (1) for transmission to peer `%4s'\n",
                   GNUNET_i2s (&p2.id));
+#endif
       err_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
                                      &terminate_task_error,
                                      NULL);
@@ -290,8 +294,10 @@
 {
   struct PeerContext *pc = cls;
   pc->connect_status = 0;
+#if DEBUG_TRANSMISSION
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Encrypted connection to `%4s' cut\n", GNUNET_i2s (peer));
+#endif
 }
 
 
@@ -301,7 +307,7 @@
                 const struct GNUNET_MessageHeader *message,
                const struct GNUNET_TRANSPORT_ATS_Information *atsi)
 {
-#if VERBOSE
+#if DEBUG_TRANSMISSION
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Core provides inbound data from `%4s'.\n", GNUNET_i2s (other));
 #endif
@@ -315,7 +321,7 @@
                  const struct GNUNET_MessageHeader *message,
                 const struct GNUNET_TRANSPORT_ATS_Information *atsi)
 {
-#if VERBOSE
+#if DEBUG_TRANSMISSION
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Core notifies about outbound data for `%4s'.\n",
               GNUNET_i2s (other));
@@ -361,7 +367,7 @@
       err_task = GNUNET_SCHEDULER_add_now (&terminate_task_error, NULL);
       return GNUNET_SYSERR;
     }
-#if VERBOSE
+#if DEBUG_TRANSMISSION
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Got message %u of size %u\n",
              ntohl (hdr->num),
@@ -431,9 +437,11 @@
       GNUNET_assert (ok == 3);
       OKPP;
       GNUNET_assert (cls == &p2);
+#if DEBUG_TRANSMISSION
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   "Asking core (1) to connect to peer `%4s'\n",
                   GNUNET_i2s (&p2.id));
+#endif
       GNUNET_CORE_peer_request_connect (p1.ch,
                                        GNUNET_TIME_UNIT_SECONDS,
                                        &p2.id,
@@ -449,9 +457,12 @@
   struct PeerContext *p = cls;
 
   GNUNET_TRANSPORT_get_hello_cancel (p->th, &process_hello, p);
+
+#if DEBUG_TRANSMISSION
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Received (my) `%s' from transport service\n",
               "HELLO");
+#endif
   GNUNET_assert (message != NULL);
   p->hello = GNUNET_malloc (ntohs (message->size));
   memcpy (p->hello, message, ntohs (message->size));




reply via email to

[Prev in Thread] Current Thread [Next in Thread]