commit 8d9bc925ed9f3692b451ad90ae31810e419aaee3
parent 33b4ce87d0ff6c971a0088906c4c950915510d82
Author: Willow Liquorice <willow@howhill.com>
Date: Fri, 26 Aug 2022 21:01:04 +0100
-First pass through GNS
Diffstat:
3 files changed, 1 insertion(+), 31 deletions(-)
diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c
@@ -2565,11 +2565,6 @@ schedule_httpd (struct MhdHttpList *hd)
}
-/**
- * Task run whenever HTTP server operations are pending.
- *
- * @param cls the `struct MhdHttpList` of the daemon that is being run
- */
static void
do_httpd (void *cls)
{
diff --git a/src/gns/gnunet-service-gns_interceptor.c b/src/gns/gnunet-service-gns_interceptor.c
@@ -365,12 +365,6 @@ handle_dns_request (void *cls,
}
-/**
- * Initialized the interceptor
- *
- * @param c the configuration
- * @return #GNUNET_OK on success
- */
int
GNS_interceptor_init (const struct GNUNET_CONFIGURATION_Handle *c)
{
diff --git a/src/gns/gnunet-service-gns_resolver.c b/src/gns/gnunet-service-gns_resolver.c
@@ -849,7 +849,6 @@ handle_dns_result (void *cls,
* Task scheduled to continue with the resolution process.
*
* @param cls the 'struct GNS_ResolverHandle' of the resolution
- * @param tc task context
*/
static void
recursive_resolution (void *cls);
@@ -1379,7 +1378,7 @@ handle_gns_cname_result (struct GNS_ResolverHandle *rh,
/**
- * Process a records that were decrypted from a block.
+ * Process records that were decrypted from a block.
*
* @param cls closure with the 'struct GNS_ResolverHandle'
* @param rd_count number of entries in @a rd array
@@ -1894,13 +1893,6 @@ recursive_gns2dns_resolution (struct GNS_ResolverHandle *rh,
}
-/**
- * Process a records that were decrypted from a block.
- *
- * @param cls closure with the `struct GNS_ResolverHandle`
- * @param rd_count number of entries in @a rd array
- * @param rd array of records with data to store
- */
static void
handle_gns_resolution_result (void *cls,
unsigned int rd_count,
@@ -2698,11 +2690,6 @@ recursive_gns_resolution_revocation (struct GNS_ResolverHandle *rh)
}
-/**
- * Task scheduled to continue with the resolution process.
- *
- * @param cls the `struct GNS_ResolverHandle` of the resolution
- */
static void
recursive_resolution (void *cls)
{
@@ -2724,12 +2711,6 @@ recursive_resolution (void *cls)
}
-/**
- * Begin the resolution process from 'name', starting with
- * the identification of the zone specified by 'name'.
- *
- * @param cls the `struct GNS_ResolverHandle`
- */
static void
start_resolver_lookup (void *cls)
{