[Spice-devel] [PATCH spice-server 09/20] Remove unused red_channel_get_first_socket

Frediano Ziglio fziglio at redhat.com
Thu Nov 24 17:38:56 UTC 2016


This function assume there is only one client.
Was used only by some obsolete functions.
Avoid to use such function in the future.

Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 server/red-channel.c | 14 --------------
 server/red-channel.h |  2 --
 2 files changed, 16 deletions(-)

diff --git a/server/red-channel.c b/server/red-channel.c
index 0936548..fb2c8c1 100644
--- a/server/red-channel.c
+++ b/server/red-channel.c
@@ -611,20 +611,6 @@ int red_channel_any_blocked(RedChannel *channel)
     return FALSE;
 }
 
-int red_channel_get_first_socket(RedChannel *channel)
-{
-    RedChannelClient *rcc;
-    RedsStream *stream;
-
-    if (!channel || !channel->priv->clients) {
-        return -1;
-    }
-    rcc = g_list_nth_data(channel->priv->clients, 0);
-    stream = red_channel_client_get_stream(rcc);
-
-    return stream->socket;
-}
-
 int red_channel_no_item_being_sent(RedChannel *channel)
 {
     GListIter iter;
diff --git a/server/red-channel.h b/server/red-channel.h
index 0aa72c5..2c99139 100644
--- a/server/red-channel.h
+++ b/server/red-channel.h
@@ -262,8 +262,6 @@ void red_channel_pipes_add_type(RedChannel *channel, int pipe_item_type);
 
 void red_channel_pipes_add_empty_msg(RedChannel *channel, int msg_type);
 
-int red_channel_get_first_socket(RedChannel *channel);
-
 /* return TRUE if all of the connected clients to this channel are blocked */
 int red_channel_all_blocked(RedChannel *channel);
 
-- 
2.9.3



More information about the Spice-devel mailing list