summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fidencio@redhat.com>2015-10-13 00:06:10 +0200
committerFabiano FidĂȘncio <fidencio@redhat.com>2015-12-15 15:22:23 +0100
commit0dfe662393dce80386e0cb90f9c0c18bde19b575 (patch)
tree90874dfd8add365d31ce6d5b11885cbd3b34de80
parentcffb8baee117710087445c968acc55654f74f508 (diff)
downloadspice-protocol-0dfe662393dce80386e0cb90f9c0c18bde19b575.tar.gz
spice-protocol-0dfe662393dce80386e0cb90f9c0c18bde19b575.tar.xz
spice-protocol-0dfe662393dce80386e0cb90f9c0c18bde19b575.zip
spice.proto: add ssh channelwip/ssh-agent-forward
-rw-r--r--spice.proto4
-rw-r--r--spice/enums.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/spice.proto b/spice.proto
index 3bca900..5c61782 100644
--- a/spice.proto
+++ b/spice.proto
@@ -1373,6 +1373,9 @@ channel PortChannel : SpicevmcChannel {
channel WebDAVChannel : PortChannel {
};
+channel SshChannel : PortChannel {
+};
+
protocol Spice {
MainChannel main = 1;
DisplayChannel display;
@@ -1385,4 +1388,5 @@ protocol Spice {
UsbredirChannel usbredir;
PortChannel port;
WebDAVChannel webdav;
+ SshChannel ssh;
};
diff --git a/spice/enums.h b/spice/enums.h
index 16885ac..89c9cb0 100644
--- a/spice/enums.h
+++ b/spice/enums.h
@@ -407,6 +407,7 @@ enum {
SPICE_CHANNEL_USBREDIR,
SPICE_CHANNEL_PORT,
SPICE_CHANNEL_WEBDAV,
+ SPICE_CHANNEL_SSH,
SPICE_END_CHANNEL
};