aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-23 15:59:56 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-23 15:59:56 +0000
commitc83780d7be3f1a744f72437220b351ce2ce0d68e (patch)
tree6b7ead4481e941526f6996bc222b848714fc36b8 /src/gns/gnunet-service-gns_resolver.h
parent8c5d25dad5b1b6f36c35d7d8956fa323a1c99951 (diff)
downloadgnunet-c83780d7be3f1a744f72437220b351ce2ce0d68e.tar.gz
gnunet-c83780d7be3f1a744f72437220b351ce2ce0d68e.zip
-doxygen
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index 7290e927c..fd5d2a5d3 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -248,14 +248,14 @@ struct GetPseuAuthorityHandle
248 * 248 *
249 * @param nh handle to the namestore 249 * @param nh handle to the namestore
250 * @param dh handle to the dht 250 * @param dh handle to the dht
251 * @param local_zone the local zone 251 * @param lz the local zone
252 * @param max_bg_queries maximum amount of background queries 252 * @param max_bg_queries maximum amount of background queries
253 * @returns GNUNET_OK on success 253 * @returns GNUNET_OK on success
254 */ 254 */
255int 255int
256gns_resolver_init(struct GNUNET_NAMESTORE_Handle *nh, 256gns_resolver_init(struct GNUNET_NAMESTORE_Handle *nh,
257 struct GNUNET_DHT_Handle *dh, 257 struct GNUNET_DHT_Handle *dh,
258 struct GNUNET_CRYPTO_ShortHashCode local_zone, 258 struct GNUNET_CRYPTO_ShortHashCode lz,
259 unsigned long long max_bg_queries); 259 unsigned long long max_bg_queries);
260 260
261/** 261/**
@@ -297,13 +297,13 @@ gns_resolver_lookup_record(struct GNUNET_CRYPTO_ShortHashCode zone,
297 * @param zone the zone to perform the operation in 297 * @param zone the zone to perform the operation in
298 * @param name name to shorten 298 * @param name name to shorten
299 * @param proc the processor to call on shorten result 299 * @param proc the processor to call on shorten result
300 * @param proc_cls teh closure to pass to proc 300 * @param proc_cls the closure to pass to proc
301 */ 301 */
302void 302void
303gns_resolver_shorten_name(struct GNUNET_CRYPTO_ShortHashCode zone, 303gns_resolver_shorten_name(struct GNUNET_CRYPTO_ShortHashCode zone,
304 const char* name, 304 const char* name,
305 ShortenResultProcessor proc, 305 ShortenResultProcessor proc,
306 void* cls); 306 void* proc_cls);
307 307
308/** 308/**
309 * Tries to resolve the authority for name 309 * Tries to resolve the authority for name
@@ -312,13 +312,13 @@ gns_resolver_shorten_name(struct GNUNET_CRYPTO_ShortHashCode zone,
312 * @param zone the root zone to look up for 312 * @param zone the root zone to look up for
313 * @param name the name to lookup up 313 * @param name the name to lookup up
314 * @param proc the processor to call when finished 314 * @param proc the processor to call when finished
315 * @param cls the closure to pass to the processor 315 * @param proc_cls the closure to pass to the processor
316 */ 316 */
317void 317void
318gns_resolver_get_authority(struct GNUNET_CRYPTO_ShortHashCode zone, 318gns_resolver_get_authority(struct GNUNET_CRYPTO_ShortHashCode zone,
319 const char* name, 319 const char* name,
320 GetAuthorityResultProcessor proc, 320 GetAuthorityResultProcessor proc,
321 void* cls); 321 void* proc_cls);
322 322
323/** 323/**
324 * Generic function to check for TLDs 324 * Generic function to check for TLDs