not required
authorMatthias Wachs <wachs@net.in.tum.de>
Thu, 4 Oct 2012 12:52:46 +0000 (12:52 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Thu, 4 Oct 2012 12:52:46 +0000 (12:52 +0000)
src/transport/gnunet-service-transport_clients.c
src/transport/gnunet-service-transport_clients.h

index 848351f12ad2af5c2edbe48f7398f2cb1913ac4c..1beb39ff6d81c0320e17e6b61e4fb5acaf6f2973 100644 (file)
@@ -33,6 +33,7 @@
 #include "gnunet-service-transport.h"
 #include "transport.h"
 
+
 /**
  * How many messages can we have pending for a given client process
  * before we start to drop incoming messages?  We typically should
@@ -974,19 +975,6 @@ GST_clients_stop ()
   }
 }
 
-/**
- * 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)
-{
-  //FIXME: To be implemented
-}
-
 /**
  * Broadcast the given message to all of our clients.
  *
index 757780f9113bcf01b384d66d56082d52322dd04c..25d075864bbff9b6a436241a0be5d967147a7329 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.