aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_blacklist.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:51:21 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:51:21 +0000
commit6fd3e715cae09fa6e657c96f1c6f9711ee51f42f (patch)
treeedbc42f37889069033e57da201fef242939a6e0f /src/transport/gnunet-service-transport_blacklist.h
parent502af2167f7c218366666ca4944bd7cc54b5b19a (diff)
downloadgnunet-6fd3e715cae09fa6e657c96f1c6f9711ee51f42f.tar.gz
gnunet-6fd3e715cae09fa6e657c96f1c6f9711ee51f42f.zip
indentation
Diffstat (limited to 'src/transport/gnunet-service-transport_blacklist.h')
-rw-r--r--src/transport/gnunet-service-transport_blacklist.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/transport/gnunet-service-transport_blacklist.h b/src/transport/gnunet-service-transport_blacklist.h
index 4823d055d..7e88b3961 100644
--- a/src/transport/gnunet-service-transport_blacklist.h
+++ b/src/transport/gnunet-service-transport_blacklist.h
@@ -52,10 +52,8 @@ void GST_blacklist_stop (void);
52 * @param client the client 52 * @param client the client
53 * @param message the blacklist-init message that was sent 53 * @param message the blacklist-init message that was sent
54 */ 54 */
55void 55void GST_blacklist_handle_init (void *cls, struct GNUNET_SERVER_Client *client,
56GST_blacklist_handle_init (void *cls, 56 const struct GNUNET_MessageHeader *message);
57 struct GNUNET_SERVER_Client *client,
58 const struct GNUNET_MessageHeader *message);
59 57
60/** 58/**
61 * A blacklisting client has sent us reply. Process it. 59 * A blacklisting client has sent us reply. Process it.
@@ -64,10 +62,8 @@ GST_blacklist_handle_init (void *cls,
64 * @param client the client 62 * @param client the client
65 * @param message the blacklist-init message that was sent 63 * @param message the blacklist-init message that was sent
66 */ 64 */
67void 65void GST_blacklist_handle_reply (void *cls, struct GNUNET_SERVER_Client *client,
68GST_blacklist_handle_reply (void *cls, 66 const struct GNUNET_MessageHeader *message);
69 struct GNUNET_SERVER_Client *client,
70 const struct GNUNET_MessageHeader *message);
71 67
72/** 68/**
73 * Add the given peer to the blacklist (for the given transport). 69 * Add the given peer to the blacklist (for the given transport).
@@ -75,9 +71,8 @@ GST_blacklist_handle_reply (void *cls,
75 * @param peer peer to blacklist 71 * @param peer peer to blacklist
76 * @param transport_name transport to blacklist for this peer, NULL for all 72 * @param transport_name transport to blacklist for this peer, NULL for all
77 */ 73 */
78void 74void GST_blacklist_add_peer (const struct GNUNET_PeerIdentity *peer,
79GST_blacklist_add_peer (const struct GNUNET_PeerIdentity *peer, 75 const char *transport_name);
80 const char *transport_name);
81 76
82 77
83/** 78/**