aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_helper.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-07-17 22:25:44 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-07-17 22:25:44 +0000
commit253d546750130fc4471a7c53355b6f5d58326fc3 (patch)
treeb7c567693f7a4c2e47782d3b05538d8586942dd4 /src/testbed/testbed_helper.h
parent89daff335a418fb67ce8ea4d3e1e128e96d19877 (diff)
downloadgnunet-253d546750130fc4471a7c53355b6f5d58326fc3.tar.gz
gnunet-253d546750130fc4471a7c53355b6f5d58326fc3.zip
helper reply with modified config
Diffstat (limited to 'src/testbed/testbed_helper.h')
-rw-r--r--src/testbed/testbed_helper.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/testbed/testbed_helper.h b/src/testbed/testbed_helper.h
index 8780d7e98..8b3c84dde 100644
--- a/src/testbed/testbed_helper.h
+++ b/src/testbed/testbed_helper.h
@@ -52,7 +52,26 @@ struct GNUNET_TESTBED_HelperInit
52 /* Followed by NULL terminated controller hostname */ 52 /* Followed by NULL terminated controller hostname */
53 53
54 /* Followed by serialized and compressed configuration which should be 54 /* Followed by serialized and compressed configuration which should be
55 config_size long */ 55 config_size long when un-compressed */
56};
57
58/**
59 * Reply message from helper process
60 */
61struct GNUNET_TESTBED_HelperReply
62{
63 /**
64 * Type is GNUNET_MESSAGE_TYPE_TESTBED_HELPER_REPLY
65 */
66 struct GNUNET_MessageHeader header;
67
68 /**
69 * Size of the uncompressed configuration
70 */
71 uint16_t config_size GNUNET_PACKED;
72
73 /* Followed by compressed configuration which should be config_size long when
74 un-compressed */
56}; 75};
57 76
58#endif 77#endif