aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_clients.h
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.h
parente8a76652365d6c1bd6bd4903b2b4ba72447c961b (diff)
downloadgnunet-32819ab9c5f4366788088ff39792f4c7066c0f31.tar.gz
gnunet-32819ab9c5f4366788088ff39792f4c7066c0f31.zip
fix type issue
Diffstat (limited to 'src/transport/gnunet-service-transport_clients.h')
-rw-r--r--src/transport/gnunet-service-transport_clients.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/transport/gnunet-service-transport_clients.h b/src/transport/gnunet-service-transport_clients.h
index 9556620dd..757780f91 100644
--- a/src/transport/gnunet-service-transport_clients.h
+++ b/src/transport/gnunet-service-transport_clients.h
@@ -39,6 +39,16 @@
39void 39void
40GST_clients_start (struct GNUNET_SERVER_Handle *server); 40GST_clients_start (struct GNUNET_SERVER_Handle *server);
41 41
42/**
43 * Tell clients how many bytes were used on the wire
44 * Can differ from payload bytes depending on plugin
45 *
46 * @param n peer
47 * @param send_phys bytes sent on the wire
48 */
49void
50GST_clients_communicate_bytes_used (const struct GNUNET_PeerIdentity *n, ssize_t send_phys);
51
42 52
43/** 53/**
44 * Stop processing clients. 54 * Stop processing clients.