summaryrefslogtreecommitdiffstats
path: root/remoting/proto/control.proto
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/proto/control.proto')
-rw-r--r--remoting/proto/control.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
index 888c0b0..2d2baf6 100644
--- a/remoting/proto/control.proto
+++ b/remoting/proto/control.proto
@@ -66,3 +66,14 @@ message PairingResponse {
// Shared secret for this client.
optional string shared_secret = 2;
}
+
+message ExtensionMessage {
+ // The message type. This is used to dispatch the message to the correct
+ // recipient.
+ optional string type = 1;
+
+ // String-encoded message data. The client and host must agree on the encoding
+ // for each message type; different message types need not shared the same
+ // encoding.
+ optional string data = 2;
+} \ No newline at end of file