mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-15 21:58:21 +00:00
Lets try always supplying the AES keys to Packet dearmor() and see if that prevents the coma problem.
This commit is contained in:
@ -534,12 +534,15 @@ public:
|
||||
*/
|
||||
inline int8_t bondingPolicy() { return _bondingPolicy; }
|
||||
|
||||
//const AES *aesKeysIfSupported() const
|
||||
//inline const AES *aesKeysIfSupported() const
|
||||
//{ return (const AES *)0; }
|
||||
|
||||
const AES *aesKeysIfSupported() const
|
||||
inline const AES *aesKeysIfSupported() const
|
||||
{ return (_vProto >= 12) ? _aesKeys : (const AES *)0; }
|
||||
|
||||
inline const AES *aesKeys() const
|
||||
{ return _aesKeys; }
|
||||
|
||||
private:
|
||||
struct _PeerPath
|
||||
{
|
||||
|
Reference in New Issue
Block a user