aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_lc.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-15 12:39:52 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-15 12:39:52 +0000
commit62734197ffae55d0d21ed3bc789d5529e9d02fd4 (patch)
treef49cd18187f8106bfdf8721783a23e1389a27005 /src/fs/gnunet-service-fs_lc.h
parent6ad3fb49f0745731a820473539436be99c4ba4b3 (diff)
downloadgnunet-62734197ffae55d0d21ed3bc789d5529e9d02fd4.tar.gz
gnunet-62734197ffae55d0d21ed3bc789d5529e9d02fd4.zip
fixing 1786
Diffstat (limited to 'src/fs/gnunet-service-fs_lc.h')
-rw-r--r--src/fs/gnunet-service-fs_lc.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/fs/gnunet-service-fs_lc.h b/src/fs/gnunet-service-fs_lc.h
index c625edf0b..ebfb12927 100644
--- a/src/fs/gnunet-service-fs_lc.h
+++ b/src/fs/gnunet-service-fs_lc.h
@@ -48,12 +48,16 @@ GSF_local_client_lookup_ (struct GNUNET_SERVER_Client *client);
48 * 48 *
49 * @param client identification of the client 49 * @param client identification of the client
50 * @param message the actual message 50 * @param message the actual message
51 * @return pending request handle for the request, NULL on error 51 * @param where to store the pending request handle for the request
52 * @return GNUNET_YES to start local processing,
53 * GNUNET_NO to not (yet) start local processing,
54 * GNUNET_SYSERR on error
52 */ 55 */
53struct GSF_PendingRequest * 56int
54GSF_local_client_start_search_handler_ (struct GNUNET_SERVER_Client *client, 57GSF_local_client_start_search_handler_ (struct GNUNET_SERVER_Client *client,
55 const struct GNUNET_MessageHeader 58 const struct GNUNET_MessageHeader
56 *message); 59 *message,
60 struct GSF_PendingRequest **prptr);
57 61
58 62
59/** 63/**