diff options
author | Hans de Goede <hdegoede@redhat.com> | 2011-07-25 11:09:12 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-03-20 15:25:54 +0100 |
commit | d69f4ccea2b278361b2b49e02b8407961bb9502a (patch) | |
tree | 8f4d9f5ba474af6b0598bbcc420a118b76bacb64 | |
parent | 82ed7626378a83782c11c5b75b71e5b2d9027466 (diff) |
server: Add a usbredir channel
-rw-r--r-- | spice.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spice.proto b/spice.proto index 80c40d4..99302ff 100644 --- a/spice.proto +++ b/spice.proto @@ -1104,6 +1104,13 @@ client: Data data = 101; }; +channel UsbredirChannel : BaseChannel { +server: + Data data = 101; +client: + Data data = 101; +}; + protocol Spice { MainChannel main = 1; DisplayChannel display; @@ -1113,4 +1120,5 @@ protocol Spice { RecordChannel record; TunnelChannel tunnel; SmartcardChannel smartcard; + UsbredirChannel usbredir; }; |