gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r30259 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r30259 - gnunet/src/mesh
Date: Thu, 17 Oct 2013 16:43:07 +0200

Author: bartpolot
Date: 2013-10-17 16:43:07 +0200 (Thu, 17 Oct 2013)
New Revision: 30259

Modified:
   gnunet/src/mesh/gnunet-service-mesh_tunnel.c
Log:
- debug


Modified: gnunet/src/mesh/gnunet-service-mesh_tunnel.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-10-17 14:41:13 UTC 
(rev 30258)
+++ gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-10-17 14:43:07 UTC 
(rev 30259)
@@ -600,11 +600,12 @@
 
   LOG (GNUNET_ERROR_TYPE_DEBUG,
               "GMT_send_queued_data on tunnel %s\n",
-              GMP_2s (t->peer));
+              GMT_2s (t));
   room = GMT_get_buffer (t, fwd);
   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer space: %u\n", room);
   for (tq = t->tq_head; NULL != tq && room > 0; tq = next)
   {
+    LOG (GNUNET_ERROR_TYPE_DEBUG, " data on channel %s\n", GMCH_2s (tq->ch));
     next = tq->next;
     room--;
     GNUNET_CONTAINER_DLL_remove (t->tq_head, t->tq_tail, tq);
@@ -613,6 +614,9 @@
 
     GNUNET_free (tq);
   }
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+       "GMT_send_queued_data end\n",
+       GMP_2s (t->peer));
 }
 
 




reply via email to

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