- fix error messages
[oweals/gnunet.git] / src / transport / gnunet-service-transport_blacklist.h
index 4823d055dcbc5daf1ecc002c28191db7648435eb..a0ae5a959cbce7f9e4386db55b0db60b0942c99d 100644 (file)
  * Start blacklist subsystem.
  *
  * @param server server used to accept clients from
+ * @param cfg configuration handle
+ * @param my_id my peer id
  */
-void GST_blacklist_start (struct GNUNET_SERVER_Handle *server);
+void
+GST_blacklist_start (struct GNUNET_SERVER_Handle *server,
+                                                                                const struct GNUNET_CONFIGURATION_Handle *cfg,
+                                                                                const struct GNUNET_PeerIdentity *my_id);
 
 
 /**
  * Stop blacklist subsystem.
  */
-void GST_blacklist_stop (void);
+void
+GST_blacklist_stop (void);
 
 
 /**
@@ -53,10 +59,10 @@ void GST_blacklist_stop (void);
  * @param message the blacklist-init message that was sent
  */
 void
-GST_blacklist_handle_init (void *cls,
-                           struct GNUNET_SERVER_Client *client,
+GST_blacklist_handle_init (void *cls, struct GNUNET_SERVER_Client *client,
                            const struct GNUNET_MessageHeader *message);
 
+
 /**
  * A blacklisting client has sent us reply. Process it.
  *
@@ -65,13 +71,13 @@ GST_blacklist_handle_init (void *cls,
  * @param message the blacklist-init message that was sent
  */
 void
-GST_blacklist_handle_reply (void *cls,
-                            struct GNUNET_SERVER_Client *client,
+GST_blacklist_handle_reply (void *cls, struct GNUNET_SERVER_Client *client,
                             const struct GNUNET_MessageHeader *message);
 
+
 /**
  * Add the given peer to the blacklist (for the given transport).
- * 
+ *
  * @param peer peer to blacklist
  * @param transport_name transport to blacklist for this peer, NULL for all
  */
@@ -109,21 +115,19 @@ typedef void (*GST_BlacklistTestContinuation) (void *cls,
  * @return handle to the blacklist check, NULL if the decision
  *        was made instantly and 'cont' was already called
  */
-struct GST_BlacklistCheck *GST_blacklist_test_allowed (const struct
-                                                       GNUNET_PeerIdentity
-                                                       *peer,
-                                                       const char
-                                                       *transport_name,
-                                                       GST_BlacklistTestContinuation
-                                                       cont, void *cont_cls);
+struct GST_BlacklistCheck *
+GST_blacklist_test_allowed (const struct GNUNET_PeerIdentity *peer,
+                            const char *transport_name,
+                            GST_BlacklistTestContinuation cont, void *cont_cls);
 
 
 /**
  * Cancel a blacklist check.
- * 
+ *
  * @param bc check to cancel
  */
-void GST_blacklist_test_cancel (struct GST_BlacklistCheck *bc);
+void
+GST_blacklist_test_cancel (struct GST_BlacklistCheck *bc);
 
 #endif
 /* end of file gnunet-service-transport_blacklist.h */