blob: 7ff2fbefeb2d5a0fa44c6f641408fbba5443e4f7 [file] [log] [blame]
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;