aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-11 14:48:28 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-11 14:48:28 +0000
commit6e77f41b366cb4dcd83722500f87ed0b914bd882 (patch)
tree1c123fdb65b6ff3d2757538c068469c63d73a42c
parent73e51ecfd8c30f6b7f103ebd60dfc800ab5d6717 (diff)
downloadgnunet-6e77f41b366cb4dcd83722500f87ed0b914bd882.tar.gz
gnunet-6e77f41b366cb4dcd83722500f87ed0b914bd882.zip
- fixed weird 'feature'
-rw-r--r--src/mesh/gnunet-service-mesh.c7
1 files 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)
2204 } 2204 }
2205 break; 2205 break;
2206 case GNUNET_MESSAGE_TYPE_MESH_ACK: 2206 case GNUNET_MESSAGE_TYPE_MESH_ACK:
2207 if (NULL != t->client && GNUNET_YES == t->reliable) 2207 /* Why was this here?!
2208 return; 2208 * This prevents the destination from starting traffic to the origin
2209 */
2210// if (NULL != t->client && GNUNET_YES == t->reliable)
2211// return;
2209 case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK: 2212 case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
2210 break; 2213 break;
2211 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK: 2214 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK: