aboutsummaryrefslogtreecommitdiffstats
path: root/protocol.h
diff options
context:
space:
mode:
authorTushar Pankaj <tushar.s.pankaj@gmail.com>2018-11-12 17:06:07 -0600
committerTushar Pankaj <tushar.s.pankaj@gmail.com>2018-11-12 17:06:07 -0600
commit64f825db92ce31102b29ac96fd382ac3643fb6ae (patch)
tree954437be6fe647f96305aadae48d4eb9e8bf9606 /protocol.h
parentAdd pthread library (diff)
downloadwg-dynamic-64f825db92ce31102b29ac96fd382ac3643fb6ae.tar.xz
wg-dynamic-64f825db92ce31102b29ac96fd382ac3643fb6ae.zip
Write client connect_to_server
Signed-off-by: Tushar Pankaj <tushar.s.pankaj@gmail.com>
Diffstat (limited to '')
-rw-r--r--protocol.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/protocol.h b/protocol.h
new file mode 100644
index 0000000..ff6c04d
--- /dev/null
+++ b/protocol.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright (C) 2018 Wireguard LLC
+ */
+
+#ifndef PROTOCOL_H
+#define PROTOCOL_H
+
+#define WG_DYNAMIC_SERVER_IP "::1"
+#define WG_DYNAMIC_SERVER_PORT 51820
+
+#endif