This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-06-05 20:48:13 +02:00
|
|
|
#ifndef __PUBSUBD_H__
|
|
|
|
#define __PUBSUBD_H__
|
|
|
|
|
2017-01-19 22:07:52 +01:00
|
|
|
// #include "../../core/pubsub.h"
|
2018-10-04 01:22:50 +02:00
|
|
|
#include "../../core/client.h"
|
2017-01-19 22:07:52 +01:00
|
|
|
#include "../../core/msg.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "channels.h"
|
2016-06-05 20:48:13 +02:00
|
|
|
|
2017-01-19 22:07:52 +01:00
|
|
|
#define PUBSUBD_SERVICE_NAME "pubsubd"
|
2016-06-05 20:48:13 +02:00
|
|
|
|
2018-10-04 00:30:47 +02:00
|
|
|
void pubsubd_main_loop (struct ipc_service *srv, struct channels * chans);
|
2018-10-04 22:51:31 +02:00
|
|
|
void pubsubd_message_send (const struct ipc_clients *ap, const struct pubsub_msg * m);
|
2016-09-14 21:09:14 +02:00
|
|
|
|
2016-06-05 20:48:13 +02:00
|
|
|
#endif
|