summaryrefslogtreecommitdiff
path: root/anytun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'anytun.cpp')
-rw-r--r--anytun.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/anytun.cpp b/anytun.cpp
index 56c23d5..f7fb19a 100644
--- a/anytun.cpp
+++ b/anytun.cpp
@@ -34,6 +34,8 @@
#include "tunDevice.h"
#include "buffer.h"
+#include "cypher.h"
+#include "authAlgo.h"
int main(int argc, char* argv[])
{
@@ -82,6 +84,8 @@ int main(int argc, char* argv[])
sleep(10);
delete dev;
std::cout << "dev destroyed" << std::endl;
-
+
+ NullAuthAlgo au;
+
return 0;
}