aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_hello_uri_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_hello_uri_lib.h')
-rw-r--r--src/include/gnunet_hello_uri_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_hello_uri_lib.h b/src/include/gnunet_hello_uri_lib.h
index 7ebf75a9e..aecda0885 100644
--- a/src/include/gnunet_hello_uri_lib.h
+++ b/src/include/gnunet_hello_uri_lib.h
@@ -220,6 +220,7 @@ GNUNET_HELLO_builder_del_address (struct GNUNET_HELLO_Builder *builder,
220 */ 220 */
221typedef void 221typedef void
222(*GNUNET_HELLO_UriCallback) (void *cls, 222(*GNUNET_HELLO_UriCallback) (void *cls,
223 const struct GNUNET_PeerIdentity* pid,
223 const char *uri); 224 const char *uri);
224 225
225 226
@@ -227,13 +228,12 @@ typedef void
227 * Iterate over URIs in a builder. 228 * Iterate over URIs in a builder.
228 * 229 *
229 * @param builder builder to iterate over 230 * @param builder builder to iterate over
230 * @param[out] pid set to the peer the @a builder is for
231 * @param uc callback invoked for each URI, can be NULL 231 * @param uc callback invoked for each URI, can be NULL
232 * @param uc_cls closure for @a addrgen 232 * @param uc_cls closure for @a addrgen
233 * @return pid of the peer the @a builder is for, can be NULL
233 */ 234 */
234void 235const struct GNUNET_PeerIdentity *
235GNUNET_HELLO_builder_iterate (const struct GNUNET_HELLO_Builder *builder, 236GNUNET_HELLO_builder_iterate (const struct GNUNET_HELLO_Builder *builder,
236 struct GNUNET_PeerIdentity *pid,
237 GNUNET_HELLO_UriCallback uc, 237 GNUNET_HELLO_UriCallback uc,
238 void *uc_cls); 238 void *uc_cls);
239 239