aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-25 08:49:47 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-25 08:49:47 +0000
commit390a68296dd89f61461bdca02060d36e2e02af2b (patch)
tree9aa86841d2052cdd4080f6a4e2003313bf9670bf /src/fs/gnunet-service-fs_pr.h
parent78469082de0b7fa49724504b7e21bb2e9b4bef05 (diff)
downloadgnunet-390a68296dd89f61461bdca02060d36e2e02af2b.tar.gz
gnunet-390a68296dd89f61461bdca02060d36e2e02af2b.zip
adapt to new API
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index a25659e22..ea464e578 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -162,16 +162,12 @@ struct GSF_PendingRequestData
162 * @param expiration when does 'data' expire? 162 * @param expiration when does 'data' expire?
163 * @param data response data, NULL on request expiration 163 * @param data response data, NULL on request expiration
164 * @param data_len number of bytes in data 164 * @param data_len number of bytes in data
165 * @param more GNUNET_YES if the request remains active (may call
166 * this function again), GNUNET_NO if the request is
167 * finished (client must not call GSF_pending_request_cancel_)
168 */ 165 */
169typedef void (*GSF_PendingRequestReplyHandler)(void *cls, 166typedef void (*GSF_PendingRequestReplyHandler)(void *cls,
170 struct GSF_PendingRequest *pr, 167 struct GSF_PendingRequest *pr,
171 struct GNUNET_TIME_Absolute expiration, 168 struct GNUNET_TIME_Absolute expiration,
172 const void *data, 169 const void *data,
173 size_t data_len, 170 size_t data_len);
174 int more);
175 171
176 172
177/** 173/**