- use proper signedness
[oweals/gnunet.git] / src / transport / plugin_transport_template.c
index abcae511106a3eb339a6b31d62ca324417f8c080..f39db3e7961949081c3f79937bb2b4fd3acc039e 100644 (file)
@@ -378,6 +378,13 @@ template_plugin_get_session (void *cls,
   return NULL;
 }
 
+static void
+template_plugin_update_session_timeout (void *cls,
+                                  const struct GNUNET_PeerIdentity *peer,
+                                  struct Session *session)
+{
+
+}
 
 /**
  * Entry point for the plugin.
@@ -415,6 +422,7 @@ libgnunet_plugin_transport_template_init (void *cls)
   api->string_to_address = &template_plugin_string_to_address;
   api->get_session = &template_plugin_get_session;
   api->get_network = &template_plugin_get_network;
+  api->update_session_timeout = &template_plugin_update_session_timeout;
   LOG (GNUNET_ERROR_TYPE_INFO, "Template plugin successfully loaded\n");
   return api;
 }