print active/inactive information
[oweals/gnunet.git] / src / include / gnunet_peerstore_plugin.h
index 8dcc1ec2a99b63e2511a44a5fd05e19f91859aeb..8eea796bb7857f13e7957af34d147f3d68509fc3 100644 (file)
@@ -63,10 +63,43 @@ struct GNUNET_PEERSTORE_PluginFunctions
    */
   int
   (*store_record) (void *cls,
-          const char *sub_system,
-          const struct GNUNET_PeerIdentity *peer,
-          const void *value,
-          size_t size);
+      const char *sub_system,
+      const struct GNUNET_PeerIdentity *peer,
+      const char *key,
+      const void *value,
+      size_t size,
+      struct GNUNET_TIME_Absolute expiry,
+      enum GNUNET_PEERSTORE_StoreOption options);
+
+  /**
+   * Iterate over the records given an optional peer id
+   * and/or key.
+   *
+   * @param cls closure (internal context for the plugin)
+   * @param sub_system name of sub system
+   * @param peer Peer identity (can be NULL)
+   * @param key entry key string (can be NULL)
+   * @param iter function to call with the result
+   * @param iter_cls closure for @a iter
+   * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
+   */
+  int
+  (*iterate_records) (void *cls,
+      const char *sub_system,
+      const struct GNUNET_PeerIdentity *peer,
+      const char *key,
+      GNUNET_PEERSTORE_Processor iter, void *iter_cls);
+
+  /**
+   * Delete expired records (expiry < now)
+   *
+   * @param cls closure (internal context for the plugin)
+   * @param now time to use as reference
+   * @return number of records deleted
+   */
+  int
+  (*expire_records) (void *cls,
+      struct GNUNET_TIME_Absolute now);
 
 };