From eb4c95b08b6848ee604497bb66392636341ad1fe Mon Sep 17 00:00:00 2001 From: Yonit Halperin Date: Thu, 2 Aug 2012 13:20:20 +0300 Subject: red_channel: handle sending SPICE_MSG_MIGRATE The relevant code is common to all channels. The patch also contains a fix to the return value for handle_migrate_data callback: s/uint64_t/int --- server/inputs_channel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/inputs_channel.c') diff --git a/server/inputs_channel.c b/server/inputs_channel.c index e14e995a..269e2dc4 100644 --- a/server/inputs_channel.c +++ b/server/inputs_channel.c @@ -551,7 +551,8 @@ void inputs_init(void) FALSE, /* handle_acks */ spice_get_client_channel_parser(SPICE_CHANNEL_INPUTS, NULL), inputs_channel_handle_parsed, - &channel_cbs); + &channel_cbs, + 0); if (!g_inputs_channel) { spice_error("failed to allocate Inputs Channel"); -- cgit