aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_gns_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-21 22:47:41 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-21 22:47:41 +0100
commit3b977cf34b5edb9f7640ad8373b44f5a2c02308a (patch)
tree3fc6c27052cb2d6c492b22a4a18c16f0f3799995 /src/include/gnunet_gns_service.h
parent647d88d649c267220feb8b5f53ec3e96359a72fc (diff)
downloadgnunet-3b977cf34b5edb9f7640ad8373b44f5a2c02308a.tar.gz
gnunet-3b977cf34b5edb9f7640ad8373b44f5a2c02308a.zip
fix misc typos
Diffstat (limited to 'src/include/gnunet_gns_service.h')
-rw-r--r--src/include/gnunet_gns_service.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/include/gnunet_gns_service.h b/src/include/gnunet_gns_service.h
index 8a1099444..44f57014d 100644
--- a/src/include/gnunet_gns_service.h
+++ b/src/include/gnunet_gns_service.h
@@ -90,19 +90,20 @@ GNUNET_GNS_disconnect (struct GNUNET_GNS_Handle *handle);
90 * @param rd_count number of records in @a rd 90 * @param rd_count number of records in @a rd
91 * @param rd the records in reply 91 * @param rd the records in reply
92 */ 92 */
93typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls, 93typedef void
94 uint32_t rd_count, 94(*GNUNET_GNS_LookupResultProcessor) (void *cls,
95 const struct GNUNET_GNSRECORD_Data *rd); 95 uint32_t rd_count,
96 const struct GNUNET_GNSRECORD_Data *rd);
96 97
97/** 98/**
98 * Iterator called on obtained result for a GNS lookup. 99 * Iterator called on obtained result for a GNS lookup.
99 * 100 *
100 * @param cls closure 101 * @param cls closure
101 * @param rd_count number of records in @a rd 102 * @param name result of the reverse lookup
102 * @param rd the records in reply
103 */ 103 */
104typedef void (*GNUNET_GNS_ReverseLookupResultProcessor) (void *cls, 104typedef void
105 const char* name); 105(*GNUNET_GNS_ReverseLookupResultProcessor) (void *cls,
106 const char* name);
106 107
107 108
108/** 109/**
@@ -166,7 +167,7 @@ GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
166 * @param proc_cls closure for @a proc 167 * @param proc_cls closure for @a proc
167 * @return handle to the request 168 * @return handle to the request
168 */ 169 */
169struct GNUNET_GNS_ReverseLookupRequest* 170struct GNUNET_GNS_ReverseLookupRequest *
170GNUNET_GNS_reverse_lookup (struct GNUNET_GNS_Handle *handle, 171GNUNET_GNS_reverse_lookup (struct GNUNET_GNS_Handle *handle,
171 const struct GNUNET_CRYPTO_EcdsaPublicKey *zone_key, 172 const struct GNUNET_CRYPTO_EcdsaPublicKey *zone_key,
172 const struct GNUNET_CRYPTO_EcdsaPublicKey *root_key, 173 const struct GNUNET_CRYPTO_EcdsaPublicKey *root_key,