aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_lc.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-02-08 00:10:36 +0000
committerChristian Grothoff <christian@grothoff.org>2011-02-08 00:10:36 +0000
commit1a11ec73bfe097463b60b41ceed503e3d2924a44 (patch)
tree7bf27c684adefa0af13fae69ad1c547bc568085b /src/fs/gnunet-service-fs_lc.h
parent86d7f49fc64f0c766d4bec6b3f34879f108fc8a9 (diff)
downloadgnunet-1a11ec73bfe097463b60b41ceed503e3d2924a44.tar.gz
gnunet-1a11ec73bfe097463b60b41ceed503e3d2924a44.zip
stuff
Diffstat (limited to 'src/fs/gnunet-service-fs_lc.h')
-rw-r--r--src/fs/gnunet-service-fs_lc.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/fs/gnunet-service-fs_lc.h b/src/fs/gnunet-service-fs_lc.h
index e9b77aa59..35d8a839a 100644
--- a/src/fs/gnunet-service-fs_lc.h
+++ b/src/fs/gnunet-service-fs_lc.h
@@ -42,14 +42,16 @@ GSF_local_client_lookup_ (struct GNUNET_SERVER_Client *client);
42 42
43/** 43/**
44 * Handle START_SEARCH-message (search request from local client). 44 * Handle START_SEARCH-message (search request from local client).
45 * Only responsible for creating the request entry itself and setting
46 * up reply callback and cancellation on client disconnect. Does NOT
47 * execute the actual request strategy (planning).
45 * 48 *
46 * @param cls closure
47 * @param client identification of the client 49 * @param client identification of the client
48 * @param message the actual message 50 * @param message the actual message
51 * @return pending request handle for the request, NULL on error
49 */ 52 */
50void 53struct GSF_PendingRequest *
51GSF_local_client_start_search_handler_ (void *cls, 54GSF_local_client_start_search_handler_ (struct GNUNET_SERVER_Client *client,
52 struct GNUNET_SERVER_Client *client,
53 const struct GNUNET_MessageHeader *message); 55 const struct GNUNET_MessageHeader *message);
54 56
55 57