aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-server/sending.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-18 12:58:23 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-18 12:58:23 +0200
commitba56fc3ed660609d57fafc95875ceeb2a65ffbc5 (patch)
treed7f13bc5dc4586ceff700988abe1c476fdc559e9 /src/mds-server/sending.h
parentreduce code complexity (diff)
downloadmds-ba56fc3ed660609d57fafc95875ceeb2a65ffbc5.tar.gz
mds-ba56fc3ed660609d57fafc95875ceeb2a65ffbc5.tar.bz2
mds-ba56fc3ed660609d57fafc95875ceeb2a65ffbc5.tar.xz
reduce code complexity
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-server/sending.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mds-server/sending.h b/src/mds-server/sending.h
index 693bd37..a181c2e 100644
--- a/src/mds-server/sending.h
+++ b/src/mds-server/sending.h
@@ -20,6 +20,7 @@
#include "multicast.h"
+#include "client.h"
/**
@@ -29,6 +30,20 @@
*/
void multicast_message(multicast_t* multicast);
+/**
+ * Send the next message in a clients multicast queue
+ *
+ * @param client The client
+ */
+void send_multicast_queue(client_t* client);
+
+/**
+ * Send the messages that are in a clients reply queue
+ *
+ * @param client The client
+ */
+void send_reply_queue(client_t* client);
+
#endif