From 1026c03fbcf8b02f80e698e80665523cfd5e8f2f Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Mon, 21 Jul 2014 00:15:16 +0000 Subject: [PATCH] - show queued messages when allowing client to send more --- src/cadet/gnunet-service-cadet_channel.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cadet/gnunet-service-cadet_channel.c b/src/cadet/gnunet-service-cadet_channel.c index 59dff0335..f1c1f05e1 100644 --- a/src/cadet/gnunet-service-cadet_channel.c +++ b/src/cadet/gnunet-service-cadet_channel.c @@ -1583,8 +1583,15 @@ GCCH_allow_client (struct CadetChannel *ch, int fwd) return; } else + { LOG (GNUNET_ERROR_TYPE_DEBUG, " gap ok: %u - %u\n", rel->head_sent->mid, rel->mid_send); + struct CadetReliableMessage *aux; + for (aux = rel->head_sent; NULL != aux; aux = aux->next) + { + LOG (GNUNET_ERROR_TYPE_DEBUG, " - sent MID %u\n", aux->mid); + } + } } else { -- 2.25.1