aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-09-29 00:27:56 +0000
committerBart Polot <bart@net.in.tum.de>2012-09-29 00:27:56 +0000
commit482ab6952a4e4b45471d6fcb639d2b488b49b0d5 (patch)
tree51f6eaee86445a2700d6b3b00aab61d91c8915a8
parentd0113d38c7859a84adc8041671f828903db58d2c (diff)
downloadgnunet-482ab6952a4e4b45471d6fcb639d2b488b49b0d5.tar.gz
gnunet-482ab6952a4e4b45471d6fcb639d2b488b49b0d5.zip
- notify clients when a tunnel times out
-rw-r--r--src/mesh/gnunet-service-mesh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index ac519d20d..80a6b4ba1 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -4410,6 +4410,7 @@ tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4410 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 4410 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4411 "Tunnel %s [%X] timed out. Destroying.\n", 4411 "Tunnel %s [%X] timed out. Destroying.\n",
4412 GNUNET_i2s(&id), t->id.tid); 4412 GNUNET_i2s(&id), t->id.tid);
4413 send_clients_tunnel_destroy (t);
4413 tunnel_destroy (t); 4414 tunnel_destroy (t);
4414} 4415}
4415 4416