فهرست منبع

Release notes and GitHub issue #1512

Adam Ierymenko 3 سال پیش
والد
کامیت
06ed114fb6
2فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 5 0
      RELEASE-NOTES.md
  2. 1 1
      node/Peer.cpp

+ 5 - 0
RELEASE-NOTES.md

@@ -1,6 +1,11 @@
 ZeroTier Release Notes
 ======
 
+# 2021-12-15 -- Version 1.8.5
+
+ * Fix an issue that could cause self-hosted roots ("moons") to fail to assist peers in making direct links. (GitHub issue #1512)
+ * Merge a series of changes by Joseph Henry (of ZeroTier) that should fix some edge cases where ZeroTier would "forget" valid paths.
+
 # 2021-11-30 -- Version 1.8.4
 
  * Fixed an ugly font problem on some older macOS versions.

+ 1 - 1
node/Peer.cpp

@@ -409,7 +409,7 @@ void Peer::introduce(void *const tPtr,const int64_t now,const SharedPtr<Peer> &o
 					outp.append((uint8_t)4);
 					outp.append(_paths[mine].p->address().rawIpData(),4);
 				}
-				outp.armor(other->_key,true,aesKeysIfSupported());
+				outp.armor(other->_key,true,other->aesKeysIfSupported());
 				other->_paths[theirs].p->send(RR,tPtr,outp.data(),outp.size(),now);
 			}
 			++alt;