aboutsummaryrefslogtreecommitdiffstats
path: root/client.h
diff options
context:
space:
mode:
authorTushar Pankaj <tushar.s.pankaj@gmail.com>2018-11-07 09:31:32 -0600
committerTushar Pankaj <tushar.s.pankaj@gmail.com>2018-11-07 09:31:32 -0600
commit9e6ff0536a00498652f12e28d54f1b73b974a9fd (patch)
tree2459dfeea965e4e0477f9910b0b7eda765622687 /client.h
parentWrite basic main (diff)
downloadwg-dynamic-9e6ff0536a00498652f12e28d54f1b73b974a9fd.tar.xz
wg-dynamic-9e6ff0536a00498652f12e28d54f1b73b974a9fd.zip
Separate out client network code
Signed-off-by: Tushar Pankaj <tushar.s.pankaj@gmail.com>
Diffstat (limited to 'client.h')
-rw-r--r--client.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/client.h b/client.h
new file mode 100644
index 0000000..996cb58
--- /dev/null
+++ b/client.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright (C) 2018 Wireguard LLC
+ */
+
+#ifndef CLIENT_H
+#define CLIENT_H
+
+int connect_to_server(const char interface[]);
+
+#endif