From: Bart Polot Date: Fri, 7 Jun 2013 02:11:59 +0000 (+0000) Subject: - relay PATH_ACK to client X-Git-Tag: initial-import-from-subversion-38251~8819 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d93b355ee1bbf2ea004c4f0b40a6036a2b9365d3;p=oweals%2Fgnunet.git - relay PATH_ACK to client --- 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; }