fixing mess with search update serialization and parenting
[oweals/gnunet.git] / src / template / gnunet-service-template.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 template/gnunet-service-template.c
23  * @brief program that tracks template
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_service_lib.h"
29
30
31 /**
32  * List of handlers for the messages understood by this
33  * service.
34  */
35 static struct GNUNET_SERVER_MessageHandler handlers[] = {
36   /* FIXME: add handlers here! */
37   {NULL, NULL, 0, 0}
38 };
39
40
41 /**
42  * Task run during shutdown.
43  *
44  * @param cls unused
45  * @param tc unused
46  */
47 static void
48 cleanup_task (void *cls,
49               const struct GNUNET_SCHEDULER_TaskContext *tc)
50 {
51   /* FIXME: do clean up here */
52 }
53
54
55 /**
56  * Process template requests.
57  *
58  * @param cls closure
59  * @param sched scheduler to use
60  * @param server the initialized server
61  * @param cfg configuration to use
62  */
63 static void
64 run (void *cls,
65      struct GNUNET_SCHEDULER_Handle *sched,
66      struct GNUNET_SERVER_Handle *server,
67      const struct GNUNET_CONFIGURATION_Handle *cfg)
68 {
69   /* FIXME: do setup here */
70   GNUNET_SERVER_add_handlers (server, handlers);
71   GNUNET_SCHEDULER_add_delayed (sched,
72                                 GNUNET_TIME_UNIT_FOREVER_REL,
73                                 &cleanup_task,
74                                 NULL);
75 }
76
77
78 /**
79  * The main function for the template service.
80  *
81  * @param argc number of arguments from the command line
82  * @param argv command line arguments
83  * @return 0 ok, 1 on error
84  */
85 int
86 main (int argc, char *const *argv)
87 {
88   return (GNUNET_OK ==
89           GNUNET_SERVICE_run (argc,
90                               argv,
91                               "template",
92                               GNUNET_SERVICE_OPTION_NONE,
93                               &run, NULL)) ? 0 : 1;
94 }
95
96 /* end of gnunet-service-template.c */