fix
[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 struct Set
36 {
37
38 };
39
40 struct Listener
41 {
42
43 };
44
45 /*
46 static struct Listener *sets_head;
47 static struct Listener *sets_tail;
48
49 static struct Listener *listeners_head;
50 static struct Listener *listeners_tail;
51 */
52
53
54 /**
55  * Called when a client wants to create a new set.
56  *
57  * @param cls unused
58  * @param client client that sent the message
59  * @param m message sent by the client
60  */
61 static void
62 handle_client_create (void *cls,
63                       struct GNUNET_SERVER_Client *client,
64                       const struct GNUNET_MessageHeader *m)
65 {
66   
67 }
68
69
70 /**
71  * Function called by the service's run
72  * method to run service-specific setup code.
73  *
74  * @param cls closure
75  * @param server the initialized server
76  * @param cfg configuration to use
77  */
78 static void
79 run (void *cls, struct GNUNET_SERVER_Handle *server, const struct GNUNET_CONFIGURATION_Handle *cfg)
80
81 {
82   static const struct GNUNET_SERVER_MessageHandler server_handlers[] = {
83     {handle_client_create, NULL, GNUNET_MESSAGE_TYPE_SET_CREATE, 0},
84     {NULL, NULL, 0, 0}
85   };
86
87
88   GNUNET_SERVER_add_handlers (server, server_handlers);
89 }
90
91
92 /**
93  * The main function for the set service.
94  *
95  * @param argc number of arguments from the command line
96  * @param argv command line arguments
97  * @return 0 ok, 1 on error
98  */
99 int
100 main (int argc, char *const *argv)
101 {
102   int ret;
103   ret = GNUNET_SERVICE_run (argc, argv, "set", GNUNET_SERVICE_OPTION_NONE, &run, NULL);
104   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exit\n");
105   return (GNUNET_OK == ret) ? 0 : 1;
106 }
107
108