blob: 178c51d8fb5d6e0bec2323ff2e4be95fdf9bdc11 [file] [log] [blame]
Adam Snaider13d48d92023-08-03 12:20:15 -07001syntax = "proto3";
2
3package aos.message_bridge;
4
5message SctpKeyResponse {
6 // Active SCTP authentication key.
7 bytes key = 1;
8}
9
10message SctpKeyRequest {}
11
12service SctpConfigService {
13 // Returns the active SCTP authentication key that should be used
14 // across nodes in message bridge.
15 rpc GetActiveKey(SctpKeyRequest) returns (SctpKeyResponse) {}
16}