clique topology
[oweals/gnunet.git] / src / testbed / testbed_helper.h
index 6fa35f08b8f9667ad92c7bcf97b7b6e837102254..8a3ea55e0edcd8ab41f45f34c591a365d9e23cdd 100644 (file)
 /**
  * @file testbed/testbed_helper.h
  * @brief Message formats for communication between testbed api and
- *          gnunet-testbed-helper process
- * @author Sree Harsha Totakura <sreeharsha@totakura.in> 
+ *          gnunet-helper-testbed process
+ * @author Sree Harsha Totakura <sreeharsha@totakura.in>
  */
 
 #ifndef TESTBED_HELPER_H
 #define TESTBED_HELPER_H
 
+GNUNET_NETWORK_STRUCT_BEGIN
+
 /**
- * Initialization message for gnunet-testbed-helper to start testbed service
+ * Initialization message for gnunet-helper-testbed to start testbed service
  */
 struct GNUNET_TESTBED_HelperInit
 {
@@ -40,19 +42,28 @@ struct GNUNET_TESTBED_HelperInit
 
   /**
    * The controller hostname size excluding the NULL termination character -
-   * strlen (hostname); cannot be zero 
+   * strlen (hostname); cannot be zero
    */
   uint16_t cname_size GNUNET_PACKED;
 
+  /**
+   * The hostname size excluding the NULL termination character - strlen
+   * (hostname); cannot be zero
+   */
+  uint16_t hostname_size GNUNET_PACKED;
+
   /**
    * The size of the uncompressed configuration
    */
   uint16_t config_size GNUNET_PACKED;
 
   /* Followed by NULL terminated controller hostname */
-  
+
+  /* Followed by hostname of the machine on which helper runs. This is not NULL
+     terminated */
+
   /* Followed by serialized and compressed configuration which should be
-     config_size long when un-compressed */
+   * config_size long when un-compressed */
 };
 
 /**
@@ -71,7 +82,11 @@ struct GNUNET_TESTBED_HelperReply
   uint16_t config_size GNUNET_PACKED;
 
   /* Followed by compressed configuration which should be config_size long when
-     un-compressed */
+   * un-compressed */
 };
 
+GNUNET_NETWORK_STRUCT_END
+
 #endif
+
+/* end of testbed_helper.h */