aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index 92827f76b..ab088f88f 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -84,12 +84,12 @@ struct GSF_PendingRequestData
84 /** 84 /**
85 * Primary query hash for this request. 85 * Primary query hash for this request.
86 */ 86 */
87 GNUNET_HashCode query; 87 struct GNUNET_HashCode query;
88 88
89 /** 89 /**
90 * Namespace to query, only set if the type is SBLOCK. 90 * Namespace to query, only set if the type is SBLOCK.
91 */ 91 */
92 GNUNET_HashCode namespace; 92 struct GNUNET_HashCode namespace;
93 93
94 /** 94 /**
95 * Identity of a peer hosting the content, only set if 95 * Identity of a peer hosting the content, only set if
@@ -220,15 +220,15 @@ typedef void (*GSF_PendingRequestReplyHandler) (void *cls,
220struct GSF_PendingRequest * 220struct GSF_PendingRequest *
221GSF_pending_request_create_ (enum GSF_PendingRequestOptions options, 221GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
222 enum GNUNET_BLOCK_Type type, 222 enum GNUNET_BLOCK_Type type,
223 const GNUNET_HashCode * query, 223 const struct GNUNET_HashCode * query,
224 const GNUNET_HashCode * namespace, 224 const struct GNUNET_HashCode * namespace,
225 const struct GNUNET_PeerIdentity *target, 225 const struct GNUNET_PeerIdentity *target,
226 const char *bf_data, size_t bf_size, 226 const char *bf_data, size_t bf_size,
227 uint32_t mingle, uint32_t anonymity_level, 227 uint32_t mingle, uint32_t anonymity_level,
228 uint32_t priority, int32_t ttl, 228 uint32_t priority, int32_t ttl,
229 GNUNET_PEER_Id sender_pid, 229 GNUNET_PEER_Id sender_pid,
230 GNUNET_PEER_Id origin_pid, 230 GNUNET_PEER_Id origin_pid,
231 const GNUNET_HashCode * replies_seen, 231 const struct GNUNET_HashCode * replies_seen,
232 unsigned int replies_seen_count, 232 unsigned int replies_seen_count,
233 GSF_PendingRequestReplyHandler rh, void *rh_cls); 233 GSF_PendingRequestReplyHandler rh, void *rh_cls);
234 234
@@ -243,7 +243,7 @@ GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
243 */ 243 */
244void 244void
245GSF_pending_request_update_ (struct GSF_PendingRequest *pr, 245GSF_pending_request_update_ (struct GSF_PendingRequest *pr,
246 const GNUNET_HashCode * replies_seen, 246 const struct GNUNET_HashCode * replies_seen,
247 unsigned int replies_seen_count); 247 unsigned int replies_seen_count);
248 248
249 249
@@ -305,7 +305,7 @@ GSF_pending_request_cancel_ (struct GSF_PendingRequest *pr, int full_cleanup);
305 * @return GNUNET_YES to continue to iterate 305 * @return GNUNET_YES to continue to iterate
306 */ 306 */
307typedef int (*GSF_PendingRequestIterator) (void *cls, 307typedef int (*GSF_PendingRequestIterator) (void *cls,
308 const GNUNET_HashCode * key, 308 const struct GNUNET_HashCode * key,
309 struct GSF_PendingRequest * pr); 309 struct GSF_PendingRequest * pr);
310 310
311 311