aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-09-16 16:59:12 +0000
committerChristian Grothoff <christian@grothoff.org>2011-09-16 16:59:12 +0000
commitb299dbba72905f0d4e2def25d59784cdf80641f0 (patch)
tree4fa3ff9e4ff024e7fa0c8da93a73ba5351a35433 /src/mesh
parent793231d4c6cc3db8f15f5cd6972520855d4b20f2 (diff)
downloadgnunet-b299dbba72905f0d4e2def25d59784cdf80641f0.tar.gz
gnunet-b299dbba72905f0d4e2def25d59784cdf80641f0.zip
c3267
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/mesh_api_new.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesh/mesh_api_new.c b/src/mesh/mesh_api_new.c
index 4158e9197..0fe990eee 100644
--- a/src/mesh/mesh_api_new.c
+++ b/src/mesh/mesh_api_new.c
@@ -907,14 +907,14 @@ msg_received (void *cls, const struct GNUNET_MessageHeader *msg)
907{ 907{
908 struct GNUNET_MESH_Handle *h = cls; 908 struct GNUNET_MESH_Handle *h = cls;
909 909
910 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
911 "mesh: received a message type %hu from MESH\n",
912 ntohs (msg->type));
913 if (msg == NULL) 910 if (msg == NULL)
914 { 911 {
915 reconnect (h); 912 reconnect (h);
916 return; 913 return;
917 } 914 }
915 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
916 "mesh: received a message type %hu from MESH\n",
917 ntohs (msg->type));
918 switch (ntohs (msg->type)) 918 switch (ntohs (msg->type))
919 { 919 {
920 /* Notify of a new incoming tunnel */ 920 /* Notify of a new incoming tunnel */