more code cleanup
[oweals/gnunet.git] / src / transport / plugin_transport_template.c
index 1ca4d018f9098333af92047620e85c6fef6149b6..f6a02fe873fdcebf4a65abf2f55a302debbdd496 100644 (file)
@@ -4,7 +4,7 @@
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 2, or (at your
+     by the Free Software Foundation; either version 3, or (at your
      option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
@@ -122,11 +122,6 @@ struct Plugin
    */
   struct Session *sessions;
 
-  /**
-   * Handle for the statistics service.
-   */
-  struct GNUNET_STATISTICS_Handle *statistics;
-
 };
 
 /**
@@ -237,7 +232,8 @@ template_plugin_address_pretty_printer (void *cls,
  */
 static int
 template_plugin_address_suggested (void *cls,
-                                  void *addr, size_t addrlen)
+                                  const void *addr,
+                                  size_t addrlen)
 {
   /* struct Plugin *plugin = cls; */
 
@@ -255,7 +251,7 @@ template_plugin_address_suggested (void *cls,
  *
  * @param cls closure
  * @param addr binary address
- * @param addr_len length of the address
+ * @param addrlen length of the address
  * @return string representing the same address 
  */
 static const char* 
@@ -282,7 +278,6 @@ gnunet_plugin_transport_template_init (void *cls)
 
   plugin = GNUNET_malloc (sizeof (struct Plugin));
   plugin->env = env;
-  plugin->statistics = NULL;
   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
   api->cls = plugin;
   api->send = &template_plugin_send;