aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_normalization.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-07-01 08:09:49 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-07-01 08:09:49 +0000
commit54ee92af601faa1d8fc37421f9b766eb8557cf65 (patch)
tree159c63f905f024739c987c0c397e6d20c2f1b1da /src/ats/gnunet-service-ats_normalization.h
parent7383b6f5745e344dd14abcd69c718d9d2c0b69f7 (diff)
downloadgnunet-54ee92af601faa1d8fc37421f9b766eb8557cf65.tar.gz
gnunet-54ee92af601faa1d8fc37421f9b766eb8557cf65.zip
doxygen fixes
Diffstat (limited to 'src/ats/gnunet-service-ats_normalization.h')
-rw-r--r--src/ats/gnunet-service-ats_normalization.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/ats/gnunet-service-ats_normalization.h b/src/ats/gnunet-service-ats_normalization.h
index 35906be7d..3637766f5 100644
--- a/src/ats/gnunet-service-ats_normalization.h
+++ b/src/ats/gnunet-service-ats_normalization.h
@@ -85,17 +85,20 @@ GAS_normalization_normalize_property (struct GNUNET_CONTAINER_MultiHashMap *addr
85 const struct GNUNET_ATS_Information *atsi, 85 const struct GNUNET_ATS_Information *atsi,
86 uint32_t atsi_count); 86 uint32_t atsi_count);
87 87
88
88/** 89/**
89 * Start the normalization component 90 * Start the normalization component
90 * 91 *
91 * @param pref_ch_cb callback to call on relative preference changing 92 * @param pref_ch_cb callback to call on relative preference changing
92 * @param pref_ch_cb_cls cls for the callback 93 * @param pref_ch_cb_cls cls for the preference callback
94 * @param property_ch_cb callback to call on relative property changing
95 * @param property_ch_cb_cls cls for the property callback
93 */ 96 */
94void 97void
95GAS_normalization_start (GAS_Normalization_preference_changed_cb pref_ch_cb, 98GAS_normalization_start (GAS_Normalization_preference_changed_cb pref_ch_cb,
96 void *pref_ch_cb_cls, 99 void *pref_ch_cb_cls,
97 GAS_Normalization_property_changed_cb property_ch_ch_cls, 100 GAS_Normalization_property_changed_cb property_ch_cb,
98 void *property_ch_cb_cls); 101 void *property_ch_cb_cls);
99 102
100 103
101/** 104/**