remove send on connect
[oweals/gnunet.git] / src / include / gnunet_nse_service.h
1 /*
2       This file is part of GNUnet
3       (C) 2011 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 2, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef GNUNET_NSE_SERVICE_H_
22 #define GNUNET_NSE_SERVICE_H_
23
24 /**
25  * @file include/gnunet_nse_service.h
26  * @brief API to retrieve the current network size estimate,
27  *        also to register for notifications whenever a new
28  *        network size estimate is calculated.
29  *
30  * @author Nathan Evans
31  */
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #if 0                           /* keep Emacsens' auto-indent happy */
37 }
38 #endif
39 #endif
40
41 #include "gnunet_common.h"
42 #include "gnunet_configuration_lib.h"
43 #include "gnunet_scheduler_lib.h"
44
45 /**
46  * Version of the network size estimation API.
47  */
48 #define GNUNET_NSE_VERSION 0x00000000
49
50 /**
51  * Handle for the network size estimation service.
52  */
53 struct GNUNET_NSE_Handle;
54
55 /**
56  * Callback to call when network size estimate is updated.
57  *
58  * @param cls closure
59  * @param logestimate the log(Base 2) value of the current network size estimate
60  * @param std_dev standard deviation for the estimate
61  *
62  */
63 typedef void (*GNUNET_NSE_Callback) (void *cls,
64                                      double logestimate, 
65                                      double std_dev);
66
67
68 /**
69  * Convert the logarithmic estimated returned to the 'GNUNET_NSE_Callback'
70  * into an absolute estimate in terms of the number of peers in the network.
71  *
72  * @param loge logarithmic estimate 
73  * @return absolute number of peers in the network (estimated)
74  */
75 #define GNUNET_NSE_log_estimate_to_n(loge) pow(2.0, (loge))
76
77 /**
78  * Connect to the network size estimation service.
79  *
80  * @param cfg the configuration to use
81  * @param func funtion to call with network size estimate
82  * @param func_cls closure to pass for network size estimate callback
83  *
84  * @return handle to use
85  */
86 struct GNUNET_NSE_Handle *
87 GNUNET_NSE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
88                     GNUNET_NSE_Callback func, void *func_cls);
89
90
91 /**
92  * Disconnect from network size estimation service
93  *
94  * @param h handle to destroy
95  *
96  */
97 void
98 GNUNET_NSE_disconnect (struct GNUNET_NSE_Handle *h);
99
100
101 #if 0                           /* keep Emacsens' auto-indent happy */
102 {
103 #endif
104 #ifdef __cplusplus
105 }
106 #endif
107
108 #endif /* GNUNET_NSE_SERVICE_H_ */