summaryrefslogtreecommitdiffstats
path: root/spice.proto
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-01-12 13:24:52 +0100
committerHans de Goede <hdegoede@redhat.com>2012-01-12 14:42:47 +0100
commit5ea8687843dd3493c3c31f52ba23393c6c9d3fcf (patch)
tree55df13f1bdf3ab8d392a3fc7970855604e29e56f /spice.proto
parent492ddb5d1d595e2d12208f4602b18e4432f4e6b4 (diff)
downloadspice-5ea8687843dd3493c3c31f52ba23393c6c9d3fcf.tar.gz
spice-5ea8687843dd3493c3c31f52ba23393c6c9d3fcf.tar.xz
spice-5ea8687843dd3493c3c31f52ba23393c6c9d3fcf.zip
codegen: Fix enums.h generation
With the new usbredir code we have the new concept of the abstract / generic spicevmc channel type (which just tunnels data from a qemu chardev), and we've the usbredir channel, which is the only current user of this. This was reflected in the protocols enum in spice-protocol.h by a manual edit done by me, my bad. This patch teaches spice.proto about the relation between the abstract spicevmc channel and the usbredir channel and modifies codegen to deal with this. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'spice.proto')
-rw-r--r--spice.proto5
1 files changed, 4 insertions, 1 deletions
diff --git a/spice.proto b/spice.proto
index 266e03a9..4d0731bd 100644
--- a/spice.proto
+++ b/spice.proto
@@ -1112,13 +1112,16 @@ client:
Data data = 101;
};
-channel UsbredirChannel : BaseChannel {
+channel SpicevmcChannel : BaseChannel {
server:
Data data = 101;
client:
Data data = 101;
};
+channel UsbredirChannel : SpicevmcChannel {
+};
+
protocol Spice {
MainChannel main = 1;
DisplayChannel display;