aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/testbed.h')
-rw-r--r--src/testbed/testbed.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/testbed/testbed.h b/src/testbed/testbed.h
index ac8fed0a6..198f764b3 100644
--- a/src/testbed/testbed.h
+++ b/src/testbed/testbed.h
@@ -701,6 +701,30 @@ struct GNUNET_TESTBED_SlaveConfiguration
701 701
702}; 702};
703 703
704
705/**
706 * Message sent from a controller to the testbed API seeking the configuration
707 * of the host whose id is contained in the message.
708 */
709struct GNUNET_TESTBED_NeedControllerConfig
710{
711 /**
712 * Type is GNUNET_MESSAGE_TYPE_TESTBED_NEEDCONTROLLERCONFIG
713 */
714 struct GNUNET_MessageHeader header;
715
716 /**
717 * The id of the controller host
718 */
719 uint32_t controller_host_id GNUNET_PACKED;
720
721 /**
722 * Operation ID
723 */
724 uint64_t operation_id GNUNET_PACKED;
725
726};
727
704GNUNET_NETWORK_STRUCT_END 728GNUNET_NETWORK_STRUCT_END
705 729
706#endif 730#endif