/*
This file is part of GNUnet.
- Copyright (C) 2012-2017 GNUnet e.V.
+ Copyright (C) 2012-2019 GNUnet e.V.
GNUnet is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published
GNUNET_assert (NULL == ev->parent_queue);
mq->queue_length++;
- GNUNET_break (mq->queue_length < 10000); /* This would seem like a bug... */
+ if (mq->queue_length >= 10000)
+ {
+ /* This would seem like a bug... */
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "MQ with %u entries extended by message of type %u (FC broken?)\n",
+ (unsigned int) mq->queue_length,
+ (unsigned int) ntohs (ev->mh->type));
+ }
ev->parent_queue = mq;
/* is the implementation busy? queue it! */
if ( (NULL != mq->current_envelope) ||