added skeleton for gnunet set
[oweals/gnunet.git] / src / set / gnunet-service-set.c
1 /*
2       This file is part of GNUnet
3       (C) 2013 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 set/gnunet-service-set.c
23  * @brief two-peer set operations
24  * @author Florian Dold
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_applications.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_core_service.h"
33 #include "gnunet_stream_lib.h"
34
35
36 /**
37  * Function called by the service's run
38  * method to run service-specific setup code.
39  *
40  * @param cls closure
41  * @param server the initialized server
42  * @param cfg configuration to use
43  */
44 static void
45 run (void *cls,
46      struct GNUNET_SERVER_Handle * server,
47      const struct GNUNET_CONFIGURATION_Handle *
48      cfg)
49
50 {
51   /* FIXME */
52 }
53
54
55 /**
56  * The main function for the set service.
57  *
58  * @param argc number of arguments from the command line
59  * @param argv command line arguments
60  * @return 0 ok, 1 on error
61  */
62 int
63 main (int argc, char *const *argv)
64 {
65   int ret;
66   ret = GNUNET_SERVICE_run (argc, argv, "set", GNUNET_SERVICE_OPTION_NONE, &run, NULL);
67   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exit\n");
68   return (GNUNET_OK == ret) ? 0 : 1;
69 }
70
71