16 lines
388 B
C
16 lines
388 B
C
#ifndef __PUBSUBD_H__
|
|
#define __PUBSUBD_H__
|
|
|
|
// #include "../../core/pubsub.h"
|
|
#include "../../core/client.h"
|
|
#include "../../core/msg.h"
|
|
#include "msg.h"
|
|
#include "channels.h"
|
|
|
|
#define PUBSUBD_SERVICE_NAME "pubsubd"
|
|
|
|
void pubsubd_main_loop (struct ipc_service *srv, struct channels * chans);
|
|
void pubsubd_message_send (const struct ipc_clients *ap, const struct pubsub_msg * m);
|
|
|
|
#endif
|