aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-22 16:03:07 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-22 16:03:07 +0000
commit82c9fdd6e78219478d4198c18427ef43bb5cc59a (patch)
tree581fd1a4cbc0bc16061188d7dcec74106dc9a59a /src/mesh
parent81eb2c6cda38808bc2440da6ca45e6bea3716c5f (diff)
downloadgnunet-82c9fdd6e78219478d4198c18427ef43bb5cc59a.tar.gz
gnunet-82c9fdd6e78219478d4198c18427ef43bb5cc59a.zip
- try to work if both RELIABLE and NOBUFFER options are selected
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/gnunet-service-mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index a0726bf2f..4881515c9 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -2444,7 +2444,7 @@ tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd)
2444 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 2444 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2445 "ACK due to %s\n", 2445 "ACK due to %s\n",
2446 GNUNET_MESH_DEBUG_M2S (type)); 2446 GNUNET_MESH_DEBUG_M2S (type));
2447 if (GNUNET_YES == t->nobuffer) 2447 if (GNUNET_YES == t->nobuffer && (GNUNET_NO == t->reliable || NULL == c))
2448 { 2448 {
2449 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n"); 2449 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
2450 return; 2450 return;