aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-17 12:42:22 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-17 12:42:22 +0000
commitbba61c9d591ded8cef0daa1c33533c2cc47837e8 (patch)
tree575c6274d73f9ce5392b2bbfac25e404d07960b8 /src/mesh
parentd828caf8b755c80de990f0a7707b803e7048bc63 (diff)
downloadgnunet-bba61c9d591ded8cef0daa1c33533c2cc47837e8.tar.gz
gnunet-bba61c9d591ded8cef0daa1c33533c2cc47837e8.zip
- log event, not an error
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/gnunet-service-mesh.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 2f0885207..e00557f2f 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -4052,8 +4052,10 @@ handle_mesh_data (const struct GNUNET_PeerIdentity *peer,
4052 fc->last_pid_recv = pid; 4052 fc->last_pid_recv = pid;
4053 if (0 == hop) 4053 if (0 == hop)
4054 { 4054 {
4055 GNUNET_break (0); 4055 GNUNET_STATISTICS_update (stats, "# data on dying tunnel", 1, GNUNET_NO);
4056 return GNUNET_OK; 4056 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "data on dying tunnel %s[%X]\n",
4057 GNUNET_i2s(peer), ntohl (msg->tid));
4058 return GNUNET_OK; /* Next hop has destoyed the tunnel, drop */
4057 } 4059 }
4058 ttl = ntohl (msg->ttl); 4060 ttl = ntohl (msg->ttl);
4059 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ttl: %u\n", ttl); 4061 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ttl: %u\n", ttl);