aboutsummaryrefslogtreecommitdiff
path: root/src/regex/gnunet-service-regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/gnunet-service-regex.c')
-rw-r--r--src/regex/gnunet-service-regex.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/regex/gnunet-service-regex.c b/src/regex/gnunet-service-regex.c
index 2150b0973..a70876534 100644
--- a/src/regex/gnunet-service-regex.c
+++ b/src/regex/gnunet-service-regex.c
@@ -152,11 +152,9 @@ handle_client_disconnect (void *cls,
152 * Task run during shutdown. 152 * Task run during shutdown.
153 * 153 *
154 * @param cls unused 154 * @param cls unused
155 * @param tc unused
156 */ 155 */
157static void 156static void
158cleanup_task (void *cls, 157cleanup_task (void *cls)
159 const struct GNUNET_SCHEDULER_TaskContext *tc)
160{ 158{
161 struct ClientEntry *ce; 159 struct ClientEntry *ce;
162 160
@@ -177,13 +175,11 @@ cleanup_task (void *cls,
177/** 175/**
178 * Periodic task to refresh our announcement of the regex. 176 * Periodic task to refresh our announcement of the regex.
179 * 177 *
180 * @param cls the 'struct ClientEntry' of the client that triggered the 178 * @param cls the `struct ClientEntry *` of the client that triggered the
181 * announcement 179 * announcement
182 * @param tc scheduler context
183 */ 180 */
184static void 181static void
185reannounce (void *cls, 182reannounce (void *cls)
186 const struct GNUNET_SCHEDULER_TaskContext *tc)
187{ 183{
188 struct ClientEntry *ce = cls; 184 struct ClientEntry *ce = cls;
189 185