- use proper signedness
[oweals/gnunet.git] / src / transport / gnunet-service-transport_clients.h
index 9556620dd5021405a7939d9072b376585ceb0f41..6a140c788790de969fc28a64b929f281c3d9b4e7 100644 (file)
@@ -31,6 +31,7 @@
 #include "gnunet_hello_lib.h"
 
 
+
 /**
  * Start handling requests from clients.
  *
@@ -51,7 +52,7 @@ GST_clients_stop (void);
  * Broadcast the given message to all of our clients.
  *
  * @param msg message to broadcast
- * @param may_drop GNUNET_YES if the message can be dropped / is payload
+ * @param may_drop #GNUNET_YES if the message can be dropped / is payload
  */
 void
 GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, int may_drop);
@@ -62,7 +63,7 @@ GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, int may_drop);
  *
  * @param client target of the message
  * @param msg message to transmit
- * @param may_drop GNUNET_YES if the message can be dropped
+ * @param may_drop #GNUNET_YES if the message can be dropped
  */
 void
 GST_clients_unicast (struct GNUNET_SERVER_Client *client,
@@ -76,10 +77,8 @@ GST_clients_unicast (struct GNUNET_SERVER_Client *client,
  * @param address address, NULL on disconnect
  */
 void
-GST_clients_broadcast_address_notification (const struct GNUNET_PeerIdentity
-                                            *peer,
-                                            const struct GNUNET_HELLO_Address
-                                            *address);
+GST_clients_broadcast_address_notification (const struct GNUNET_PeerIdentity *peer,
+                                            const struct GNUNET_HELLO_Address *address);
 
 
 #endif