aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_nse_service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_nse_service.h b/src/include/gnunet_nse_service.h
index 7a670a584..2c5e2c750 100644
--- a/src/include/gnunet_nse_service.h
+++ b/src/include/gnunet_nse_service.h
@@ -56,11 +56,13 @@ struct GNUNET_NSE_Handle;
56 * Callback to call when network size estimate is updated. 56 * Callback to call when network size estimate is updated.
57 * 57 *
58 * @param cls closure 58 * @param cls closure
59 * @param timestamp time when the estimate was received from the server (or created by the server)
59 * @param logestimate the log(Base 2) value of the current network size estimate 60 * @param logestimate the log(Base 2) value of the current network size estimate
60 * @param std_dev standard deviation for the estimate 61 * @param std_dev standard deviation for the estimate
61 * 62 *
62 */ 63 */
63typedef void (*GNUNET_NSE_Callback) (void *cls, 64typedef void (*GNUNET_NSE_Callback) (void *cls,
65 struct GNUNET_TIME_AbsoluteNBO timestamp,
64 double logestimate, 66 double logestimate,
65 double std_dev); 67 double std_dev);
66 68