aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_performance.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-10 23:24:01 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-10 23:24:01 +0000
commit1c323bd4cbb388a9e7515a1f733a3062bf093aee (patch)
tree7cc525d79149d44840b9f7a0040aaf3e69ecd665 /src/ats/gnunet-service-ats_performance.h
parentaedaaed687db1ff20b447378f01ad7306921450c (diff)
downloadgnunet-1c323bd4cbb388a9e7515a1f733a3062bf093aee.tar.gz
gnunet-1c323bd4cbb388a9e7515a1f733a3062bf093aee.zip
fixing #3657 (replace ATS_Information with struct), but WIHTOUT fixing ATS testcases yet
Diffstat (limited to 'src/ats/gnunet-service-ats_performance.h')
-rw-r--r--src/ats/gnunet-service-ats_performance.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ats/gnunet-service-ats_performance.h b/src/ats/gnunet-service-ats_performance.h
index 87712552f..abdeb975f 100644
--- a/src/ats/gnunet-service-ats_performance.h
+++ b/src/ats/gnunet-service-ats_performance.h
@@ -44,8 +44,7 @@
44 * to maintain a connection to a peer; 44 * to maintain a connection to a peer;
45 * #GNUNET_NO if the address is not actively used; 45 * #GNUNET_NO if the address is not actively used;
46 * #GNUNET_SYSERR if this address is no longer available for ATS 46 * #GNUNET_SYSERR if this address is no longer available for ATS
47 * @param atsi performance data for the address 47 * @param prop performance data for the address
48 * @param atsi_count number of performance records in @a atsi
49 * @param bandwidth_out assigned outbound bandwidth 48 * @param bandwidth_out assigned outbound bandwidth
50 * @param bandwidth_in assigned inbound bandwidth 49 * @param bandwidth_in assigned inbound bandwidth
51 */ 50 */
@@ -55,8 +54,7 @@ GAS_performance_notify_all_clients (const struct GNUNET_PeerIdentity *peer,
55 const void *plugin_addr, 54 const void *plugin_addr,
56 size_t plugin_addr_len, 55 size_t plugin_addr_len,
57 int active, 56 int active,
58 const struct GNUNET_ATS_Information *atsi, 57 const struct GNUNET_ATS_Properties *prop,
59 uint32_t atsi_count,
60 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, 58 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
61 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in); 59 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
62 60