summaryrefslogtreecommitdiffstats
path: root/server/red_channel.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2011-02-27 09:38:04 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2011-02-27 16:55:22 +0100
commitd47912241f4bc263cf3c19c07ed3907681826277 (patch)
tree5729d1503fc6f11a11998340fa25b1fcbc3eb995 /server/red_channel.h
parent29be54f6d3549c44b2b771ca3c21952d2d1b7026 (diff)
downloadspice-d47912241f4bc263cf3c19c07ed3907681826277.tar.gz
spice-d47912241f4bc263cf3c19c07ed3907681826277.tar.xz
spice-d47912241f4bc263cf3c19c07ed3907681826277.zip
server: s/RedsStreamContext/RedsStream
https://bugs.freedesktop.org/show_bug.cgi?id=34795
Diffstat (limited to 'server/red_channel.h')
-rw-r--r--server/red_channel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/red_channel.h b/server/red_channel.h
index 2ee65664..fd9ce370 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -114,7 +114,7 @@ typedef void (*channel_on_incoming_error_proc)(RedChannel *channel);
typedef void (*channel_on_outgoing_error_proc)(RedChannel *channel);
struct RedChannel {
- RedsStreamContext *peer;
+ RedsStream *peer;
SpiceCoreInterface *core;
int migrate;
int handle_acks;
@@ -160,7 +160,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, RedsStreamContext *peer,
+RedChannel *red_channel_create(int size, RedsStream *peer,
SpiceCoreInterface *core,
int migrate, int handle_acks,
channel_configure_socket_proc config_socket,
@@ -174,7 +174,7 @@ RedChannel *red_channel_create(int size, RedsStreamContext *peer,
/* alternative constructor, meant for marshaller based (inputs,main) channels,
* will become default eventually */
-RedChannel *red_channel_create_parser(int size, RedsStreamContext *peer,
+RedChannel *red_channel_create_parser(int size, RedsStream *peer,
SpiceCoreInterface *core,
int migrate, int handle_acks,
channel_configure_socket_proc config_socket,