summaryrefslogtreecommitdiffstatshomepage
path: root/src/containers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers.h')
-rw-r--r--src/containers.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/containers.h b/src/containers.h
index 2ffc230..fb5434f 100644
--- a/src/containers.h
+++ b/src/containers.h
@@ -12,7 +12,15 @@
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
+#if defined(__linux__)
#include <linux/wireguard.h>
+#elif defined(__OpenBSD__)
+#include <net/if_wg.h>
+#endif
+
+#ifndef WG_KEY_LEN
+#define WG_KEY_LEN 32
+#endif
/* Cross platform __kernel_timespec */
struct timespec64 {