Merge branch 'dev' into 1.16.1

This commit is contained in:
Adam Ierymenko 2025-12-22 18:20:59 -05:00 committed by GitHub
commit fa601636aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,15 +44,14 @@ class PacketMultiplexer {
std::vector<BlockingQueue<PacketRecord*>*> _rxPacketQueues;
unsigned int _concurrency;
unsigned int _concurrency = 0;
// pool
std::vector<PacketRecord*> _rxPacketVector;
std::vector<std::thread> _rxPacketThreads;
Mutex _rxPacketVector_m, _rxPacketThreads_m;
std::vector<std::thread> _rxThreads;
unsigned int _rxThreadCount;
bool _enabled;
bool _enabled = false;
};
} // namespace ZeroTier