aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-02-15 14:01:44 +0000
committerChristian Grothoff <christian@grothoff.org>2011-02-15 14:01:44 +0000
commit0ad72d359ab3ea5f232f4a8a0eb04700e8c84b49 (patch)
tree6a08051f08ff896ed9d61e80c8b74a1d282f8539 /src/fs/gnunet-service-fs_pr.h
parente3d12cb6fa5ddfb181dcade2e06888619f384457 (diff)
downloadgnunet-0ad72d359ab3ea5f232f4a8a0eb04700e8c84b49.tar.gz
gnunet-0ad72d359ab3ea5f232f4a8a0eb04700e8c84b49.zip
stuff
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index bb6920ab1..2cb7cb843 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -139,13 +139,19 @@ struct GSF_PendingRequestData
139 * 139 *
140 * @param cls user-specified closure 140 * @param cls user-specified closure
141 * @param pr handle to the original pending request 141 * @param pr handle to the original pending request
142 * @param expiration when does 'data' expire?
142 * @param data response data, NULL on request expiration 143 * @param data response data, NULL on request expiration
143 * @param data_len number of bytes in data 144 * @param data_len number of bytes in data
145 * @param more GNUNET_YES if the request remains active (may call
146 * this function again), GNUNET_NO if the request is
147 * finished (client must not call GSF_pending_request_cancel_)
144 */ 148 */
145typedef void (*GSF_PendingRequestReplyHandler)(void *cls, 149typedef void (*GSF_PendingRequestReplyHandler)(void *cls,
146 struct GSF_PendingRequest *pr, 150 struct GSF_PendingRequest *pr,
151 struct GNUNET_TIME_Absolute expiration,
147 const void *data, 152 const void *data,
148 size_t data_len); 153 size_t data_len,
154 int more);
149 155
150 156
151/** 157/**