aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-08-29 15:35:43 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-08-29 15:35:43 +0000
commit1c8365e96ffb75fcae3729c1358f37a78559e93d (patch)
treee862a1aff8a72be17c4f8748b2c0e7088bf60286 /src/include
parentf5136eb1b1a24c5b307ce8123dfc4cc0c85facaf (diff)
downloadgnunet-1c8365e96ffb75fcae3729c1358f37a78559e93d.tar.gz
gnunet-1c8365e96ffb75fcae3729c1358f37a78559e93d.zip
rename to match api name
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_ats_service.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index 9a4bb6d6b..d5db26720 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -772,7 +772,6 @@ GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
772 GNUNET_ATS_AddressInformationCallback addr_info_cb, 772 GNUNET_ATS_AddressInformationCallback addr_info_cb,
773 void *addr_info_cb_cls); 773 void *addr_info_cb_cls);
774 774
775
776/** 775/**
777 * Get information about addresses known to the ATS subsystem. 776 * Get information about addresses known to the ATS subsystem.
778 * 777 *
@@ -929,10 +928,21 @@ GNUNET_ATS_print_preference_type (uint32_t type);
929 * @param ... 0-terminated specification of the desired changes 928 * @param ... 0-terminated specification of the desired changes
930 */ 929 */
931void 930void
932GNUNET_ATS_change_preference (struct GNUNET_ATS_PerformanceHandle *ph, 931GNUNET_ATS_performance_change_preference (struct GNUNET_ATS_PerformanceHandle *ph,
933 const struct GNUNET_PeerIdentity *peer, ...); 932 const struct GNUNET_PeerIdentity *peer, ...);
934 933
935 934
935/**
936 * Send feedback to ATS on how good a the requirements for a peer and a
937 * preference is satisfied by ATS
938 *
939 * @param ph performance handle
940 * @param peer identifies the peer
941 * @param ... 0-terminated specification of the desired changes
942 */
943void
944GNUNET_ATS_performance_give_feedback (struct GNUNET_ATS_PerformanceHandle *ph,
945 const struct GNUNET_PeerIdentity *peer, ...);
936 946
937#endif 947#endif
938/* end of file gnunet-service-transport_ats.h */ 948/* end of file gnunet-service-transport_ats.h */