aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index 12d2eec11..7728c397d 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -26,19 +26,21 @@
26#define GNS_RESOLVER_H 26#define GNS_RESOLVER_H
27#include "gns.h" 27#include "gns.h"
28#include "gnunet_dht_service.h" 28#include "gnunet_dht_service.h"
29 29#include "gnunet_namecache_service.h"
30 30
31/** 31/**
32 * Initialize the resolver subsystem. 32 * Initialize the resolver subsystem.
33 * MUST be called before #GNS_resolver_lookup. 33 * MUST be called before #GNS_resolver_lookup.
34 * 34 *
35 * @param nh handle to the namestore 35 * @param nh handle to the namestore
36 * @param nc the namecache handle
36 * @param dht handle to the dht 37 * @param dht handle to the dht
37 * @param c configuration handle 38 * @param c configuration handle
38 * @param max_bg_queries maximum amount of background queries 39 * @param max_bg_queries maximum amount of background queries
39 */ 40 */
40void 41void
41GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh, 42GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh,
43 struct GNUNET_NAMECACHE_Handle *nc,
42 struct GNUNET_DHT_Handle *dht, 44 struct GNUNET_DHT_Handle *dht,
43 const struct GNUNET_CONFIGURATION_Handle *c, 45 const struct GNUNET_CONFIGURATION_Handle *c,
44 unsigned long long max_bg_queries); 46 unsigned long long max_bg_queries);