Austin Schuh | e84c3ed | 2019-12-14 15:29:48 -0800 | [diff] [blame] | 1 | include "aos/configuration.fbs"; |
2 | |||||
3 | namespace 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. | ||||
7 | table 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 | } |