aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_normalization.h
diff options
context:
space:
mode:
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/**