aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_connection.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-10-10 15:15:25 +0000
committerBart Polot <bart@net.in.tum.de>2013-10-10 15:15:25 +0000
commitf02bdf449974e76388e1fd5dff03f6c4e6bc39fd (patch)
treecaacc09300f6cabdaa8316a12bbd1c396cf51f04 /src/mesh/gnunet-service-mesh_connection.h
parentdd3a1c05284929dabcafab2a79c872b29d162e39 (diff)
downloadgnunet-f02bdf449974e76388e1fd5dff03f6c4e6bc39fd.tar.gz
gnunet-f02bdf449974e76388e1fd5dff03f6c4e6bc39fd.zip
- fixes
Diffstat (limited to 'src/mesh/gnunet-service-mesh_connection.h')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.h b/src/mesh/gnunet-service-mesh_connection.h
index fafe0a59b..0d70764c2 100644
--- a/src/mesh/gnunet-service-mesh_connection.h
+++ b/src/mesh/gnunet-service-mesh_connection.h
@@ -370,6 +370,17 @@ int
370GMC_is_terminal (struct MeshConnection *c, int fwd); 370GMC_is_terminal (struct MeshConnection *c, int fwd);
371 371
372/** 372/**
373 * See if we are allowed to send by the next hop in the given direction.
374 *
375 * @param c Connection.
376 * @param fwd Is this about fwd traffic?
377 *
378 * @return GNUNET_YES in case it's OK.
379 */
380int
381GMC_is_sendable (struct MeshConnection *c, int fwd);
382
383/**
373 * Sends an already built message on a connection, properly registering 384 * Sends an already built message on a connection, properly registering
374 * all used resources. 385 * all used resources.
375 * 386 *