From ceb05563e00813b8611e46bb9ffe895ccac86afa Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Wed, 26 Oct 2016 04:20:45 +0000 Subject: [PATCH] - minor changes, TODO, debug message --- src/cadet/gnunet-service-cadet_connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cadet/gnunet-service-cadet_connection.c b/src/cadet/gnunet-service-cadet_connection.c index 47e728ed0..6dbabb5ab 100644 --- a/src/cadet/gnunet-service-cadet_connection.c +++ b/src/cadet/gnunet-service-cadet_connection.c @@ -1321,7 +1321,7 @@ schedule_next_keepalive (struct CadetConnection *c, int fwd) c->create_retry = 1; delay = GNUNET_TIME_relative_multiply (create_connection_time, c->create_retry); - if (c->create_retry < 64) + if (c->create_retry < 64) // TODO make configurable c->create_retry *= 2; } @@ -1682,7 +1682,7 @@ does_connection_exist (struct CadetConnection *conn) GNUNET_STATISTICS_update (stats, "# duplicate connections", 1, GNUNET_NO); return GNUNET_YES; } - LOG (GNUNET_ERROR_TYPE_DEBUG, " duplicate not valid, connection unique\n"); + LOG (GNUNET_ERROR_TYPE_DEBUG, " duplicate not ready, connection unique\n"); return GNUNET_NO; } else -- 2.25.1