summaryrefslogtreecommitdiffstats
path: root/server/reds.c
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2014-01-06 22:38:44 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2014-01-20 12:15:42 +0100
commit28fa3b1b3fbc554dbbaf8d2be0fe789846b7aa42 (patch)
tree3751f22655ad96aff601dec2ff3ce692997155e2 /server/reds.c
parent82511418a08a55fdea3348c788b3a71e179ecd0f (diff)
downloadspice-28fa3b1b3fbc554dbbaf8d2be0fe789846b7aa42.tar.gz
spice-28fa3b1b3fbc554dbbaf8d2be0fe789846b7aa42.tar.xz
spice-28fa3b1b3fbc554dbbaf8d2be0fe789846b7aa42.zip
Introduce reds_stream_set_channel()
Diffstat (limited to 'server/reds.c')
-rw-r--r--server/reds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/reds.c b/server/reds.c
index 5bcad7ab..1f025539 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -1417,9 +1417,9 @@ static void reds_info_new_channel(RedLinkInfo *link, int connection_id)
if (reds_stream_is_ssl(link->stream)) {
reds_stream_set_info_flag(link->stream, SPICE_CHANNEL_EVENT_FLAG_TLS);
}
- link->stream->info->connection_id = connection_id;
- link->stream->info->type = link->link_mess->channel_type;
- link->stream->info->id = link->link_mess->channel_id;
+ reds_stream_set_channel(link->stream, connection_id,
+ link->link_mess->channel_type,
+ link->link_mess->channel_id);
reds_stream_push_channel_event(link->stream, SPICE_CHANNEL_EVENT_INITIALIZED);
}