summaryrefslogtreecommitdiffstats
path: root/spice.proto
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2011-07-25 11:09:12 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-03-20 15:25:54 +0100
commit85da46bacd4c54559ed8c6ca0386b1da5c1fe65f (patch)
treee8dca3389f3a24b2d9fe0af3d0a79dcef3f0c4cb /spice.proto
parent4b6598dc0286c9b9d5ad40b7046172b4d118ba3c (diff)
downloadspice-protocol-85da46bacd4c54559ed8c6ca0386b1da5c1fe65f.tar.gz
spice-protocol-85da46bacd4c54559ed8c6ca0386b1da5c1fe65f.tar.xz
spice-protocol-85da46bacd4c54559ed8c6ca0386b1da5c1fe65f.zip
server: Add a usbredir channel
Diffstat (limited to 'spice.proto')
-rw-r--r--spice.proto8
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;
};