aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_clients.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-service-transport_clients.h')
-rw-r--r--src/transport/gnunet-service-transport_clients.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/transport/gnunet-service-transport_clients.h b/src/transport/gnunet-service-transport_clients.h
index 6bcc18cd3..aae7ba89f 100644
--- a/src/transport/gnunet-service-transport_clients.h
+++ b/src/transport/gnunet-service-transport_clients.h
@@ -35,13 +35,15 @@
35 * 35 *
36 * @param server server used to accept clients from. 36 * @param server server used to accept clients from.
37 */ 37 */
38void GST_clients_start (struct GNUNET_SERVER_Handle *server); 38void
39GST_clients_start (struct GNUNET_SERVER_Handle *server);
39 40
40 41
41/** 42/**
42 * Stop processing clients. 43 * Stop processing clients.
43 */ 44 */
44void GST_clients_stop (void); 45void
46GST_clients_stop (void);
45 47
46 48
47/** 49/**
@@ -50,8 +52,8 @@ void GST_clients_stop (void);
50 * @param msg message to broadcast 52 * @param msg message to broadcast
51 * @param may_drop GNUNET_YES if the message can be dropped 53 * @param may_drop GNUNET_YES if the message can be dropped
52 */ 54 */
53void GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, 55void
54 int may_drop); 56GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, int may_drop);
55 57
56 58
57/** 59/**
@@ -61,8 +63,9 @@ void GST_clients_broadcast (const struct GNUNET_MessageHeader *msg,
61 * @param msg message to transmit 63 * @param msg message to transmit
62 * @param may_drop GNUNET_YES if the message can be dropped 64 * @param may_drop GNUNET_YES if the message can be dropped
63 */ 65 */
64void GST_clients_unicast (struct GNUNET_SERVER_Client *client, 66void
65 const struct GNUNET_MessageHeader *msg, int may_drop); 67GST_clients_unicast (struct GNUNET_SERVER_Client *client,
68 const struct GNUNET_MessageHeader *msg, int may_drop);
66 69
67 70
68 71