summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/red_channel.c2
-rw-r--r--server/red_channel.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/server/red_channel.c b/server/red_channel.c
index 04fc643d..2a7a5ff0 100644
--- a/server/red_channel.c
+++ b/server/red_channel.c
@@ -462,7 +462,7 @@ void red_channel_init_send_data(RedChannel *channel, uint16_t msg_type, PipeItem
}
}
-static void red_channel_send(RedChannel *channel)
+void red_channel_send(RedChannel *channel)
{
red_peer_handle_outgoing(channel->peer, &channel->outgoing);
}
diff --git a/server/red_channel.h b/server/red_channel.h
index 68de0841..2ee65664 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -242,5 +242,6 @@ void red_channel_pipe_clear(RedChannel *channel);
// red_wait_pipe_item_sent
// handle_channel_events - this is the only one that was used before, and was in red_channel.c
void red_channel_receive(RedChannel *channel);
+void red_channel_send(RedChannel *channel);
#endif