From 3da1e1ed0ce3fd0892637c96a958017db612a8f1 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Fri, 31 Jul 2015 17:29:07 +0100 Subject: server: use more const CoreInterface --- server/red_channel.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/red_channel.h') diff --git a/server/red_channel.h b/server/red_channel.h index 24d29fed..bc0347be 100644 --- a/server/red_channel.h +++ b/server/red_channel.h @@ -308,7 +308,7 @@ struct RedChannel { RingItem link; // channels link for reds - SpiceCoreInterface *core; + const SpiceCoreInterface *core; int handle_acks; // RedChannel will hold only connected channel clients (logic - when pushing pipe item to all channel clients, there @@ -353,7 +353,7 @@ struct RedChannel { /* if one of the callbacks should cause disconnect, use red_channel_shutdown and don't * explicitly destroy the channel */ RedChannel *red_channel_create(int size, - SpiceCoreInterface *core, + const SpiceCoreInterface *core, uint32_t type, uint32_t id, int handle_acks, channel_handle_message_proc handle_message, @@ -363,7 +363,7 @@ RedChannel *red_channel_create(int size, /* alternative constructor, meant for marshaller based (inputs,main) channels, * will become default eventually */ RedChannel *red_channel_create_parser(int size, - SpiceCoreInterface *core, + const SpiceCoreInterface *core, uint32_t type, uint32_t id, int handle_acks, spice_parse_channel_func_t parser, -- cgit