This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-25 11:42:43 +02:00
|
|
|
#include "../../core/communication.h"
|
|
|
|
#include "../../core/msg.h"
|
|
|
|
#include "../../core/process.h"
|
|
|
|
#include "../../core/utils.h"
|
|
|
|
#include "../../core/error.h"
|
2017-08-26 19:42:54 +02:00
|
|
|
#include "../../core/logger.h"
|
2017-08-25 11:42:43 +02:00
|
|
|
|
|
|
|
#include "remoted.h"
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
void remoted_main_loop (struct service *srv)
|
|
|
|
{
|
|
|
|
(void) srv;
|
2017-08-26 19:42:54 +02:00
|
|
|
log_debug ("remoted entering main loop");
|
2017-08-25 11:42:43 +02:00
|
|
|
/* TODO */
|
|
|
|
}
|