aboutsummaryrefslogtreecommitdiffstats
path: root/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'server.h')
-rw-r--r--server.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/server.h b/server.h
index 3ffa9c5..43f8af2 100644
--- a/server.h
+++ b/server.h
@@ -6,6 +6,10 @@
#ifndef SERVER_H
#define SERVER_H
-int setup_server(const char interface[]);
+#include <stdbool.h>
+
+bool is_wg_up_on_iface(const char iface[]);
+int setup_server();
+int handle_connections(int sock);
#endif