gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 564d7a1387b563912bd928b495d42d0448aebf88
parent 9046d2649944100138413c3d416cf09afdc5c8d3
Author: Bart Polot <bart@net.in.tum.de>
Date:   Tue, 24 Jun 2014 23:29:50 +0000

- debug info for #3425

Diffstat:
Msrc/cadet/gnunet-service-cadet_tunnel.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/cadet/gnunet-service-cadet_tunnel.c b/src/cadet/gnunet-service-cadet_tunnel.c @@ -2476,9 +2476,10 @@ GCT_destroy_empty (struct CadetTunnel *t) if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task) { - LOG (GNUNET_ERROR_TYPE_DEBUG, - "Tunnel %s is already scheduled for destruction\n", + LOG (GNUNET_ERROR_TYPE_WARNING, + "Tunnel %s is already scheduled for destruction. Tunnel debug dump:\n", GCT_2s (t)); + GCT_debug (t, GNUNET_ERROR_TYPE_WARNING); GNUNET_break (0); /* should never happen, tunnel can only become empty once, and the * task identifier should be NO_TASK (cleaned when the tunnel was created @@ -2490,6 +2491,7 @@ GCT_destroy_empty (struct CadetTunnel *t) LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s empty: destroying scheduled\n", GCT_2s (t)); + // FIXME make delay a config option t->destroy_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, &delayed_destroy, t); LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled destroy of %p as %llX\n",