aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gnunet-service-core.c')
-rw-r--r--src/core/gnunet-service-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c
index 34f8440ae..8f53072d9 100644
--- a/src/core/gnunet-service-core.c
+++ b/src/core/gnunet-service-core.c
@@ -804,7 +804,7 @@ GSC_CLIENTS_deliver_message (const struct GNUNET_PeerIdentity *sender,
804 being kept if we are just barely below the hard max, 804 being kept if we are just barely below the hard max,
805 and a 99% chance of being kept if we are at the soft max. 805 and a 99% chance of being kept if we are at the soft max.
806 The reason is to make it more likely to drop control traffic 806 The reason is to make it more likely to drop control traffic
807 (ACK, queries) which may be cummulative or highly redundant, 807 (ACK, queries) which may be cumulative or highly redundant,
808 and cheap to drop than data traffic. */qlen = GNUNET_MQ_get_length (c->mq); 808 and cheap to drop than data traffic. */qlen = GNUNET_MQ_get_length (c->mq);
809 if ((qlen >= HARD_MAX_QUEUE) || 809 if ((qlen >= HARD_MAX_QUEUE) ||
810 ((qlen > SOFT_MAX_QUEUE) && 810 ((qlen > SOFT_MAX_QUEUE) &&