gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r31410 - gnunet/src/mesh
Date: Mon, 16 Dec 2013 14:43:05 +0100

Author: bartpolot
Date: 2013-12-16 14:43:05 +0100 (Mon, 16 Dec 2013)
New Revision: 31410

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


Modified: gnunet/src/mesh/gnunet-service-mesh_connection.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_connection.c    2013-12-16 13:33:12 UTC 
(rev 31409)
+++ gnunet/src/mesh/gnunet-service-mesh_connection.c    2013-12-16 13:43:05 UTC 
(rev 31410)
@@ -1742,7 +1742,7 @@
   type = ntohs (msg->header.type);
   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
-              GM_m2s (type), GNUNET_i2s (peer));
+       GM_m2s (type), GNUNET_i2s (peer));
 
   /* Check connection */
   c = connection_get (&msg->cid);
@@ -1752,6 +1752,7 @@
     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING connection unknown\n");
     return GNUNET_OK;
   }
+  LOG (GNUNET_ERROR_TYPE_DEBUG, " on connection %s\n", GMC_2s (c));
 
   /* Check if origin is as expected */
   neighbor = get_prev_hop (c);

Modified: gnunet/src/mesh/gnunet-service-mesh_tunnel.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-12-16 13:33:12 UTC 
(rev 31409)
+++ gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-12-16 13:43:05 UTC 
(rev 31410)
@@ -871,6 +871,8 @@
   if (NULL == t->connection_head)
   {
     GNUNET_break (MESH_TUNNEL3_SEARCHING == t->cstate);
+    LOG (GNUNET_ERROR_TYPE_DEBUG, " tunnel %s connection state %s\n",
+         GMT_2s (t), cstate2s (t->cstate));
     return;
   }
 




reply via email to

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