summaryrefslogtreecommitdiff
path: root/node/Path.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-09-01 15:43:07 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-09-01 15:43:07 -0700
commita3bdae9735572fd6d888e6bf29b0302983a7c24c (patch)
tree9e427e297db253b7610fc07cb2214281c69a8e3c /node/Path.cpp
parentd5e6f59004458ee2bddcaa18c6d0a8dfae2a2fc3 (diff)
downloadinfinitytier-a3bdae9735572fd6d888e6bf29b0302983a7c24c.tar.gz
infinitytier-a3bdae9735572fd6d888e6bf29b0302983a7c24c.zip
Work in progress: Path canonicalization refactor.
Diffstat (limited to 'node/Path.cpp')
-rw-r--r--node/Path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Path.cpp b/node/Path.cpp
index 5692af66..5592bacc 100644
--- a/node/Path.cpp
+++ b/node/Path.cpp
@@ -25,7 +25,7 @@ namespace ZeroTier {
bool Path::send(const RuntimeEnvironment *RR,const void *data,unsigned int len,uint64_t now)
{
if (RR->node->putPacket(_localAddress,address(),data,len)) {
- sent(now);
+ _lastOut = now;
return true;
}
return false;