include "aos/configuration.fbs"; | |
namespace aos.message_bridge; | |
// This is the message sent to initiate a connection to a message_bridge. | |
// It communicates the channels that need to be forwarded back. | |
table Connect { | |
// The node making the request. | |
node:aos.Node (id: 0); | |
// The channels that we want transfered to this client. | |
channels_to_transfer:[Channel] (id: 1); | |
// The UUID that this node booted with. | |
boot_uuid: string (id: 2); | |
} | |
root_type Connect; |