aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-09 19:07:13 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-09 19:07:13 +0000
commit073c4a9ae448041fdc9a0683fed49d55ae61803e (patch)
tree9bf2bacde4723ea25f70a0cdb324a1d76be763de /src/fs/gnunet-service-fs_pr.h
parentfafacaa77732d1dadcfcb10e4901dda76840a76d (diff)
downloadgnunet-073c4a9ae448041fdc9a0683fed49d55ae61803e.tar.gz
gnunet-073c4a9ae448041fdc9a0683fed49d55ae61803e.zip
hxing
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index 4af4f36ee..b59cbc541 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -178,6 +178,8 @@ typedef void (*GSF_PendingRequestReplyHandler)(void *cls,
178 * @param anonymity_level desired anonymity level 178 * @param anonymity_level desired anonymity level
179 * @param priority maximum outgoing cummulative request priority to use 179 * @param priority maximum outgoing cummulative request priority to use
180 * @param ttl current time-to-live for the request 180 * @param ttl current time-to-live for the request
181 * @param sender_pid peer ID to use for the sender when forwarding, 0 for none;
182 * reference counter is taken over by this function
181 * @param replies_seen hash codes of known local replies 183 * @param replies_seen hash codes of known local replies
182 * @param replies_seen_count size of the 'replies_seen' array 184 * @param replies_seen_count size of the 'replies_seen' array
183 * @param rh handle to call when we get a reply 185 * @param rh handle to call when we get a reply
@@ -196,6 +198,7 @@ GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
196 uint32_t anonymity_level, 198 uint32_t anonymity_level,
197 uint32_t priority, 199 uint32_t priority,
198 int32_t ttl, 200 int32_t ttl,
201 GNUNET_PEER_Id sender_pid,
199 const GNUNET_HashCode *replies_seen, 202 const GNUNET_HashCode *replies_seen,
200 unsigned int replies_seen_count, 203 unsigned int replies_seen_count,
201 GSF_PendingRequestReplyHandler rh, 204 GSF_PendingRequestReplyHandler rh,
@@ -327,7 +330,7 @@ GSF_handle_dht_reply_ (void *cls,
327 * @param cfg configuration to use 330 * @param cfg configuration to use
328 */ 331 */
329void 332void
330GSF_pending_request_init_ (struct GNUNET_CONFIGURATION_Handle *cfg); 333GSF_pending_request_init_ (void);
331 334
332 335
333/** 336/**