diff options
Diffstat (limited to 'node/Path.cpp')
-rw-r--r-- | node/Path.cpp | 2 |
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; |