aboutsummaryrefslogtreecommitdiff
path: root/src/template
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-10-05 15:09:28 +0200
committerChristian Grothoff <christian@grothoff.org>2019-10-05 15:09:28 +0200
commitc4e9ba925ffd758aaa3feee2ccfc0b76f26fe207 (patch)
treecac3ce030d77b4cbe7c7dc62ed58cfe6d24f73e1 /src/template
parentfbb71d527c7d6babf269a8fefce1db291b9f7068 (diff)
downloadgnunet-c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207.tar.gz
gnunet-c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207.zip
global reindent, now with uncrustify hook enabled
Diffstat (limited to 'src/template')
-rw-r--r--src/template/gnunet-service-template.c38
-rw-r--r--src/template/gnunet-template.c28
-rw-r--r--src/template/test_template_api.c6
3 files changed, 36 insertions, 36 deletions
diff --git a/src/template/gnunet-service-template.c b/src/template/gnunet-service-template.c
index 6db030d16..e04d2f61d 100644
--- a/src/template/gnunet-service-template.c
+++ b/src/template/gnunet-service-template.c
@@ -33,7 +33,7 @@
33 * @param cls unused 33 * @param cls unused
34 */ 34 */
35static void 35static void
36cleanup_task(void *cls) 36cleanup_task (void *cls)
37{ 37{
38 /* FIXME: do clean up here */ 38 /* FIXME: do clean up here */
39} 39}
@@ -48,9 +48,9 @@ cleanup_task(void *cls)
48 * @return @a c 48 * @return @a c
49 */ 49 */
50static void * 50static void *
51client_connect_cb(void *cls, 51client_connect_cb (void *cls,
52 struct GNUNET_SERVICE_Client *c, 52 struct GNUNET_SERVICE_Client *c,
53 struct GNUNET_MQ_Handle *mq) 53 struct GNUNET_MQ_Handle *mq)
54{ 54{
55 return c; 55 return c;
56} 56}
@@ -64,11 +64,11 @@ client_connect_cb(void *cls,
64 * @param internal_cls should be equal to @a c 64 * @param internal_cls should be equal to @a c
65 */ 65 */
66static void 66static void
67client_disconnect_cb(void *cls, 67client_disconnect_cb (void *cls,
68 struct GNUNET_SERVICE_Client *c, 68 struct GNUNET_SERVICE_Client *c,
69 void *internal_cls) 69 void *internal_cls)
70{ 70{
71 GNUNET_assert(c == internal_cls); 71 GNUNET_assert (c == internal_cls);
72} 72}
73 73
74 74
@@ -80,25 +80,25 @@ client_disconnect_cb(void *cls,
80 * @param service the initialized service 80 * @param service the initialized service
81 */ 81 */
82static void 82static void
83run(void *cls, 83run (void *cls,
84 const struct GNUNET_CONFIGURATION_Handle *cfg, 84 const struct GNUNET_CONFIGURATION_Handle *cfg,
85 struct GNUNET_SERVICE_Handle *service) 85 struct GNUNET_SERVICE_Handle *service)
86{ 86{
87 /* FIXME: do setup here */ 87 /* FIXME: do setup here */
88 GNUNET_SCHEDULER_add_shutdown(&cleanup_task, NULL); 88 GNUNET_SCHEDULER_add_shutdown (&cleanup_task, NULL);
89} 89}
90 90
91 91
92/** 92/**
93 * Define "main" method using service macro. 93 * Define "main" method using service macro.
94 */ 94 */
95GNUNET_SERVICE_MAIN("template", 95GNUNET_SERVICE_MAIN ("template",
96 GNUNET_SERVICE_OPTION_NONE, 96 GNUNET_SERVICE_OPTION_NONE,
97 &run, 97 &run,
98 &client_connect_cb, 98 &client_connect_cb,
99 &client_disconnect_cb, 99 &client_disconnect_cb,
100 NULL, 100 NULL,
101 GNUNET_MQ_handler_end()); 101 GNUNET_MQ_handler_end ());
102 102
103 103
104/* end of gnunet-service-template.c */ 104/* end of gnunet-service-template.c */
diff --git a/src/template/gnunet-template.c b/src/template/gnunet-template.c
index 1ebb1b512..20d286d3c 100644
--- a/src/template/gnunet-template.c
+++ b/src/template/gnunet-template.c
@@ -42,10 +42,10 @@ static int ret;
42 * @param cfg configuration 42 * @param cfg configuration
43 */ 43 */
44static void 44static void
45run(void *cls, 45run (void *cls,
46 char *const *args, 46 char *const *args,
47 const char *cfgfile, 47 const char *cfgfile,
48 const struct GNUNET_CONFIGURATION_Handle *cfg) 48 const struct GNUNET_CONFIGURATION_Handle *cfg)
49{ 49{
50 /* main code here */ 50 /* main code here */
51} 51}
@@ -59,26 +59,26 @@ run(void *cls,
59 * @return 0 ok, 1 on error 59 * @return 0 ok, 1 on error
60 */ 60 */
61int 61int
62main(int argc, char *const *argv) 62main (int argc, char *const *argv)
63{ 63{
64 static const struct GNUNET_GETOPT_CommandLineOption options[] = { 64 static const struct GNUNET_GETOPT_CommandLineOption options[] = {
65 /* FIMXE: add options here */ 65 /* FIMXE: add options here */
66 GNUNET_GETOPT_OPTION_END 66 GNUNET_GETOPT_OPTION_END
67 }; 67 };
68 68
69 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args(argc, argv, &argc, &argv)) 69 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
70 return 2; 70 return 2;
71 71
72 ret = (GNUNET_OK == GNUNET_PROGRAM_run(argc, 72 ret = (GNUNET_OK == GNUNET_PROGRAM_run (argc,
73 argv, 73 argv,
74 "gnunet-template", 74 "gnunet-template",
75 gettext_noop("help text"), 75 gettext_noop ("help text"),
76 options, 76 options,
77 &run, 77 &run,
78 NULL)) 78 NULL))
79 ? ret 79 ? ret
80 : 1; 80 : 1;
81 GNUNET_free((void *)argv); 81 GNUNET_free ((void *) argv);
82 return ret; 82 return ret;
83} 83}
84 84
diff --git a/src/template/test_template_api.c b/src/template/test_template_api.c
index 9f845d975..68fe8b879 100644
--- a/src/template/test_template_api.c
+++ b/src/template/test_template_api.c
@@ -24,17 +24,17 @@
24#include "platform.h" 24#include "platform.h"
25 25
26static int 26static int
27check() 27check ()
28{ 28{
29 return 0; 29 return 0;
30} 30}
31 31
32int 32int
33main(int argc, char *argv[]) 33main (int argc, char *argv[])
34{ 34{
35 int ret; 35 int ret;
36 36
37 ret = check(); 37 ret = check ();
38 38
39 return ret; 39 return ret;
40} 40}