diff options
Diffstat (limited to 'src/mds-server/sending.h')
-rw-r--r-- | src/mds-server/sending.h | 15 |
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 |