From 917c43dd2d94e8f28670f69dc0d7d66b93ca72d4 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Mon, 9 Dec 2013 13:43:33 +0000 Subject: - fixed 3174: check reliable gap before allowing client to give more data --- src/mesh/gnunet-service-mesh_channel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh/gnunet-service-mesh_channel.c b/src/mesh/gnunet-service-mesh_channel.c index bcc2d1936..08f2fca48 100644 --- a/src/mesh/gnunet-service-mesh_channel.c +++ b/src/mesh/gnunet-service-mesh_channel.c @@ -1680,14 +1680,14 @@ GMCH_handle_local_data (struct MeshChannel *ch, if (is_loopback (ch)) { if (GMCH_get_buffer (ch, fwd) > 0) - send_client_ack (ch, fwd); + GMCH_allow_client (ch, fwd); return GNUNET_OK; } if (GMT_get_connections_buffer (ch->t) > 0) { - send_client_ack (ch, fwd); + GMCH_allow_client (ch, fwd); } return GNUNET_OK; -- cgit v1.2.3