error msg
[oweals/gnunet.git] / src / transport / gnunet-service-transport_blacklist.h
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/gnunet-service-transport_blacklist.h
23  * @brief blacklisting API
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_TRANSPORT_BLACKLIST_H
27 #define GNUNET_SERVICE_TRANSPORT_BLACKLIST_H
28
29 #include "gnunet_statistics_service.h"
30 #include "gnunet_util_lib.h"
31
32 /**
33  * Start blacklist subsystem.
34  *
35  * @param server server used to accept clients from
36  */
37 void
38 GST_blacklist_start (struct GNUNET_SERVER_Handle *server);
39
40
41 /**
42  * Stop blacklist subsystem.
43  */
44 void
45 GST_blacklist_stop (void);
46
47
48 /**
49  * Initialize a blacklisting client.  We got a blacklist-init
50  * message from this client, add him to the list of clients
51  * to query for blacklisting.
52  *
53  * @param cls unused
54  * @param client the client
55  * @param message the blacklist-init message that was sent
56  */
57 void
58 GST_blacklist_handle_init (void *cls, struct GNUNET_SERVER_Client *client,
59                            const struct GNUNET_MessageHeader *message);
60
61
62 /**
63  * A blacklisting client has sent us reply. Process it.
64  *
65  * @param cls unused
66  * @param client the client
67  * @param message the blacklist-init message that was sent
68  */
69 void
70 GST_blacklist_handle_reply (void *cls, struct GNUNET_SERVER_Client *client,
71                             const struct GNUNET_MessageHeader *message);
72
73
74 /**
75  * Add the given peer to the blacklist (for the given transport).
76  *
77  * @param peer peer to blacklist
78  * @param transport_name transport to blacklist for this peer, NULL for all
79  */
80 void
81 GST_blacklist_add_peer (const struct GNUNET_PeerIdentity *peer,
82                         const char *transport_name);
83
84
85 /**
86  * Handle to an active blacklist check.
87  */
88 struct GST_BlacklistCheck;
89
90
91 /**
92  * Continuation called from a blacklist test.
93  *
94  * @param cls closure
95  * @param peer identity of peer that was tested
96  * @param result GNUNET_OK if the connection is allowed,
97  *               GNUNET_NO if not
98  */
99 typedef void (*GST_BlacklistTestContinuation) (void *cls,
100                                                const struct GNUNET_PeerIdentity
101                                                * peer, int result);
102
103
104 /**
105  * Test if a peer/transport combination is blacklisted.
106  *
107  * @param peer the identity of the peer to test
108  * @param transport_name name of the transport to test, never NULL
109  * @param cont function to call with result
110  * @param cont_cls closure for 'cont'
111  * @return handle to the blacklist check, NULL if the decision
112  *        was made instantly and 'cont' was already called
113  */
114 struct GST_BlacklistCheck *
115 GST_blacklist_test_allowed (const struct GNUNET_PeerIdentity *peer,
116                             const char *transport_name,
117                             GST_BlacklistTestContinuation cont, void *cont_cls);
118
119
120 /**
121  * Cancel a blacklist check.
122  *
123  * @param bc check to cancel
124  */
125 void
126 GST_blacklist_test_cancel (struct GST_BlacklistCheck *bc);
127
128 #endif
129 /* end of file gnunet-service-transport_blacklist.h */