Adam Snaider | 13d48d9 | 2023-08-03 12:20:15 -0700 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | |||||
3 | package aos.message_bridge; | ||||
4 | |||||
5 | message SctpKeyResponse { | ||||
6 | // Active SCTP authentication key. | ||||
7 | bytes key = 1; | ||||
8 | } | ||||
9 | |||||
10 | message SctpKeyRequest {} | ||||
11 | |||||
12 | service 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 | } |