summaryrefslogtreecommitdiffstats
path: root/server/red_channel.h
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2012-05-24 11:00:33 +0300
committerYonit Halperin <yhalperi@redhat.com>2012-05-24 11:00:33 +0300
commitc59b2884a2f7fc953fdb263085830b65e8bdcaef (patch)
tree78c6302afb2c6cd9ae111ccb113583a691a2d159 /server/red_channel.h
parent038ae54b1c4c43a63d346bdfe2db52b48f20a22e (diff)
downloadspice-c59b2884a2f7fc953fdb263085830b65e8bdcaef.tar.gz
spice-c59b2884a2f7fc953fdb263085830b65e8bdcaef.tar.xz
spice-c59b2884a2f7fc953fdb263085830b65e8bdcaef.zip
server/red_channel: remove red_channel_client_item_being_sent
The above routine was risky, since red_channel_client_init_send_data can also be called with item==NULL. Thus, not all pipe items can be tracked. The one call that was made for this routine was not necessary.
Diffstat (limited to 'server/red_channel.h')
-rw-r--r--server/red_channel.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/server/red_channel.h b/server/red_channel.h
index 54182106..765b74ed 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -432,15 +432,6 @@ int red_channel_client_blocked(RedChannelClient *rcc);
/* helper for channels that have complex logic that can possibly ready a send */
int red_channel_client_send_message_pending(RedChannelClient *rcc);
-/* returns TRUE if item is being sent by one of the channel clients. This will
- * be true if someone called init_send_data but send has not completed (or perhaps
- * hasn't even begun, i.e. no one called begin_send_).
- * However, note that red_channel_client_init_send_data can also be called with
- * item==NULL, thus not all pipe items can be tracked.
- */
-int red_channel_item_being_sent(RedChannel *channel, PipeItem *item);
-int red_channel_client_item_being_sent(RedChannelClient *rcc, PipeItem *item);
-
int red_channel_no_item_being_sent(RedChannel *channel);
int red_channel_client_no_item_being_sent(RedChannelClient *rcc);