aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_local.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-11-21 18:13:12 +0000
committerBart Polot <bart@net.in.tum.de>2013-11-21 18:13:12 +0000
commit6bd6580bfd79a61d86977c8a39c993a087bfcf61 (patch)
treefc3c7e6a49f7654e1d9791c5f33c8d912320474f /src/mesh/gnunet-service-mesh_local.c
parent6e3b46790acf09e681f5aed8f9b28dee28b38380 (diff)
downloadgnunet-6bd6580bfd79a61d86977c8a39c993a087bfcf61.tar.gz
gnunet-6bd6580bfd79a61d86977c8a39c993a087bfcf61.zip
- log
Diffstat (limited to 'src/mesh/gnunet-service-mesh_local.c')
-rw-r--r--src/mesh/gnunet-service-mesh_local.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh_local.c b/src/mesh/gnunet-service-mesh_local.c
index bf018c56f..560289efc 100644
--- a/src/mesh/gnunet-service-mesh_local.c
+++ b/src/mesh/gnunet-service-mesh_local.c
@@ -429,6 +429,7 @@ handle_channel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
429 429
430 /* Retrieve tunnel */ 430 /* Retrieve tunnel */
431 chid = ntohl (msg->channel_id); 431 chid = ntohl (msg->channel_id);
432 LOG (GNUNET_ERROR_TYPE_DEBUG, " for channel %X\n", chid);
432 ch = GML_channel_get (c, chid); 433 ch = GML_channel_get (c, chid);
433 if (NULL == ch) 434 if (NULL == ch)
434 { 435 {
@@ -488,6 +489,7 @@ handle_data (void *cls, struct GNUNET_SERVER_Client *client,
488 489
489 /* Channel exists? */ 490 /* Channel exists? */
490 chid = ntohl (msg->id); 491 chid = ntohl (msg->id);
492 LOG (GNUNET_ERROR_TYPE_DEBUG, " on channel %X\n", chid);
491 fwd = chid < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV; 493 fwd = chid < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
492 ch = GML_channel_get (c, chid); 494 ch = GML_channel_get (c, chid);
493 if (NULL == ch) 495 if (NULL == ch)