summaryrefslogtreecommitdiffstats
path: root/server/reds.c
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@redhat.com>2015-07-31 17:29:11 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2015-08-11 17:24:36 +0200
commit0eaf34c04b8535c8fe1571a435dd8539c9815eed (patch)
tree23a62781722baf3a5c9be5d49388f6eb59d88c18 /server/reds.c
parente4bbdc3391f03860bb0b790da53e65900a37c919 (diff)
downloadspice-0eaf34c04b8535c8fe1571a435dd8539c9815eed.tar.gz
spice-0eaf34c04b8535c8fe1571a435dd8539c9815eed.tar.xz
spice-0eaf34c04b8535c8fe1571a435dd8539c9815eed.zip
Cleanup: move static function declarations out of header
It doesn't make much sense to have static function declarations in a header, even a private header. So move them down into the source file.
Diffstat (limited to 'server/reds.c')
-rw-r--r--server/reds.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/reds.c b/server/reds.c
index cec28b8e..978832e7 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -156,6 +156,10 @@ static void reds_char_device_add_state(SpiceCharDeviceState *st);
static void reds_char_device_remove_state(SpiceCharDeviceState *st);
static void reds_send_mm_time(void);
+static VDIReadBuf *vdi_port_read_buf_get(void);
+static VDIReadBuf *vdi_port_read_buf_ref(VDIReadBuf *buf);
+static void vdi_port_read_buf_unref(VDIReadBuf *buf);
+
static ChannelSecurityOptions *channels_security = NULL;
static int default_channel_security =
SPICE_CHANNEL_SECURITY_NONE | SPICE_CHANNEL_SECURITY_SSL;