aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-13 14:06:14 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-13 14:06:14 +0000
commit809befdaec48b27239d930b7e6b268c60c333612 (patch)
tree2187a70652e8cd86ae062adc1768d80df4ba1182 /src/include
parent577b1a0a9146bb2010427f32a1dd0ca8d16f77ad (diff)
downloadgnunet-809befdaec48b27239d930b7e6b268c60c333612.tar.gz
gnunet-809befdaec48b27239d930b7e6b268c60c333612.zip
API change to make mwachs happy
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_ats_service.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index afbb5d6c6..79be70ce4 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -61,6 +61,8 @@ struct Session;
61 * @param session session to use 61 * @param session session to use
62 * @param bandwidth_out assigned outbound bandwidth for the connection 62 * @param bandwidth_out assigned outbound bandwidth for the connection
63 * @param bandwidth_in assigned inbound bandwidth for the connection 63 * @param bandwidth_in assigned inbound bandwidth for the connection
64 * @param ats performance data for the address (as far as known)
65 * @param ats_count number of performance records in 'ats'
64 */ 66 */
65typedef void (*GNUNET_ATS_AddressSuggestionCallback) (void *cls, 67typedef void (*GNUNET_ATS_AddressSuggestionCallback) (void *cls,
66 const struct 68 const struct
@@ -75,7 +77,11 @@ typedef void (*GNUNET_ATS_AddressSuggestionCallback) (void *cls,
75 bandwidth_out, 77 bandwidth_out,
76 struct 78 struct
77 GNUNET_BANDWIDTH_Value32NBO 79 GNUNET_BANDWIDTH_Value32NBO
78 bandwidth_in); 80 bandwidth_in,
81 const struct
82 GNUNET_TRANSPORT_ATS_Information
83 * ats,
84 uint32_t ats_count);
79 85
80 86
81/** 87/**