moved common sensor functionality to a util lib
[oweals/gnunet.git] / src / sensor / sensor.h
index 0a301327d0b31a5977a8dae02498f0aa5f462ec1..d64907250338133cf127786a6cb105518ff64719 100644 (file)
@@ -24,6 +24,7 @@
  */
 
 #include "gnunet_sensor_service.h"
+#include "gnunet_sensor_util_lib.h"
 
 
 GNUNET_NETWORK_STRUCT_BEGIN
@@ -77,3 +78,19 @@ void SENSOR_analysis_stop();
 int
 SENSOR_analysis_start(const struct GNUNET_CONFIGURATION_Handle *c,
     struct GNUNET_CONTAINER_MultiHashMap *sensors_mhm);
+
+/**
+ * Stop sensor reporting module
+ */
+void SENSOR_reporting_stop();
+
+/**
+ * Start the sensor reporting module
+ *
+ * @param c our service configuration
+ * @param sensors multihashmap of loaded sensors
+ * @return #GNUNET_OK if started successfully, #GNUNET_SYSERR otherwise
+ */
+int
+SENSOR_reporting_start(const struct GNUNET_CONFIGURATION_Handle *c,
+    struct GNUNET_CONTAINER_MultiHashMap *sensors);