aboutsummaryrefslogtreecommitdiff
path: root/src/nse
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-01 08:11:40 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-01 08:11:40 +0000
commit1f00142aa86a7dedc302f8dea29dc5e0609a1b52 (patch)
tree60aae64737e32349067d3278e4c977912618d881 /src/nse
parent9aa125f8abd4d1e87df7d8d941f8c0ccae2c1a56 (diff)
downloadgnunet-1f00142aa86a7dedc302f8dea29dc5e0609a1b52.tar.gz
gnunet-1f00142aa86a7dedc302f8dea29dc5e0609a1b52.zip
fix
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/test_nse_multipeer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nse/test_nse_multipeer.c b/src/nse/test_nse_multipeer.c
index 277f73b21..e15892bce 100644
--- a/src/nse/test_nse_multipeer.c
+++ b/src/nse/test_nse_multipeer.c
@@ -112,13 +112,16 @@ shutdown_task (void *cls,
112 * Callback to call when network size estimate is updated. 112 * Callback to call when network size estimate is updated.
113 * 113 *
114 * @param cls closure 114 * @param cls closure
115 * @param timestamp server timestamp
115 * @param estimate the value of the current network size estimate 116 * @param estimate the value of the current network size estimate
116 * @param std_dev standard deviation (rounded down to nearest integer) 117 * @param std_dev standard deviation (rounded down to nearest integer)
117 * of the size estimation values seen 118 * of the size estimation values seen
118 * 119 *
119 */ 120 */
120static void 121static void
121handle_estimate (void *cls, double estimate, double std_dev) 122handle_estimate (void *cls,
123 struct GNUNET_TIME_Absolute timestamp,
124 double estimate, double std_dev)
122{ 125{
123 struct NSEPeer *peer = cls; 126 struct NSEPeer *peer = cls;
124 127