blob: 0422cea082f5dd87e17cee19319388553f3244a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <inttypes.h>
#include "sd-event.h"
#include "hashmap.h"
#include "microhttpd-util.h"
#include "journal-remote-parse.h"
typedef struct MHDDaemonWrapper {
uint64_t fd;
struct MHD_Daemon *daemon;
sd_event_source *event;
} MHDDaemonWrapper;
typedef struct RemoteServer {
RemoteSource **sources;
size_t sources_size;
size_t active;
sd_event *events;
sd_event_source *sigterm_event, *sigint_event, *listen_event;
Hashmap *writers;
Writer *_single_writer;
uint64_t event_count;
bool check_trust;
Hashmap *daemons;
} RemoteServer;
|