summaryrefslogtreecommitdiff
path: root/src/anytun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/anytun.cpp')
-rw-r--r--src/anytun.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/anytun.cpp b/src/anytun.cpp
index 3f14a5e..9e97e5a 100644
--- a/src/anytun.cpp
+++ b/src/anytun.cpp
@@ -91,6 +91,7 @@
#endif
#include "cryptinit.hpp"
+#include "channel.hpp"
#include "sysExec.h"
bool disableRouting = false;
@@ -339,7 +340,12 @@ void receiver(TunDevice* dev, PacketSource* src)
void startSendRecvThreads(TunDevice* dev, PacketSource* src)
{
src->waitUntilReady();
-
+ //channel<int> a(1);
+ //a.push(23);
+ //a.push(23);
+ //int i=0;
+ //a.pop(i);
+ //std::cout << i << std::endl;
boost::thread(boost::bind(sender, dev, src));
boost::thread(boost::bind(receiver, dev, src));
}