blob: 32893b876fef76fa814061a90bebcf333f0b2d4e [file] [log] [blame]
Austin Schuhe84c3ed2019-12-14 15:29:48 -08001include "aos/configuration.fbs";
2
3namespace aos.message_bridge;
4
5// This is the message sent to initiate a connection to a message_bridge.
6// It communicates the channels that need to be forwarded back.
7table Connect {
8 // The node making the request.
9 node:aos.Node;
10
11 // The channels that we want transfered to this client.
12 channels_to_transfer:[Channel];
13}