aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-15 17:52:22 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-15 17:52:22 +0000
commit94f9525322031fb1dd0c68290745d7c1662c3b6a (patch)
treec82fb736400b2fcecc1cb2df42dbf38d08efbaf9
parent4fd6ddfbdb8c2de62ffad1abf1c8808ea897b1f9 (diff)
downloadgnunet-94f9525322031fb1dd0c68290745d7c1662c3b6a.tar.gz
gnunet-94f9525322031fb1dd0c68290745d7c1662c3b6a.zip
- don't discriminate against unreliable tunnels
-rw-r--r--src/mesh/gnunet-service-mesh.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 0610dcd33..a9da0c7e7 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -4065,6 +4065,10 @@ handle_mesh_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4065 tunnel_add_buffer_ucast (t, msg); 4065 tunnel_add_buffer_ucast (t, msg);
4066 } 4066 }
4067 } 4067 }
4068 else /* Tunnel unreliable, send to clients directly */
4069 {
4070 tunnel_send_client_ucast (t, msg);
4071 }
4068 } 4072 }
4069 else 4073 else
4070 { 4074 {