aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_clients.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-10-04 12:47:33 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-10-04 12:47:33 +0000
commit32819ab9c5f4366788088ff39792f4c7066c0f31 (patch)
treea54051a4f9b488a462be9f49ba03ef7a18c9a6ab /src/transport/gnunet-service-transport_clients.c
parente8a76652365d6c1bd6bd4903b2b4ba72447c961b (diff)
downloadgnunet-32819ab9c5f4366788088ff39792f4c7066c0f31.tar.gz
gnunet-32819ab9c5f4366788088ff39792f4c7066c0f31.zip
fix type issue
Diffstat (limited to 'src/transport/gnunet-service-transport_clients.c')
-rw-r--r--src/transport/gnunet-service-transport_clients.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/transport/gnunet-service-transport_clients.c b/src/transport/gnunet-service-transport_clients.c
index 294af9ba9..848351f12 100644
--- a/src/transport/gnunet-service-transport_clients.c
+++ b/src/transport/gnunet-service-transport_clients.c
@@ -974,6 +974,18 @@ GST_clients_stop ()
974 } 974 }
975} 975}
976 976
977/**
978 * Tell clients how many bytes were used on the wire
979 * Can differ from payload bytes depending on plugin
980 *
981 * @param n peer
982 * @param send_phys bytes sent on the wire
983 */
984void
985GST_clients_communicate_bytes_used (const struct GNUNET_PeerIdentity *n, ssize_t send_phys)
986{
987 //FIXME: To be implemented
988}
977 989
978/** 990/**
979 * Broadcast the given message to all of our clients. 991 * Broadcast the given message to all of our clients.