aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-08-07 21:45:14 +0000
committerChristian Grothoff <christian@grothoff.org>2010-08-07 21:45:14 +0000
commitb69c7b8a5f0504a344475aa75071e2687d66cebf (patch)
tree1739a91343ac4af627d00b12e4d93a5d96ccfdd8 /src/include
parent5ec6299eef59ba41fdb2a39fc1fdd82728beeede (diff)
downloadgnunet-b69c7b8a5f0504a344475aa75071e2687d66cebf.tar.gz
gnunet-b69c7b8a5f0504a344475aa75071e2687d66cebf.zip
adding missing API call
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_fs_service.h12
-rw-r--r--src/include/gnunet_pseudonym_lib.h3
2 files changed, 15 insertions, 0 deletions
diff --git a/src/include/gnunet_fs_service.h b/src/include/gnunet_fs_service.h
index 758a4895c..8e71308ba 100644
--- a/src/include/gnunet_fs_service.h
+++ b/src/include/gnunet_fs_service.h
@@ -328,6 +328,18 @@ GNUNET_FS_uri_sks_create (struct GNUNET_FS_Namespace *ns,
328 328
329 329
330/** 330/**
331 * Create an SKS URI from a namespace ID and an identifier.
332 *
333 * @param nsid namespace ID
334 * @param id identifier
335 * @return an FS URI for the given namespace and identifier
336 */
337struct GNUNET_FS_Uri *
338GNUNET_FS_uri_sks_create_from_nsid (GNUNET_HashCode *nsid,
339 const char *id);
340
341
342/**
331 * Get the ID of a namespace from the given 343 * Get the ID of a namespace from the given
332 * namespace URI. 344 * namespace URI.
333 * 345 *
diff --git a/src/include/gnunet_pseudonym_lib.h b/src/include/gnunet_pseudonym_lib.h
index ba240941b..124de04f9 100644
--- a/src/include/gnunet_pseudonym_lib.h
+++ b/src/include/gnunet_pseudonym_lib.h
@@ -42,6 +42,9 @@ extern "C"
42/** 42/**
43 * Iterator over all known pseudonyms. 43 * Iterator over all known pseudonyms.
44 * 44 *
45 * @param cls closure
46 * @param pseudonym hash code of public key of pseudonym
47 * @param md meta data known about the pseudonym
45 * @param rating the local rating of the pseudonym 48 * @param rating the local rating of the pseudonym
46 * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort 49 * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
47 */ 50 */