aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.c')
-rw-r--r--src/gns/gnunet-service-gns_resolver.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.c b/src/gns/gnunet-service-gns_resolver.c
index 9a54a8080..daae46ab7 100644
--- a/src/gns/gnunet-service-gns_resolver.c
+++ b/src/gns/gnunet-service-gns_resolver.c
@@ -541,11 +541,9 @@ translate_dot_plus (struct GNS_ResolverHandle *rh,
541 * Task scheduled to asynchronously fail a resolution. 541 * Task scheduled to asynchronously fail a resolution.
542 * 542 *
543 * @param cls the 'struct GNS_ResolverHandle' of the resolution to fail 543 * @param cls the 'struct GNS_ResolverHandle' of the resolution to fail
544 * @param tc task context
545 */ 544 */
546static void 545static void
547fail_resolution (void *cls, 546fail_resolution (void *cls)
548 const struct GNUNET_SCHEDULER_TaskContext *tc)
549{ 547{
550 struct GNS_ResolverHandle *rh = cls; 548 struct GNS_ResolverHandle *rh = cls;
551 549
@@ -808,8 +806,7 @@ handle_dns_result (void *cls,
808 * @param tc task context 806 * @param tc task context
809 */ 807 */
810static void 808static void
811recursive_resolution (void *cls, 809recursive_resolution (void *cls);
812 const struct GNUNET_SCHEDULER_TaskContext *tc);
813 810
814 811
815/** 812/**
@@ -2229,11 +2226,9 @@ recursive_gns_resolution_revocation (struct GNS_ResolverHandle *rh)
2229 * Task scheduled to continue with the resolution process. 2226 * Task scheduled to continue with the resolution process.
2230 * 2227 *
2231 * @param cls the `struct GNS_ResolverHandle` of the resolution 2228 * @param cls the `struct GNS_ResolverHandle` of the resolution
2232 * @param tc task context
2233 */ 2229 */
2234static void 2230static void
2235recursive_resolution (void *cls, 2231recursive_resolution (void *cls)
2236 const struct GNUNET_SCHEDULER_TaskContext *tc)
2237{ 2232{
2238 struct GNS_ResolverHandle *rh = cls; 2233 struct GNS_ResolverHandle *rh = cls;
2239 2234