stuff
[oweals/gnunet.git] / src / fs / fs.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009 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 2, 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/fs.c
23  * @brief main FS functions
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_fs_service.h"
29 #include "fs.h"
30
31
32
33 /**
34  * Setup a connection to the file-sharing service.
35  *
36  * @param sched scheduler to use
37  * @param cfg configuration to use
38  * @param client_name unique identifier for this client 
39  * @param upcb function to call to notify about FS actions
40  * @param upcb_cls closure for upcb
41  */
42 struct GNUNET_FS_Handle *
43 GNUNET_FS_start (struct GNUNET_SCHEDULER_Handle *sched,
44                  const struct GNUNET_CONFIGURATION_Handle *cfg,
45                  const char *client_name,
46                  GNUNET_FS_ProgressCallback upcb,
47                  void *upcb_cls)
48 {
49   return NULL;
50 }
51
52
53 /**
54  * Close our connection with the file-sharing service.
55  * The callback given to GNUNET_FS_start will no longer be
56  * called after this function returns.
57  *
58  * @param h handle that was returned from GNUNET_FS_start
59  */                    
60 void 
61 GNUNET_FS_stop (struct GNUNET_FS_Handle *h)
62 {
63 }
64
65 /* end of fs.c */