summaryrefslogtreecommitdiff
path: root/node/Path.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-01-11 09:06:10 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-01-11 09:06:10 -0800
commit1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e (patch)
tree09d2b2756d903aa9cdf273ffb1786cbea836f092 /node/Path.cpp
parenta56fbc1929d3cb2c6c5a1b4acb3b026a1e13135d (diff)
downloadinfinitytier-1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e.tar.gz
infinitytier-1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e.zip
Remove somewhat ugly and costly anti-recursion hack -- we will switch to more explicit methods.
Diffstat (limited to 'node/Path.cpp')
-rw-r--r--node/Path.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/node/Path.cpp b/node/Path.cpp
index c67352de..6f595189 100644
--- a/node/Path.cpp
+++ b/node/Path.cpp
@@ -26,7 +26,6 @@
*/
#include "Path.hpp"
-#include "AntiRecursion.hpp"
#include "RuntimeEnvironment.hpp"
#include "Node.hpp"
@@ -34,7 +33,6 @@ namespace ZeroTier {
bool Path::send(const RuntimeEnvironment *RR,const void *data,unsigned int len,uint64_t now)
{
- RR->antiRec->logOutgoingZT(data,len);
if (RR->node->putPacket(_localAddress,address(),data,len)) {
sent(now);
return true;