mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
A bit more auth cleanup in the local node.
This commit is contained in:
parent
cd70fefc5e
commit
fe0068da52
1 changed files with 1 additions and 3 deletions
|
@ -90,9 +90,7 @@ public:
|
||||||
*/
|
*/
|
||||||
inline bool isAllowedOnNetwork(const NetworkConfig &thisNodeNetworkConfig, const Identity &otherNodeIdentity) const
|
inline bool isAllowedOnNetwork(const NetworkConfig &thisNodeNetworkConfig, const Identity &otherNodeIdentity) const
|
||||||
{
|
{
|
||||||
if (thisNodeNetworkConfig.isPublic()) return true;
|
return (thisNodeNetworkConfig.isPublic() || (((_com.timestamp() > _comRevocationThreshold) && (thisNodeNetworkConfig.com.agreesWith(_com, otherNodeIdentity)))));
|
||||||
if (_com.timestamp() <= _comRevocationThreshold) return false;
|
|
||||||
return thisNodeNetworkConfig.com.agreesWith(_com, otherNodeIdentity);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool recentlyAssociated(const int64_t now) const
|
inline bool recentlyAssociated(const int64_t now) const
|
||||||
|
|
Loading…
Add table
Reference in a new issue