aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-25 11:02:34 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-25 11:02:34 +0000
commitd0b14419851f070e0e6d2ab646e6fc0f4baa08c8 (patch)
tree08b04da9685e21d78c0fac672fb682729ea3f4b4 /src/fs/gnunet-service-fs_pr.h
parent8d9a9ab3714c070341acc2956c55bd039fcf9eaa (diff)
downloadgnunet-d0b14419851f070e0e6d2ab646e6fc0f4baa08c8.tar.gz
gnunet-d0b14419851f070e0e6d2ab646e6fc0f4baa08c8.zip
fix
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index ea464e578..b546fc1ab 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -160,12 +160,14 @@ struct GSF_PendingRequestData
160 * @param cls user-specified closure 160 * @param cls user-specified closure
161 * @param pr handle to the original pending request 161 * @param pr handle to the original pending request
162 * @param expiration when does 'data' expire? 162 * @param expiration when does 'data' expire?
163 * @param type type of the block
163 * @param data response data, NULL on request expiration 164 * @param data response data, NULL on request expiration
164 * @param data_len number of bytes in data 165 * @param data_len number of bytes in data
165 */ 166 */
166typedef void (*GSF_PendingRequestReplyHandler)(void *cls, 167typedef void (*GSF_PendingRequestReplyHandler)(void *cls,
167 struct GSF_PendingRequest *pr, 168 struct GSF_PendingRequest *pr,
168 struct GNUNET_TIME_Absolute expiration, 169 struct GNUNET_TIME_Absolute expiration,
170 enum GNUNET_BLOCK_Type type,
169 const void *data, 171 const void *data,
170 size_t data_len); 172 size_t data_len);
171 173