summaryrefslogtreecommitdiff
path: root/anytun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'anytun.cpp')
-rw-r--r--anytun.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/anytun.cpp b/anytun.cpp
index 9884f5f..ba6c688 100644
--- a/anytun.cpp
+++ b/anytun.cpp
@@ -44,14 +44,14 @@ int main(int argc, char* argv[])
std::cout << "anytun - secure anycast tunneling protocol" << std::endl;
TunDevice* dev;
- dev = new TunDevice("tun", "192.168.200.1", "192.168.201.1");
-// dev = new TunDevice("tap", "192.168.202.1", "255.255.255.0");
+// dev = new TunDevice("tun", "192.168.200.1", "192.168.201.1");
+ dev = new TunDevice("tap", "192.168.202.1", "255.255.255.0");
// dev = new TunDevice("tun17", "192.168.200.1", "192.168.201.1");
std::cout << "dev created (opened)" << std::endl;
std::cout << "dev opened - actual name is '" << dev->getActualName() << "'" << std::endl;
std::cout << "dev type is '" << dev->getType() << "'" << std::endl;
- Buffer inBuf(1000);
+ Buffer inBuf(2000);
int len;
do
{