summaryrefslogtreecommitdiffstats
path: root/server/red_channel.h
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2012-08-06 13:35:19 +0300
committerYonit Halperin <yhalperi@redhat.com>2012-08-27 09:13:12 +0300
commit26027036c05cac96e2648ee146d63ba83af2d35e (patch)
treeb3773c51bfebf9661d9c6d3604565b9ef5ff7904 /server/red_channel.h
parent934fb14ccc731689369c55ead8125a590c0c4343 (diff)
downloadspice-26027036c05cac96e2648ee146d63ba83af2d35e.tar.gz
spice-26027036c05cac96e2648ee146d63ba83af2d35e.tar.xz
spice-26027036c05cac96e2648ee146d63ba83af2d35e.zip
red_channel: remove unused migrate flag from RedChannel
The relevant flags reside in RedChannelClient and RedClient
Diffstat (limited to 'server/red_channel.h')
-rw-r--r--server/red_channel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/red_channel.h b/server/red_channel.h
index aab7d2d0..0bd4cb12 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -284,7 +284,6 @@ struct RedChannel {
RingItem link; // channels link for reds
SpiceCoreInterface *core;
- int migrate;
int handle_acks;
// RedChannel will hold only connected channel clients (logic - when pushing pipe item to all channel clients, there
@@ -320,7 +319,7 @@ struct RedChannel {
RedChannel *red_channel_create(int size,
SpiceCoreInterface *core,
uint32_t type, uint32_t id,
- int migrate, int handle_acks,
+ int handle_acks,
channel_handle_message_proc handle_message,
ChannelCbs *channel_cbs,
uint32_t migration_flags);
@@ -330,7 +329,7 @@ RedChannel *red_channel_create(int size,
RedChannel *red_channel_create_parser(int size,
SpiceCoreInterface *core,
uint32_t type, uint32_t id,
- int migrate, int handle_acks,
+ int handle_acks,
spice_parse_channel_func_t parser,
channel_handle_parsed_proc handle_parsed,
ChannelCbs *channel_cbs,