blob: 32893b876fef76fa814061a90bebcf333f0b2d4e [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;
// The channels that we want transfered to this client.
channels_to_transfer:[Channel];
}