- clean up gns rest api
[oweals/gnunet.git] / src / fs / gnunet-service-fs_lc.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file fs/gnunet-service-fs_lc.h
23  * @brief API to handle 'local clients'
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_FS_LC_H
27 #define GNUNET_SERVICE_FS_LC_H
28
29 #include "gnunet-service-fs.h"
30
31
32 /**
33  * Look up a local client record or create one if it
34  * doesn't exist yet.
35  *
36  * @param client handle of the client
37  * @return handle to local client entry
38  */
39 struct GSF_LocalClient *
40 GSF_local_client_lookup_ (struct GNUNET_SERVER_Client *client);
41
42
43 /**
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).
48  *
49  * @param client identification of the client
50  * @param message the actual message
51  * @param prptr 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
55  */
56 int
57 GSF_local_client_start_search_handler_ (struct GNUNET_SERVER_Client *client,
58                                         const struct GNUNET_MessageHeader
59                                         *message,
60                                         struct GSF_PendingRequest **prptr);
61
62
63 /**
64  * Transmit a message to the given local client as soon as possible.
65  * If the client disconnects before transmission, the message is
66  * simply discarded.
67  *
68  * @param lc recipient
69  * @param msg message to transmit to client
70  */
71 void
72 GSF_local_client_transmit_ (struct GSF_LocalClient *lc,
73                             const struct GNUNET_MessageHeader *msg);
74
75
76 /**
77  * A client disconnected from us.  Tear down the local client record.
78  *
79  * @param cls unused
80  * @param client handle of the client
81  */
82 void
83 GSF_client_disconnect_handler_ (void *cls, struct GNUNET_SERVER_Client *client);
84
85
86 #endif
87 /* end of gnunet-service-fs_lc.h */