Add AOS message to update sctp auth key in message_bridge
Message bridge now listens to /aos aos.message_bridge.SctpConfig
channel to update the SCTP authentication key. This change only takes
effect if `--wants_sctp_authentication=true` and the kernel supports
SCTP authentication.
Change-Id: Id9e743471668cd26892a12e4fc9b03a73445df10
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/aos/network/sctp_config_request.fbs b/aos/network/sctp_config_request.fbs
new file mode 100644
index 0000000..196589b
--- /dev/null
+++ b/aos/network/sctp_config_request.fbs
@@ -0,0 +1,10 @@
+namespace aos.message_bridge;
+
+// SCTP configuration requests for message bridge.
+table SctpConfigRequest {
+ // When set, the authentication key is being requested.
+ request_key:bool (id: 0);
+}
+
+root_type SctpConfigRequest;
+