summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-09-13 20:02:42 +0200
committerAlon Levy <alevy@redhat.com>2010-12-07 13:31:30 +0200
commit611e542c6c2b6f9aa0dea90f4f5949d1e52fd543 (patch)
tree02b1e45f313ea3626d80ac739498bb29dde494eb
parent7461ee17cf4e59c30d3c7d83c1bb7b029c6cfb9b (diff)
downloadspice-611e542c6c2b6f9aa0dea90f4f5949d1e52fd543.tar.gz
spice-611e542c6c2b6f9aa0dea90f4f5949d1e52fd543.tar.xz
spice-611e542c6c2b6f9aa0dea90f4f5949d1e52fd543.zip
smartcard: add to spice.proto
-rw-r--r--spice.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/spice.proto b/spice.proto
index 3c0911d4..4eeb1593 100644
--- a/spice.proto
+++ b/spice.proto
@@ -1084,6 +1084,13 @@ channel TunnelChannel : BaseChannel {
} @ctype(SpiceMsgcTunnelSocketTokens) socket_token;
};
+channel SmartcardChannel : BaseChannel {
+server:
+ Data data = 101;
+client:
+ Data data = 101;
+};
+
protocol Spice {
MainChannel main = 1;
DisplayChannel display;
@@ -1092,4 +1099,5 @@ protocol Spice {
PlaybackChannel playback;
RecordChannel record;
TunnelChannel tunnel;
+ SmartcardChannel smartcard;
};