aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/common.h b/common.h
new file mode 100644
index 0000000..d781548
--- /dev/null
+++ b/common.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: LGPL-2.1+
+ *
+ * Copyright (C) 2019 Thomas Gschwantner <tharre3@gmail.com>.
+ */
+
+#ifndef __COMMON_H__
+#define __COMMON_H__
+
+#include <stdint.h>
+
+#define MAX_CONNECTIONS 16
+
+static const char WG_DYNAMIC_ADDR[] = "fe80::";
+static const uint16_t WG_DYNAMIC_PORT = 1337;
+
+#endif