- use proper signedness
[oweals/gnunet.git] / src / transport / gnunet-service-transport_clients.h
index 757780f9113bcf01b384d66d56082d52322dd04c..6a140c788790de969fc28a64b929f281c3d9b4e7 100644 (file)
@@ -31,6 +31,7 @@
 #include "gnunet_hello_lib.h"
 
 
+
 /**
  * Start handling requests from clients.
  *
 void
 GST_clients_start (struct GNUNET_SERVER_Handle *server);
 
-/**
- * Tell clients how many bytes were used on the wire
- * Can differ from payload bytes depending on plugin
- *
- * @param n peer
- * @param send_phys bytes sent on the wire
- */
-void
-GST_clients_communicate_bytes_used (const struct GNUNET_PeerIdentity *n, ssize_t send_phys);
-
 
 /**
  * Stop processing clients.
@@ -61,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);
@@ -72,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,
@@ -86,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