-fix warning
[oweals/gnunet.git] / src / sensor / sensor.h
index c5dd3bb1b354aad462e98d86487fd210f45cbe6f..521f931ce47bb1d28fbea7f355459e45bb319cb5 100644 (file)
@@ -40,9 +40,9 @@ GNUNET_NETWORK_STRUCT_BEGIN
   struct GNUNET_MessageHeader header;
 
   /**
-   * Length of sensor name (name follows the struct)
+   * Length of sensor name. Allocated at position 0 after this struct.
    */
-  size_t name_len;
+  uint16_t name_len;
 
   /**
    * First part of version number
@@ -55,9 +55,32 @@ GNUNET_NETWORK_STRUCT_BEGIN
   uint16_t version_minor;
 
   /**
-   * Length of sensor description (description itself follows)
+   * Length of sensor description. Allocated at position 1 after this struct.
    */
-  size_t description_len;
+  uint16_t description_len;
+};
+
+/**
+ * A message sent to the sensor service to force an anomaly status on a sensor.
+ */
+struct ForceAnomalyMessage
+{
+
+  /**
+   * Message header
+   */
+  struct GNUNET_MessageHeader header;
+
+  /**
+   * Hash of the sensor name
+   */
+  struct GNUNET_HashCode sensor_name_hash;
+
+  /**
+   * New status
+   */
+  uint16_t anomalous;
+
 };
 
 GNUNET_NETWORK_STRUCT_END
@@ -107,7 +130,7 @@ SENSOR_reporting_anomaly_update (struct GNUNET_SENSOR_SensorInfo *sensor,
  */
 int
 SENSOR_reporting_start (const struct GNUNET_CONFIGURATION_Handle *c,
-                                struct GNUNET_CONTAINER_MultiHashMap *s);
+                        struct GNUNET_CONTAINER_MultiHashMap *s);
 
 
 /**
@@ -146,4 +169,4 @@ SENSOR_monitoring_stop ();
  */
 int
 SENSOR_monitoring_start (const struct GNUNET_CONFIGURATION_Handle *c,
-                       struct GNUNET_CONTAINER_MultiHashMap *s);
+                         struct GNUNET_CONTAINER_MultiHashMap *s);