From d93b355ee1bbf2ea004c4f0b40a6036a2b9365d3 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Fri, 7 Jun 2013 02:11:59 +0000 Subject: [PATCH] - relay PATH_ACK to client --- src/mesh/gnunet-service-mesh-new.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesh/gnunet-service-mesh-new.c b/src/mesh/gnunet-service-mesh-new.c index 351af1422..dbd8af0df 100644 --- a/src/mesh/gnunet-service-mesh-new.c +++ b/src/mesh/gnunet-service-mesh-new.c @@ -1965,6 +1965,7 @@ tunnel_send_fwd_ack (struct MeshTunnel *t, uint16_t type) case GNUNET_MESSAGE_TYPE_MESH_ACK: case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK: break; + case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK: case GNUNET_MESSAGE_TYPE_MESH_POLL: t->force_ack = GNUNET_YES; break; @@ -3176,6 +3177,7 @@ handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer, peer_info->dhtget = NULL; } tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK); + tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK); return GNUNET_OK; } -- 2.25.1