aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-14 14:59:21 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-14 14:59:21 +0000
commitdd0cb0a52289df80d378f2c518e5036c64aef7a0 (patch)
treea576743e30aa3a04075bacb07dd108c13c9982ea /src/transport/gnunet-service-transport_neighbours.h
parentb8fae42695546f532ed66fa75d525d1f65a90338 (diff)
downloadgnunet-dd0cb0a52289df80d378f2c518e5036c64aef7a0.tar.gz
gnunet-dd0cb0a52289df80d378f2c518e5036c64aef7a0.zip
stuff
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index d9b2fd6b4..14f223811 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -111,11 +111,14 @@ GST_neighbours_send (const struct GNUNET_PeerIdentity *target,
111 * 111 *
112 * @param sender sender of the message 112 * @param sender sender of the message
113 * @param size size of the message 113 * @param size size of the message
114 * @param do_forward set to GNUNET_YES if the message should be forwarded to clients
115 * GNUNET_NO if the neighbour is not connected or violates the quota
114 * @return how long to wait before reading more from this sender 116 * @return how long to wait before reading more from this sender
115 */ 117 */
116struct GNUNET_TIME_Relative 118struct GNUNET_TIME_Relative
117GST_neighbours_calculate_receive_delay (const struct GNUNET_PeerIdentity *sender, 119GST_neighbours_calculate_receive_delay (const struct GNUNET_PeerIdentity *sender,
118 ssize_t size); 120 ssize_t size,
121 int *do_forward);
119 122
120 123
121/** 124/**