blob: 178c51d8fb5d6e0bec2323ff2e4be95fdf9bdc11 [file] [log] [blame]
syntax = "proto3";
package aos.message_bridge;
message SctpKeyResponse {
// Active SCTP authentication key.
bytes key = 1;
}
message SctpKeyRequest {}
service SctpConfigService {
// Returns the active SCTP authentication key that should be used
// across nodes in message bridge.
rpc GetActiveKey(SctpKeyRequest) returns (SctpKeyResponse) {}
}