diff options
| -rw-r--r-- | spice.proto | 4 | ||||
| -rw-r--r-- | spice/enums.h | 1 |
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 }; |
