aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_normalization.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-06-25 09:58:00 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-06-25 09:58:00 +0000
commitefecad9df3e8847f45a4284ec717c32260460adc (patch)
tree703aab4408f54e4933869252406a3f4f77ccb9d4 /src/ats/gnunet-service-ats_normalization.h
parentc83d77d730a4ae94dff88ec0c6801fde14490f65 (diff)
downloadgnunet-efecad9df3e8847f45a4284ec717c32260460adc.tar.gz
gnunet-efecad9df3e8847f45a4284ec717c32260460adc.zip
completed normalizing with min max handlin
Diffstat (limited to 'src/ats/gnunet-service-ats_normalization.h')
-rw-r--r--src/ats/gnunet-service-ats_normalization.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ats/gnunet-service-ats_normalization.h b/src/ats/gnunet-service-ats_normalization.h
index 75158ac72..35906be7d 100644
--- a/src/ats/gnunet-service-ats_normalization.h
+++ b/src/ats/gnunet-service-ats_normalization.h
@@ -74,12 +74,14 @@ GAS_normalization_normalize_preference (void *src,
74/** 74/**
75 * Update and normalize a atsi performance information 75 * Update and normalize a atsi performance information
76 * 76 *
77 * @param addresses hashmap containing all addresses
77 * @param address the address to update 78 * @param address the address to update
78 * @param atsi the array of performance information 79 * @param atsi the array of performance information
79 * @param atsi_count the number of atsi information in the array 80 * @param atsi_count the number of atsi information in the array
80 */ 81 */
81void 82void
82GAS_normalization_normalize_property (struct ATS_Address *address, 83GAS_normalization_normalize_property (struct GNUNET_CONTAINER_MultiHashMap *addresses,
84 struct ATS_Address *address,
83 const struct GNUNET_ATS_Information *atsi, 85 const struct GNUNET_ATS_Information *atsi,
84 uint32_t atsi_count); 86 uint32_t atsi_count);
85 87