diff options
author | Christian Pointner <equinox@anytun.org> | 2007-06-17 16:14:34 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2007-06-17 16:14:34 +0000 |
commit | 87735d1c20816e8c1c0092a86dc8d1ab80ab36db (patch) | |
tree | 84b8850480ed94d3b8862a757804c8e2a821783b /anytun.cpp | |
parent | bugfixes @ tunDevice (diff) |
added cypher and authalgo
Diffstat (limited to 'anytun.cpp')
-rw-r--r-- | anytun.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; } |