aboutsummaryrefslogtreecommitdiff
path: root/src/template/gnunet-service-template.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
commit5746309cb4be2073d550ad7a6885e918631dbc38 (patch)
tree89455bc4aadf977816b38df13f990372cd81d71a /src/template/gnunet-service-template.c
parent6fd3e715cae09fa6e657c96f1c6f9711ee51f42f (diff)
downloadgnunet-5746309cb4be2073d550ad7a6885e918631dbc38.tar.gz
gnunet-5746309cb4be2073d550ad7a6885e918631dbc38.zip
indentation
Diffstat (limited to 'src/template/gnunet-service-template.c')
-rw-r--r--src/template/gnunet-service-template.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/template/gnunet-service-template.c b/src/template/gnunet-service-template.c
index 8ee88c961..54b7ecc94 100644
--- a/src/template/gnunet-service-template.c
+++ b/src/template/gnunet-service-template.c
@@ -49,8 +49,7 @@ cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
49 * @param cfg configuration to use 49 * @param cfg configuration to use
50 */ 50 */
51static void 51static void
52run (void *cls, 52run (void *cls, struct GNUNET_SERVER_Handle *server,
53 struct GNUNET_SERVER_Handle *server,
54 const struct GNUNET_CONFIGURATION_Handle *cfg) 53 const struct GNUNET_CONFIGURATION_Handle *cfg)
55{ 54{
56 static const struct GNUNET_SERVER_MessageHandler handlers[] = { 55 static const struct GNUNET_SERVER_MessageHandler handlers[] = {
@@ -59,8 +58,8 @@ run (void *cls,
59 }; 58 };
60 /* FIXME: do setup here */ 59 /* FIXME: do setup here */
61 GNUNET_SERVER_add_handlers (server, handlers); 60 GNUNET_SERVER_add_handlers (server, handlers);
62 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, 61 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task,
63 &cleanup_task, NULL); 62 NULL);
64} 63}
65 64
66 65
@@ -75,9 +74,7 @@ int
75main (int argc, char *const *argv) 74main (int argc, char *const *argv)
76{ 75{
77 return (GNUNET_OK == 76 return (GNUNET_OK ==
78 GNUNET_SERVICE_run (argc, 77 GNUNET_SERVICE_run (argc, argv, "template",
79 argv,
80 "template",
81 GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1; 78 GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
82} 79}
83 80