summaryrefslogtreecommitdiff
path: root/anytun.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2007-06-17 16:14:34 +0000
committerChristian Pointner <equinox@anytun.org>2007-06-17 16:14:34 +0000
commit87735d1c20816e8c1c0092a86dc8d1ab80ab36db (patch)
tree84b8850480ed94d3b8862a757804c8e2a821783b /anytun.cpp
parentbugfixes @ tunDevice (diff)
added cypher and authalgo
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;
}