aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-12 12:47:14 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-12 12:47:14 +0000
commitb0fdd8eba09319b893fab2dd4945d6dab9cd704c (patch)
treeb89a3e325e3a45801a9d7b6ae0951de69fbbcf63 /src/include
parentccdfb051fa386bb44024d53540b0a29ab7bd725e (diff)
downloadgnunet-b0fdd8eba09319b893fab2dd4945d6dab9cd704c.tar.gz
gnunet-b0fdd8eba09319b893fab2dd4945d6dab9cd704c.zip
switch api
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_ats_service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index 64ed9a9a3..0001bd1e5 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -99,6 +99,7 @@ GNUNET_ATS_shutdown (struct GNUNET_ATS_Handle *atc);
99 * @param plugin_name name of the plugin, NULL if we have no suggestion 99 * @param plugin_name name of the plugin, NULL if we have no suggestion
100 * @param plugin_addr suggested address, NULL if we have no suggestion 100 * @param plugin_addr suggested address, NULL if we have no suggestion
101 * @param plugin_addr_len number of bytes in plugin_addr 101 * @param plugin_addr_len number of bytes in plugin_addr
102 * @param bandwidth assigned outbound bandwidth for the connection
102 * @param ats performance data for the address (as far as known) 103 * @param ats performance data for the address (as far as known)
103 * @param ats_count number of performance records in 'ats' 104 * @param ats_count number of performance records in 'ats'
104 */ 105 */
@@ -108,6 +109,7 @@ typedef void (*GNUNET_ATS_AddressSuggestionCallback)(void *cls,
108 const char *plugin_name, 109 const char *plugin_name,
109 const void *plugin_addr, 110 const void *plugin_addr,
110 size_t plugin_addr_len, 111 size_t plugin_addr_len,
112 struct GNUNET_BANDWIDTH_Value32NBO bandwidth,
111 const struct GNUNET_TRANSPORT_ATS_Information *ats, 113 const struct GNUNET_TRANSPORT_ATS_Information *ats,
112 uint32_t ats_count); 114 uint32_t ats_count);
113 115