From 6e77f41b366cb4dcd83722500f87ed0b914bd882 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Thu, 11 Jul 2013 14:48:28 +0000 Subject: [PATCH] - fixed weird 'feature' --- src/mesh/gnunet-service-mesh.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c index dfb018b45..3a248ab79 100644 --- a/src/mesh/gnunet-service-mesh.c +++ b/src/mesh/gnunet-service-mesh.c @@ -2204,8 +2204,11 @@ tunnel_send_bck_ack (struct MeshTunnel *t, uint16_t type) } break; case GNUNET_MESSAGE_TYPE_MESH_ACK: - if (NULL != t->client && GNUNET_YES == t->reliable) - return; + /* Why was this here?! + * This prevents the destination from starting traffic to the origin + */ +// if (NULL != t->client && GNUNET_YES == t->reliable) +// return; case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK: break; case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK: -- 2.25.1