- remove http
[oweals/gnunet.git] / src / datacache / plugin_datacache_template.c
index 60862dac2a846b2eb0c0907787161fccf31a168f..2d3f160e4fb3a570cd0a92260f6429392c5c77c1 100644 (file)
@@ -31,7 +31,7 @@
 /**
  * Context for all functions in this plugin.
  */
-struct Plugin 
+struct Plugin
 {
   /**
    * Our execution environment.
@@ -51,13 +51,10 @@ struct Plugin
  * @param discard_time when to discard the value in any case
  * @return 0 on error, number of bytes used otherwise
  */
-static size_t 
-template_plugin_put (void *cls,
-                    const GNUNET_HashCode * key,
-                    size_t size,
-                    const char *data,
-                    enum GNUNET_BLOCK_Type type,
-                    struct GNUNET_TIME_Absolute discard_time)
+static size_t
+template_plugin_put (void *cls, const GNUNET_HashCode * key, size_t size,
+                     const char *data, enum GNUNET_BLOCK_Type type,
+                     struct GNUNET_TIME_Absolute discard_time)
 {
   GNUNET_break (0);
   return 0;
@@ -75,12 +72,10 @@ template_plugin_put (void *cls,
  * @param iter_cls closure for iter
  * @return the number of results found
  */
-static unsigned int 
-template_plugin_get (void *cls,
-                    const GNUNET_HashCode * key,
-                    enum GNUNET_BLOCK_Type type,
-                    GNUNET_DATACACHE_Iterator iter,
-                    void *iter_cls)
+static unsigned int
+template_plugin_get (void *cls, const GNUNET_HashCode * key,
+                     enum GNUNET_BLOCK_Type type,
+                     GNUNET_DATACACHE_Iterator iter, void *iter_cls)
 {
   GNUNET_break (0);
   return 0;
@@ -90,11 +85,11 @@ template_plugin_get (void *cls,
 /**
  * Delete the entry with the lowest expiration value
  * from the datacache right now.
- * 
+ *
  * @param cls closure (our "struct Plugin")
  * @return GNUNET_OK on success, GNUNET_SYSERR on error
- */ 
-static int 
+ */
+static int
 template_plugin_del (void *cls)
 {
   GNUNET_break (0);
@@ -122,8 +117,8 @@ libgnunet_plugin_datacache_template_init (void *cls)
   api->get = &template_plugin_get;
   api->put = &template_plugin_put;
   api->del = &template_plugin_del;
-  GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
-                   "template", _("Template datacache running\n"));
+  GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "template",
+                   _("Template datacache running\n"));
   return api;
 }
 
@@ -148,4 +143,3 @@ libgnunet_plugin_datacache_template_done (void *cls)
 
 
 /* end of plugin_datacache_template.c */
-