extend API to enalbe exclusive port ranges to be specified for testing-system objects
[oweals/gnunet.git] / src / include / gnunet_nse_service.h
index 2c5e2c75027b4efda4e77bb4dd846e1e9b3a68df..a0c6016a40a537189d95016cbb858afc8c18e9cd 100644 (file)
@@ -62,16 +62,15 @@ struct GNUNET_NSE_Handle;
  *
  */
 typedef void (*GNUNET_NSE_Callback) (void *cls,
-                                     struct GNUNET_TIME_AbsoluteNBO timestamp,
-                                    double logestimate, 
-                                    double std_dev);
+                                     struct GNUNET_TIME_Absolute timestamp,
+                                     double logestimate, double std_dev);
 
 
 /**
  * Convert the logarithmic estimated returned to the 'GNUNET_NSE_Callback'
  * into an absolute estimate in terms of the number of peers in the network.
  *
- * @param loge logarithmic estimate 
+ * @param loge logarithmic estimate
  * @return absolute number of peers in the network (estimated)
  */
 #define GNUNET_NSE_log_estimate_to_n(loge) pow(2.0, (loge))