From: Christian Grothoff Date: Fri, 27 Jan 2017 21:27:31 +0000 (+0100) Subject: also count messages dropped due to slow clients as allowable losses in unreliable... X-Git-Tag: taler-0.2.1~268 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=58beb5ec4ca0dae1e9adc8617c9d69e5b558b9cc;p=oweals%2Fgnunet.git also count messages dropped due to slow clients as allowable losses in unreliable mode --- diff --git a/src/cadet/gnunet-service-cadet-new_channel.c b/src/cadet/gnunet-service-cadet-new_channel.c index ebc566c83..8633e7f74 100644 --- a/src/cadet/gnunet-service-cadet-new_channel.c +++ b/src/cadet/gnunet-service-cadet-new_channel.c @@ -1242,6 +1242,13 @@ GCCH_handle_channel_plaintext_data (struct CadetChannel *ch, /* Yep, need to drop. Drop the oldest message in the buffer. */ + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Queue full due slow client on %s, dropping oldest message\n", + GCCH_2s (ch)); + GNUNET_STATISTICS_update (stats, + "# messages dropped due to slow client", + 1, + GNUNET_NO); drop = ccc->head_recv; GNUNET_CONTAINER_DLL_remove (ccc->head_recv, ccc->tail_recv, diff --git a/src/cadet/test_cadet.c b/src/cadet/test_cadet.c index 79d9423fd..9957d9021 100644 --- a/src/cadet/test_cadet.c +++ b/src/cadet/test_cadet.c @@ -395,7 +395,8 @@ stats_iterator (void *cls, { static const char *s_sent = "# keepalives sent"; static const char *s_recv = "# keepalives received"; - static const char *drops = "# messages dropped due to full buffer"; + static const char *rdrops = "# messages dropped due to full buffer"; + static const char *cdrops = "# messages dropped due to slow client"; uint32_t i; i = GNUNET_TESTBED_get_index (peer); @@ -409,7 +410,9 @@ stats_iterator (void *cls, ka_sent = value; if (0 == strncmp(s_recv, name, strlen (s_recv)) && peers_requested - 1 == i) ka_received = value; - if (0 == strncmp(drops, name, strlen (drops))) + if (0 == strncmp(rdrops, name, strlen (rdrops))) + msg_dropped += value; + if (0 == strncmp(cdrops, name, strlen (cdrops))) msg_dropped += value; return GNUNET_OK;