summaryrefslogtreecommitdiffstats
path: root/server/red_channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/red_channel.c')
-rw-r--r--server/red_channel.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/server/red_channel.c b/server/red_channel.c
index c214494d..609c83f0 100644
--- a/server/red_channel.c
+++ b/server/red_channel.c
@@ -1936,18 +1936,6 @@ void red_channel_apply_clients(RedChannel *channel, channel_client_callback cb)
}
}
-void red_channel_apply_clients_data(RedChannel *channel, channel_client_callback_data cb, void *data)
-{
- RingItem *link;
- RingItem *next;
- RedChannelClient *rcc;
-
- RING_FOREACH_SAFE(link, next, &channel->clients) {
- rcc = SPICE_CONTAINEROF(link, RedChannelClient, channel_link);
- cb(rcc, data);
- }
-}
-
int red_channel_all_blocked(RedChannel *channel)
{
RingItem *link;