aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_namespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs_namespace.c')
-rw-r--r--src/fs/fs_namespace.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/fs/fs_namespace.c b/src/fs/fs_namespace.c
index 9b062fc85..ee3743733 100644
--- a/src/fs/fs_namespace.c
+++ b/src/fs/fs_namespace.c
@@ -505,5 +505,25 @@ GNUNET_FS_namespace_list (struct GNUNET_FS_Handle *h,
505 GNUNET_free (dn); 505 GNUNET_free (dn);
506} 506}
507 507
508
509
510/**
511 * List all of the identifiers in the namespace for
512 * which we could produce an update.
513 *
514 * @param namespace namespace to inspect for updateable content
515 * @param ip function to call on each updateable identifier
516 * @param ip_cls closure for ip
517 */
518void
519GNUNET_FS_namespace_list_updateable (struct GNUNET_FS_Namespace *namespace,
520 GNUNET_FS_IdentifierProcessor ip,
521 void *ip_cls)
522{
523 GNUNET_break (0);
524}
525
526
527
508/* end of fs_namespace.c */ 528/* end of fs_namespace.c */
509 529