remove dummy mode
[project/unetd.git] / unetd.h
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2022 Felix Fietkau <nbd@nbd.name>
4 */
5 #ifndef __UNETD_H
6 #define __UNETD_H
7
8 #include <stdbool.h>
9
10 #include <libubox/vlist.h>
11 #include <libubox/blobmsg.h>
12 #include <libubox/utils.h>
13 #include "utils.h"
14 #include "siphash.h"
15 #include "wg.h"
16 #include "pex.h"
17 #include "network.h"
18 #include "host.h"
19 #include "service.h"
20 #include "ubus.h"
21
22 extern const char *mssfix_path;
23 extern bool debug;
24
25 #define D(format, ...) \
26 do { \
27 if (debug) \
28 fprintf(stderr, "%s(%d) " format "\n", \
29 __func__, __LINE__, ##__VA_ARGS__); \
30 } while (0)
31
32 #define D_NET(net, format, ...) D("network %s " format, network_name(net), ##__VA_ARGS__)
33 #define D_HOST(net, host, format, ...) D_NET(net, "host %s " format, network_host_name(host), ##__VA_ARGS__)
34 #define D_PEER(net, peer, format, ...) D_NET(net, "host %s " format, network_peer_name(peer), ##__VA_ARGS__)
35 #define D_SERVICE(net, service, format, ...) D_NET(net, "service %s " format, network_service_name(service), ##__VA_ARGS__)
36
37 #define UNETD_MSS_BPF_PATH "/lib/bpf/mss.o"
38 #define UNETD_MSS_PRIO_BASE 0x130
39
40 void unetd_write_hosts(void);
41 int unetd_attach_mssfix(int ifindex, int mtu);
42
43 #endif