From 7876657482d482dd27ec8e30bd32697347e7cf15 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Tue, 9 Jul 2013 23:46:07 +0000 Subject: [PATCH] - don't reject future traffic, related to bug #2934 --- src/mesh/mesh_api.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesh/mesh_api.c b/src/mesh/mesh_api.c index 36ddbf022..0b44eabdc 100644 --- a/src/mesh/mesh_api.c +++ b/src/mesh/mesh_api.c @@ -944,11 +944,10 @@ process_incoming_data (struct GNUNET_MESH_Handle *h, GMC_is_pid_bigger(pid, t->last_ack_sent)) { GNUNET_break (0); - LOG (GNUNET_ERROR_TYPE_WARNING, + LOG (GNUNET_ERROR_TYPE_DEBUG, " unauthorized message! (%u, ACK %u)\n", pid, t->last_ack_sent); // FIXME fc what now? accept? reject? - return; } t->last_pid_recv = pid; type = ntohs (payload->type); -- 2.25.1