- doc
authorBart Polot <bart@net.in.tum.de>
Mon, 15 Jul 2013 11:29:50 +0000 (11:29 +0000)
committerBart Polot <bart@net.in.tum.de>
Mon, 15 Jul 2013 11:29:50 +0000 (11:29 +0000)
src/include/gnunet_mesh_service.h
src/mesh/mesh_api.c

index 48c71ed637e8fabaf0e8bafd50d750178be535b2..378d40ba0734b2e7399f9d3a4b7f00412ff5f5a5 100644 (file)
@@ -241,10 +241,6 @@ struct MeshTunnelInfo {
 
 /**
  * Get information about a tunnel.
- * 
- * The existing end callback for the tunnel will be called immediately.
- * Any pending outgoing messages will be sent but no incoming messages will be
- * accepted and no data callbacks will be called.
  *
  * @param tunnel Tunnel handle.
  * 
index 186961e6cac73e907ce4cfa821f1c703fbf6dbf3..7547616ed3a05cb5e628e7e7c69da02779b1980c 100644 (file)
@@ -1479,10 +1479,6 @@ GNUNET_MESH_tunnel_destroy (struct GNUNET_MESH_Tunnel *tunnel)
 
 /**
  * Get information about a tunnel.
- * 
- * The existing end callback for the tunnel will be called immediately.
- * Any pending outgoing messages will be sent but no incoming messages will be
- * accepted and no data callbacks will be called.
  *
  * @param tunnel Tunnel handle.
  * 
@@ -1495,7 +1491,7 @@ GNUNET_MESH_tunnel_get_info (struct GNUNET_MESH_Tunnel *tunnel)
 
   ret = GNUNET_malloc (sizeof (struct MeshTunnelInfo) * 3);
   ret[0].prop = GNUNET_MESH_OPTION_NOBUFFER;
-  ret[0].value = &tunnel->buffering; // FIXME return ¬buffering ("nobuffer")
+  ret[0].value = &tunnel->buffering; // FIXME use "nobuffer"
   ret[1].prop = GNUNET_MESH_OPTION_RELIABLE;
   ret[1].value = &tunnel->reliable;
   ret[2].prop = 0;