aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_indexing.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-19 13:54:35 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-19 13:54:35 +0000
commitbf2d1ccefd7b5bd13295733a36bf19afba46f4b2 (patch)
treec440a5bcf7e328d1dd05dd3b1a5def173adb49df /src/fs/gnunet-service-fs_indexing.c
parent1997d2d086b237e2688d12567933a53b2229ea26 (diff)
downloadgnunet-bf2d1ccefd7b5bd13295733a36bf19afba46f4b2.tar.gz
gnunet-bf2d1ccefd7b5bd13295733a36bf19afba46f4b2.zip
adding min_expiration argument to GNUNET_DATASTORE_ContinuationWithStatus callback to communicate which content has a chance of being stored in the medium term
Diffstat (limited to 'src/fs/gnunet-service-fs_indexing.c')
-rw-r--r--src/fs/gnunet-service-fs_indexing.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fs/gnunet-service-fs_indexing.c b/src/fs/gnunet-service-fs_indexing.c
index 41a40e125..d3aef8917 100644
--- a/src/fs/gnunet-service-fs_indexing.c
+++ b/src/fs/gnunet-service-fs_indexing.c
@@ -477,10 +477,13 @@ GNUNET_FS_handle_unindex (void *cls, struct GNUNET_SERVER_Client *client,
477 * 477 *
478 * @param cls unused 478 * @param cls unused
479 * @param success did the deletion work? 479 * @param success did the deletion work?
480 * @param min_expiration minimum expiration time required for content to be stored
480 * @param msg error message 481 * @param msg error message
481 */ 482 */
482static void 483static void
483remove_cont (void *cls, int success, const char *msg) 484remove_cont (void *cls, int success,
485 struct GNUNET_TIME_Absolute min_expiration,
486 const char *msg)
484{ 487{
485 if (GNUNET_OK != success) 488 if (GNUNET_OK != success)
486 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 489 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,