blob: b593472ce843588293d146b6a43ee8c865387e32 [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.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08009 node:aos.Node (id: 0);
Austin Schuhe84c3ed2019-12-14 15:29:48 -080010
11 // The channels that we want transfered to this client.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080012 channels_to_transfer:[Channel] (id: 1);
Austin Schuhe84c3ed2019-12-14 15:29:48 -080013}