aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_plugins.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_plugins.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_plugins.h')
-rw-r--r--src/ats/gnunet-service-ats_plugins.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/ats/gnunet-service-ats_plugins.h b/src/ats/gnunet-service-ats_plugins.h
index 7d76f6431..66eafa4c8 100644
--- a/src/ats/gnunet-service-ats_plugins.h
+++ b/src/ats/gnunet-service-ats_plugins.h
@@ -65,16 +65,12 @@ GAS_plugin_notify_preference_changed (const struct GNUNET_PeerIdentity *peer,
65 65
66 66
67/** 67/**
68 * The relative value for a property changed 68 * The relative value for a property changed.
69 * 69 *
70 * @param address the peer 70 * @param address the peer
71 * @param type the ATS type
72 * @param prop_rel the new relative property value
73 */ 71 */
74void 72void
75GAS_plugin_notify_property_changed (struct ATS_Address *address, 73GAS_plugin_notify_property_changed (struct ATS_Address *address);
76 enum GNUNET_ATS_Property type,
77 double prop_rel);
78 74
79 75
80/** 76/**
@@ -85,8 +81,7 @@ GAS_plugin_notify_property_changed (struct ATS_Address *address,
85 * @param addr_net network scope the address is in 81 * @param addr_net network scope the address is in
86 */ 82 */
87void 83void
88GAS_plugin_new_address (struct ATS_Address *new_address, 84GAS_plugin_new_address (struct ATS_Address *new_address);
89 enum GNUNET_ATS_Network_Type addr_net);
90 85
91 86
92/** 87/**