blob: 7ff2fbefeb2d5a0fa44c6f641408fbba5443e4f7 [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 Schuh20ac95d2020-12-05 17:24:19 -080013
14 // The UUID that this node booted with.
15 boot_uuid: string (id: 2);
Austin Schuhe84c3ed2019-12-14 15:29:48 -080016}
Austin Schuh20ac95d2020-12-05 17:24:19 -080017
18root_type Connect;