aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-25 21:35:35 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-25 21:35:35 +0000
commita7cb864c5e86310bfc46c5d7eb683dde1078715a (patch)
treeccce67607efe4e6dd94718487df88548d642d6e9 /src/gns/gnunet-service-gns_resolver.h
parentbb613dd9d32c66e3eb6d87f583d2be137d4137e6 (diff)
downloadgnunet-a7cb864c5e86310bfc46c5d7eb683dde1078715a.tar.gz
gnunet-a7cb864c5e86310bfc46c5d7eb683dde1078715a.zip
-add bg lookups for shorten
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index ad7ff6223..85c21e324 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -296,12 +296,14 @@ gns_resolver_lookup_record(struct GNUNET_CRYPTO_ShortHashCode zone,
296 * 296 *
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 key optional private key for background lookups and PSEU import
299 * @param proc the processor to call on shorten result 300 * @param proc the processor to call on shorten result
300 * @param proc_cls the closure to pass to proc 301 * @param proc_cls the closure to pass to proc
301 */ 302 */
302void 303void
303gns_resolver_shorten_name(struct GNUNET_CRYPTO_ShortHashCode zone, 304gns_resolver_shorten_name(struct GNUNET_CRYPTO_ShortHashCode zone,
304 const char* name, 305 const char* name,
306 struct GNUNET_CRYPTO_RsaPrivateKey *key,
305 ShortenResultProcessor proc, 307 ShortenResultProcessor proc,
306 void* proc_cls); 308 void* proc_cls);
307 309